<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>VexedMonkey</title>
	<atom:link href="http://www.vexedmonkey.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vexedmonkey.com</link>
	<description>Beware the fury of a patient monkey.</description>
	<lastBuildDate>Sun, 07 Feb 2010 09:29:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Final Post To This Blog</title>
		<link>http://www.vexedmonkey.com/2010/02/07/final-post-to-this-blog/</link>
		<comments>http://www.vexedmonkey.com/2010/02/07/final-post-to-this-blog/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 09:28:29 +0000</pubDate>
		<dc:creator>vMonkey</dc:creator>
				<category><![CDATA[Indiscriminate Music]]></category>
		<category><![CDATA[PHP Development]]></category>
		<category><![CDATA[Project Subaru]]></category>
		<category><![CDATA[Vexed Daily]]></category>

		<guid isPermaLink="false">http://www.vexedmonkey.com/?p=181</guid>
		<description><![CDATA[For those who have followed my few updates to this blog, it has been good chatting with you.  As I have said in a recent post, I am no longer going to maintain this blog.  I have opted to leave the &#8220;standard&#8221; blogging world for my new Photoblog, which I like because I [...]]]></description>
			<content:encoded><![CDATA[<p>For those who have followed my few updates to this blog, it has been good chatting with you.  As I have said in a recent post, I am no longer going to maintain this blog.  I have opted to leave the &#8220;standard&#8221; blogging world for my new Photoblog, which I like because I don&#8217;t have to write anything.</p>
<p>I invite you all to come and look / comment if you like on my photos, my standard comedic rhetoric will only show itself in pictures and in comments.</p>
<p><a href="http://www.vexedphoto.com">http://www.vexedphoto.com</a></p>
<p>-Peace</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vexedmonkey.com/2010/02/07/final-post-to-this-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Proxy</title>
		<link>http://www.vexedmonkey.com/2010/01/17/wordpress-proxy/</link>
		<comments>http://www.vexedmonkey.com/2010/01/17/wordpress-proxy/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 01:54:41 +0000</pubDate>
		<dc:creator>vMonkey</dc:creator>
				<category><![CDATA[PHP Development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://www.vexedmonkey.com/?p=169</guid>
		<description><![CDATA[So i was asked the other day about my installation of wordpress on my cash advance site, specifically how I went about getting a recent post list out of wordpress and onto the home page, when the home page of the site is not inside of wordpress.
Some quick background, my cash advance site (http://www.mycashdirect.com) is [...]]]></description>
			<content:encoded><![CDATA[<p>So i was asked the other day about my installation of wordpress on my cash advance site, specifically how I went about getting a recent post list out of wordpress and onto the home page, when the home page of the site is not inside of wordpress.</p>
<p>Some quick background, my cash advance site (http://www.mycashdirect.com) is a combination of the Zend framework and WP.  The only portions of the site being run via WP is only /loan-articles/.</p>
<p>Back to the question&#8230;  Simple answer and i&#8217;m sure there are other ways of doing this, but it worked&#8230; Proxy via ajax or curl, your choice.</p>
<p>Mine happens to be curl because the function started out as something else and I was to lazy to switch it to ajax, which would be better and I&#8217;ll have to do that later&#8230;. any who</p>
<p>My Zend function that is called on the home page via a view:<br />
<code><br />
	class Library_View_Helper_RecentArticles<br />
{<br />
	public $html = '';<br />
	public function recentArticles($limit=3)<br />
	{<br />
		$curl = curl_init();<br />
		curl_setopt($curl, CURLOPT_URL, 'http://www.mycashdirect.com/loan-articles/article-proxy/');<br />
		curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);<br />
		$this->html = curl_exec($curl);<br />
		curl_close($curl);<br />
		echo $this->html;<br />
	}<br />
}<br />
</code></p>
<p>Pretty simple, yes it needs to be ajax&#8230;. I know&#8230;<br />
On the Wordpress side, I create a page called proxy, and assign a template to that page called&#8230; proxy<br />
that template looks contains a custom loop that only grabs the most recent three post and pushes it out to the page.  You can actually see that page directly if you go <a href="http://www.mycashdirect.com/loan-articles/article-proxy/" rel='nofollow'>here</a>.</p>
<p>And that is about it, I get to use the native functionality of WP outside of WP.  Sure, I could have written the homepage inside of WP, but that would have been to easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vexedmonkey.com/2010/01/17/wordpress-proxy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Blogging Experience</title>
		<link>http://www.vexedmonkey.com/2010/01/17/my-blogging-experience/</link>
		<comments>http://www.vexedmonkey.com/2010/01/17/my-blogging-experience/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 07:20:28 +0000</pubDate>
		<dc:creator>vMonkey</dc:creator>
				<category><![CDATA[Vexed Daily]]></category>

		<guid isPermaLink="false">http://www.vexedmonkey.com/?p=165</guid>
		<description><![CDATA[This is one of 3 blogs that I have.  Vexedmonkey is technically the only personal blog, one of the others is my cash advance blog and the 3rd is some social networking blog thing that I am not a big super fan of.  I think they call it Facebook.
I dislike writing.
So I plan [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of 3 blogs that I have.  Vexedmonkey is technically the only personal blog, one of the others is my cash advance blog and the 3rd is some social networking blog thing that I am not a big super fan of.  I think they call it Facebook.</p>
<p>I dislike writing.</p>
<p>So I plan to change things up, in the near future this blog will go away, going to move to something a little less word intensive, not that I have kept this site updated often.  But it&#8217;s a new year and with this new year I&#8217;m going to be doing things differently.  I won&#8217;t bother you with the details, just a simple list:</p>
<ul>
<li>I am not going to carry a wallet anymore.</li>
<li>I am consolidating my existing blogs into one wordless blog.</li>
<li>I plan to trust people even less than I already do.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.vexedmonkey.com/2010/01/17/my-blogging-experience/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cash Advance Site Backonline</title>
		<link>http://www.vexedmonkey.com/2010/01/04/cash-advance-site-backonline/</link>
		<comments>http://www.vexedmonkey.com/2010/01/04/cash-advance-site-backonline/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 02:37:57 +0000</pubDate>
		<dc:creator>vMonkey</dc:creator>
				<category><![CDATA[PHP Development]]></category>

		<guid isPermaLink="false">http://www.vexedmonkey.com/?p=163</guid>
		<description><![CDATA[Well, mostly out of boredom I put my cash advance loan site back up.  Figured if I was going to have the domain may as well put something on it.  I am trying something different this time though, using WP for the backend and writing annoying amounts of cash advance and payday loan articles each [...]]]></description>
			<content:encoded><![CDATA[<p>Well, mostly out of boredom I put my cash advance loan site back up.  Figured if I was going to have the domain may as well put something on it.  I am trying something different this time though, using WP for the backend and writing annoying amounts of cash advance and payday loan articles each week.  Who knows.. maybe I&#8217;ll get a hit and make a dollar or two. <a href="http://www.mycashdirect.com">Cash Advance Online</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vexedmonkey.com/2010/01/04/cash-advance-site-backonline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
