<?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>Monkeyonfire.org</title>
	<atom:link href="http://monkeyonfire.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://monkeyonfire.org</link>
	<description>Well, not much, really.</description>
	<lastBuildDate>Sat, 23 Oct 2010 20:43:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Ruby Imap foo</title>
		<link>http://monkeyonfire.org/2010/10/19/ruby-imap-foo/</link>
		<comments>http://monkeyonfire.org/2010/10/19/ruby-imap-foo/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 17:56:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://monkeyonfire.org/?p=41</guid>
		<description><![CDATA[How to tell if a message has been read or not with ruby net/imap flags=imap.uid_fetch(uid,'FLAGS')[0].attr["FLAGS"] seen=true if flags.include? :Seen &#124;&#124; false Spent a while looking for that one, and well, I learned the hard way : Stop googling and read the code]]></description>
			<content:encoded><![CDATA[<p>How to tell if a message has been read or not with ruby net/imap<br />
<code><br />
flags=imap.uid_fetch(uid,'FLAGS')[0].attr["FLAGS"]<br />
seen=true if flags.include? :Seen || false<br />
</code></p>
<p>Spent a while looking for that one, and well, I learned the hard way : <a href="http://railstips.org/blog/archives/2010/10/14/stop-googling/">Stop googling and read the code</a></p>
]]></content:encoded>
			<wfw:commentRss>http://monkeyonfire.org/2010/10/19/ruby-imap-foo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brickd</title>
		<link>http://monkeyonfire.org/2010/08/09/brickd/</link>
		<comments>http://monkeyonfire.org/2010/08/09/brickd/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 20:12:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://monkeyonfire.org/?p=35</guid>
		<description><![CDATA[Check out my friend Max&#8217;s new blog: Brickd. All sorts of Lego awesomeness.]]></description>
			<content:encoded><![CDATA[<p>Check out my friend Max&#8217;s new blog: <a href="http://www.brickd.com/">Brickd</a>. All sorts of Lego awesomeness.</p>
]]></content:encoded>
			<wfw:commentRss>http://monkeyonfire.org/2010/08/09/brickd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fun With Unicode</title>
		<link>http://monkeyonfire.org/2010/08/03/fun-with-unicode/</link>
		<comments>http://monkeyonfire.org/2010/08/03/fun-with-unicode/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 21:16:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://monkeyonfire.org/?p=33</guid>
		<description><![CDATA[Try this link: http://www.google.com/search?q=%26%238238%3B this unicode character flips the direction of the text after it. &#38;#8238; Like so: &#8238; this text is now backwards!!!]]></description>
			<content:encoded><![CDATA[<p>Try this link: <a title="http://www.google.com/search?q=&amp;#8238;" href="http://www.google.com/search?q=&amp;#8238;">http://www.google.com/search?q=%26%238238%3B</a></p>
<p>this unicode character flips the direction of the text after it. &amp;#8238;</p>
<p>Like so: <span>&#8238; this text is now backwards!!!</span></p>
]]></content:encoded>
			<wfw:commentRss>http://monkeyonfire.org/2010/08/03/fun-with-unicode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Openvbx and nginx howto:</title>
		<link>http://monkeyonfire.org/2010/07/29/openvbx-and-nginx-howto/</link>
		<comments>http://monkeyonfire.org/2010/07/29/openvbx-and-nginx-howto/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 17:44:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://monkeyonfire.org/?p=24</guid>
		<description><![CDATA[Well, you just need a few rewrite rules to deal with openvbx on nginx:

Here is my example config file.
]]></description>
			<content:encoded><![CDATA[<p>Well, you just need a few rewrite rules to deal with openvbx on nginx:</p>
<p>Inside of the server block, add this.<br />
<code><br />
 location / {<br />
                #root   /var/www/nginx-default;<br />
                root   /www/virtual/vbx.example.com;</p>
<p>                index  index.html index.htm index.php;<br />
        if (-f $request_filename) {<br />
           break;<br />
        }</p>
<p>        if (-d $request_filename) {<br />
           break;<br />
        }<br />
        rewrite  ^(.*)$  /index.php?vbxsite=$1  last;</p>
<p>        }</p>
<p></code></p>
<p>&#8212;&#8212;&#8212;&#8211;UPDATE&#8212;&#8212;&#8212;&#8212;-<br />
In trying to upgrade to the new hotness 0.84, I ran into two problems.<br />
1) don&#8217;t forget to copy over your /OpenVBX/OpenVBX/config/database.php and /OpenVBX/OpenVBX/config/openvbx.php files from the old directory and into the new hotness directory.</p>
<p>2)&#8221;PHP Fatal error:  Call to undefined function get_instance() in /OpenVBX/libraries/MY_Config.php on line 43&#8243;</p>
<p>Apparently, others are also having this problem. The installer wants you to use vbx.example.com/index.php/install but that will cause everything to break too. You should be able to drop the index.php and go directly to vbx.example.com/upgrade all will be well in the world. </p>
]]></content:encoded>
			<wfw:commentRss>http://monkeyonfire.org/2010/07/29/openvbx-and-nginx-howto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A place to mess around</title>
		<link>http://monkeyonfire.org/2010/07/19/a-place-to-mess-around-with-software/</link>
		<comments>http://monkeyonfire.org/2010/07/19/a-place-to-mess-around-with-software/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 22:01:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://monkeyonfire.org/?p=14</guid>
		<description><![CDATA[Ideally, a bunch of eclectic, funky, potentially useful or useless stuff]]></description>
			<content:encoded><![CDATA[<p>Ideally, a bunch of eclectic, funky, potentially useful or useless stuff</p>
]]></content:encoded>
			<wfw:commentRss>http://monkeyonfire.org/2010/07/19/a-place-to-mess-around-with-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

