<?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>jolma.org</title>
	<atom:link href="http://jolma.org/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://jolma.org/blog</link>
	<description></description>
	<lastBuildDate>Sat, 27 Feb 2010 23:57:43 +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>New Wordpress Theme</title>
		<link>http://jolma.org/blog/?p=326</link>
		<comments>http://jolma.org/blog/?p=326#comments</comments>
		<pubDate>Sat, 27 Feb 2010 23:56:25 +0000</pubDate>
		<dc:creator>jjolma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jolma.org/blog/?p=326</guid>
		<description><![CDATA[I got tired of the old theme on this blog.  So, rather than write an interesting post I upgraded my version of Wordpress and added a new theme: Typographic.  I like how it&#8217;s simple: monochromatic, no images, etc.  
]]></description>
			<content:encoded><![CDATA[<p>I got tired of the old theme on this blog.  So, rather than write an interesting post I upgraded my version of Wordpress and added a new theme: Typographic.  I like how it&#8217;s simple: monochromatic, no images, etc.  </p>
]]></content:encoded>
			<wfw:commentRss>http://jolma.org/blog/?feed=rss2&amp;p=326</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animoto is dependant on Google</title>
		<link>http://jolma.org/blog/?p=325</link>
		<comments>http://jolma.org/blog/?p=325#comments</comments>
		<pubDate>Thu, 14 May 2009 16:11:30 +0000</pubDate>
		<dc:creator>jjolma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jolma.org/blog/?p=325</guid>
		<description><![CDATA[Google (apps, search, analytics, etc.) was down for an hour, and this hosed us.  We use Google Apps for email and chat, which was only a minor nuisance.  But we use Google Analytics, and its outage cause all of our pages to time out.  Yikes.
]]></description>
			<content:encoded><![CDATA[<p>Google (apps, search, analytics, etc.) was down for an hour, and this hosed us.  We use Google Apps for email and chat, which was only a minor nuisance.  But we use Google Analytics, and its outage cause all of our pages to time out.  Yikes.</p>
]]></content:encoded>
			<wfw:commentRss>http://jolma.org/blog/?feed=rss2&amp;p=325</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>back up</title>
		<link>http://jolma.org/blog/?p=324</link>
		<comments>http://jolma.org/blog/?p=324#comments</comments>
		<pubDate>Wed, 13 May 2009 02:52:18 +0000</pubDate>
		<dc:creator>jjolma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jolma.org/blog/?p=324</guid>
		<description><![CDATA[My hosting service screwed up a data migration and I didn&#8217;t notice until recently.  Well, it&#8217;s fixed. 
]]></description>
			<content:encoded><![CDATA[<p>My hosting service screwed up a data migration and I didn&#8217;t notice until recently.  Well, it&#8217;s fixed. </p>
]]></content:encoded>
			<wfw:commentRss>http://jolma.org/blog/?feed=rss2&amp;p=324</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bit by a Monkey</title>
		<link>http://jolma.org/blog/?p=323</link>
		<comments>http://jolma.org/blog/?p=323#comments</comments>
		<pubDate>Tue, 09 Dec 2008 15:50:13 +0000</pubDate>
		<dc:creator>jjolma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jolma.org/blog/?p=323</guid>
		<description><![CDATA[Bad Monkey Patch.
A gem we are trying out (Blackbook) decided to override a common string method:

class String
  alias :blank? :empty?
end

Um, this method is used everywhere in rails and has a much different definition:

class String #:nodoc:
  def blank?
    self !~ /\S/
  end
end

Bad monkey
]]></description>
			<content:encoded><![CDATA[<p>Bad Monkey Patch.</p>
<p>A gem we are trying out (Blackbook) decided to override a common string method:</p>
<pre>
class String
  alias :blank? :empty?
end
</pre>
<p>Um, this method is used everywhere in rails and has a much different definition:</p>
<pre>
class String #:nodoc:
  def blank?
    self !~ /\S/
  end
end
</pre>
<p>Bad monkey</p>
]]></content:encoded>
			<wfw:commentRss>http://jolma.org/blog/?feed=rss2&amp;p=323</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing giternal</title>
		<link>http://jolma.org/blog/?p=322</link>
		<comments>http://jolma.org/blog/?p=322#comments</comments>
		<pubDate>Wed, 03 Dec 2008 22:09:33 +0000</pubDate>
		<dc:creator>jjolma</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[gems]]></category>

		<guid isPermaLink="false">http://jolma.org/blog/?p=322</guid>
		<description><![CDATA[I read great things about giternal here.
I ran into problems trying to install it based on the README, though.  I installed the gem from RubyForge but wasn&#8217;t able to find the giternal executable.  And trying to run the sake tasks gave errors like:
/Library/Ruby/Gems/1.8/gems/RubyInline-3.6.7/lib/inline.rb:732:in `initialize': Permission denied - /Users/jolma/.ruby_inline/Inline_ParseTree_fa12.c (Errno::EACCES)

and 

undefined local variable or [...]]]></description>
			<content:encoded><![CDATA[<p>I read great things about <a href="http://github.com/pat-maddox/giternal/tree/master">giternal</a> <a href="http://www.rubyinside.com/giternal-easy-git-external-dependency-management-1322.html">here.</a></p>
<p>I ran into problems trying to install it based on the README, though.  I installed the gem from RubyForge but wasn&#8217;t able to find the giternal executable.  And trying to run the sake tasks gave errors like:</p>
<p><code>/Library/Ruby/Gems/1.8/gems/RubyInline-3.6.7/lib/inline.rb:732:in `initialize': Permission denied - /Users/jolma/.ruby_inline/Inline_ParseTree_fa12.c (Errno::EACCES)<br />
</code></p>
<p>and </p>
<p><code><br />
undefined local variable or method `require_giternal' for main:Object<br />
</code></p>
<p>Pat Maddox, the author, quickly responded to my question.  The key is building the gem from the git source instead of using the gem on RubyForge.  Here is how to do it:</p>
<p><code><br />
git clone git://github.com/pat-maddox/giternal.git<br />
cd giternal<br />
rake install_gem<br />
</code></p>
<p>This may require you install a few gems like hoe and rspec first.</p>
<p>Then, to verify you are set up:</p>
<p><code><br />
$ giternal<br />
Usage: giternal (update:freeze:unfreeze)<br />
</code></p>
<p>Test it on a project</p>
<p><code>$ cd ../someproject/</code></p>
<p><code>$ more config/giternal.yml<br />
rspec:<br />
  repo: git://github.com/dchelimsky/rspec.git<br />
  path: vendor/plugins</code></p>
<p><code>$ ls -al vendor/plugins/rspec<br />
ls: vendor/plugins/rspec: No such file or directory</code></p>
<p><code>$ giternal update</code></p>
<p><code>$ giternal update<br />
Updating rspec<br />
 ..updated</code></p>
<p><code>$ ls -al vendor/plugins/rspec<br />
total 272<br />
</code></p>
<p>Yay.</p>
]]></content:encoded>
			<wfw:commentRss>http://jolma.org/blog/?feed=rss2&amp;p=322</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Awful UI of the day: Paypal</title>
		<link>http://jolma.org/blog/?p=321</link>
		<comments>http://jolma.org/blog/?p=321#comments</comments>
		<pubDate>Mon, 08 Sep 2008 14:26:44 +0000</pubDate>
		<dc:creator>jjolma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jolma.org/blog/?p=321</guid>
		<description><![CDATA[Here is Paypal&#8217;s transaction search.  It would be nice if I could see the full year.  

]]></description>
			<content:encoded><![CDATA[<p>Here is Paypal&#8217;s transaction search.  It would be nice if I could see the full year.  </p>
<p><a href='http://jolma.org/blog/wp-content/uploads/2008/09/picture-1.png' title='picture-1.png'><img src='http://jolma.org/blog/wp-content/uploads/2008/09/picture-1.png' alt='picture-1.png' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jolma.org/blog/?feed=rss2&amp;p=321</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to nap</title>
		<link>http://jolma.org/blog/?p=319</link>
		<comments>http://jolma.org/blog/?p=319#comments</comments>
		<pubDate>Sat, 19 Jul 2008 16:15:17 +0000</pubDate>
		<dc:creator>jjolma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jolma.org/blog/?p=319</guid>
		<description><![CDATA[Anyone who knows me is aware of my love of naps.  But how does one nap well?

Full article here.
]]></description>
			<content:encoded><![CDATA[<p>Anyone who knows me is aware of my love of naps.  But how does one nap well?</p>
<p><a href='http://jolma.org/blog/wp-content/uploads/2008/07/nap.jpg' title='nap'><img src='http://jolma.org/blog/wp-content/uploads/2008/07/nap.jpg' alt='nap' /></a></p>
<p>Full article <a href="http://www.boston.com/bostonglobe/ideas/naps/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jolma.org/blog/?feed=rss2&amp;p=319</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error Message of the Day</title>
		<link>http://jolma.org/blog/?p=317</link>
		<comments>http://jolma.org/blog/?p=317#comments</comments>
		<pubDate>Thu, 10 Jul 2008 14:40:02 +0000</pubDate>
		<dc:creator>jjolma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jolma.org/blog/?p=317</guid>
		<description><![CDATA[Courtesy of MS Office. 

]]></description>
			<content:encoded><![CDATA[<p>Courtesy of MS Office. </p>
<p><a href='http://jolma.org/blog/wp-content/uploads/2008/07/picture-21.png' title='Office Error Message'><img src='http://jolma.org/blog/wp-content/uploads/2008/07/picture-21.png' width="400" height="104"  alt='Office Error Message' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jolma.org/blog/?feed=rss2&amp;p=317</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inbox Zero</title>
		<link>http://jolma.org/blog/?p=315</link>
		<comments>http://jolma.org/blog/?p=315#comments</comments>
		<pubDate>Sun, 06 Jul 2008 18:56:00 +0000</pubDate>
		<dc:creator>jjolma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jolma.org/blog/?p=315</guid>
		<description><![CDATA[There are few things in life more satisfying than empty inboxes, my big accomplishment this weekend.
Merlin Mann gave a great talk on this at Google: http://www.43folders.com/izero#video
]]></description>
			<content:encoded><![CDATA[<p>There are few things in life more satisfying than empty inboxes, my big accomplishment this weekend.</p>
<p>Merlin Mann gave a great talk on this at Google: http://www.43folders.com/izero#video</p>
]]></content:encoded>
			<wfw:commentRss>http://jolma.org/blog/?feed=rss2&amp;p=315</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What should I build?</title>
		<link>http://jolma.org/blog/?p=314</link>
		<comments>http://jolma.org/blog/?p=314#comments</comments>
		<pubDate>Fri, 04 Jul 2008 16:58:42 +0000</pubDate>
		<dc:creator>jjolma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jolma.org/blog/?p=314</guid>
		<description><![CDATA[I&#8217;m bored.  What app should I build this weekend?  It can be a standalone web app or a Facebook app.  And I only want to put in a day.
Ideas?
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m bored.  What app should I build this weekend?  It can be a standalone web app or a Facebook app.  And I only want to put in a day.</p>
<p>Ideas?</p>
]]></content:encoded>
			<wfw:commentRss>http://jolma.org/blog/?feed=rss2&amp;p=314</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
