<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>a serious blog.</title>
	<atom:link href="http://greatseth.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://greatseth.wordpress.com</link>
	<description></description>
	<lastBuildDate>Mon, 12 Sep 2011 17:29:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='greatseth.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/1747a50a95423f70f237c1f0f1253b4b?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>a serious blog.</title>
		<link>http://greatseth.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://greatseth.wordpress.com/osd.xml" title="a serious blog." />
	<atom:link rel='hub' href='http://greatseth.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Project specific .irbrc</title>
		<link>http://greatseth.wordpress.com/2010/02/11/project-specific-irbrc/</link>
		<comments>http://greatseth.wordpress.com/2010/02/11/project-specific-irbrc/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 20:58:55 +0000</pubDate>
		<dc:creator>Seth Rasmussen</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://greatseth.wordpress.com/?p=158</guid>
		<description><![CDATA[Users of Ruby&#8217;s interactive, REPL-tastic program irb should know about the ability to bootstrap your irb environment using ~/.irbrc. If such a file exists, Ruby will load it before giving you a prompt to start entering lines of code. You can put whatever Ruby code you want in there! Here is my ~/.irbrc file, part [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=158&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Users of Ruby&#8217;s interactive, REPL-tastic program <code>irb</code> should know about the ability to bootstrap your <code>irb</code> environment using ~/.irbrc. If such a file exists, Ruby will load it before giving you a prompt to start entering lines of code. You can put whatever Ruby code you want in there!</p>
<p>Here is my ~/.irbrc file, part of my &#8220;dotfiles&#8221; project on GitHub: <a href="http://github.com/greatseth/dotfiles/blob/master/irbrc">http://github.com/greatseth/dotfiles/blob/master/irbrc</a></p>
<p>There are a few handy code snippets in there. Here is one of my favorites:</p>
<pre><code># Project-specific .irbrc
if Dir.pwd != File.expand_path("~")
  local_irbrc = File.expand_path '.irbrc'
  if File.exist? local_irbrc
    puts "Loading #{local_irbrc}"
    load local_irbrc
  end
end

</code></pre>
<p>This says: If we aren&#8217;t in ~/, we look for .irbrc in the current working directory. If we find it, we load it!</p>
<p>That snippet enables an intuitive and really simple hook for project-specific <code>irb</code> bootstrapping. Here&#8217;s an example from my latest labor of love <a href="http://github.com/greatseth/walter">Walter</a>:</p>
<pre><code>require 'grit'
GRIT_EXTENSIONS_PATH = File.expand_path './lib/walter/grit_extensions.rb'
def reload_grit_extensions!; load GRIT_EXTENSIONS_PATH; end
reload_grit_extensions!

</code></pre>
<p>No big whoop, but it&#8217;s awesome to have stuff you do all the time in your <code>irb</code> hackings utomatically setup for you.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatseth.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatseth.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatseth.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatseth.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatseth.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatseth.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatseth.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatseth.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatseth.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatseth.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatseth.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatseth.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatseth.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatseth.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=158&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatseth.wordpress.com/2010/02/11/project-specific-irbrc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40823088cec28c3224ff4c46ced1beda?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">greatseth</media:title>
		</media:content>
	</item>
		<item>
		<title>easier said.</title>
		<link>http://greatseth.wordpress.com/2008/10/09/easier-said/</link>
		<comments>http://greatseth.wordpress.com/2008/10/09/easier-said/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 05:37:20 +0000</pubDate>
		<dc:creator>Seth Rasmussen</dc:creator>
				<category><![CDATA[everything else]]></category>

		<guid isPermaLink="false">http://greatseth.wordpress.com/?p=50</guid>
		<description><![CDATA[Seth Godin recently wrote about the importance of being on time. He used special emphasis when he wrote: Boy that&#8217;s simple. Apparently, it&#8217;s incredibly difficult. I&#8217;ve been paying more attention to this attitude lately, this assertion of what is easy. Recently on the Shoes mailing list somebody wrote the following(details omitted for clarity of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=50&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://sethgodin.typepad.com/seths_blog/2008/09/time.html">Seth Godin recently wrote about the importance of being on time.</a> He used special emphasis when he wrote:</p>
<blockquote cite="http://sethgodin.typepad.com/seths_blog/2008/09/time.html"><p>Boy that&#8217;s simple. Apparently, it&#8217;s incredibly difficult.</p></blockquote>
<p>I&#8217;ve been paying more attention to this attitude lately, this assertion of what is easy. Recently on the <a href="http://shoooes.net">Shoes</a> mailing list somebody wrote the following(details omitted for clarity of the point here):</p>
<blockquote><p>I was wondering if shoes could [do this cool thing]. [The system]<br />
natively supports [this other cool thing that would be helpful for the aforementioned, desired but as yet unrealised cool thing], so it couldn&#8217;t be very hard&#8230;</p></blockquote>
<p>Godin asserts that being on time and respecting the time of others is easy. This fellow on the Shoes list asserts that adding some desired behavior to his programs <em>couldn&#8217;t</em> be very hard. If the former were true, Godin wouldn&#8217;t have much of a blog post. If the latter were true, the fellow probably would have fixed his problems instead of going to the group at large for support.</p>
<p>Honoring others at all times is not easy. Programming is not easy. Many things in life are not easy. Sure, people make things harder than they have to be sometimes, but I think most love an easy win, too. Perhaps there just aren&#8217;t as many out there as we&#8217;d sometimes like to think.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatseth.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatseth.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatseth.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatseth.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatseth.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatseth.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatseth.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatseth.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatseth.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatseth.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatseth.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatseth.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatseth.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatseth.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=50&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatseth.wordpress.com/2008/10/09/easier-said/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40823088cec28c3224ff4c46ced1beda?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">greatseth</media:title>
		</media:content>
	</item>
		<item>
		<title>Ender&#8217;s game: price overrides OR how I got the iPhone 3G for $199 despite The Man trying to screw me.</title>
		<link>http://greatseth.wordpress.com/2008/10/04/enders-game-price-overrides-or-how-i-got-the-iphone-3g-for-199-despite-the-man-trying-to-screw-me/</link>
		<comments>http://greatseth.wordpress.com/2008/10/04/enders-game-price-overrides-or-how-i-got-the-iphone-3g-for-199-despite-the-man-trying-to-screw-me/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 22:54:39 +0000</pubDate>
		<dc:creator>Seth Rasmussen</dc:creator>
				<category><![CDATA[everything else]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[AT&T]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://greatseth.wordpress.com/?p=76</guid>
		<description><![CDATA[So, I went to the Apple store the other day to get the iPhone 3G in honor of my landing a new job and, yeknow, &#8217;cause it&#8217;s faster and shit. As the baby blue t-shirt clad chap helped me complete my purchase, he informed me that I wasn&#8217;t eligible for the &#8220;upgrade price&#8221; because my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=76&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, I went to the Apple store the other day to get the iPhone 3G in honor of my landing a new job and, yeknow, &#8217;cause it&#8217;s faster and shit. As the baby blue t-shirt clad chap helped me complete my purchase, he informed me that I wasn&#8217;t eligible for the &#8220;upgrade price&#8221; because my current AT&amp;T contract is less than a year old. Instead of the widely advertised $199 price I would have to pay $399. I had never heard of such a thing, and my quick appraisal of the notion only cemented my initial reaction of &#8220;WTF?&#8221; Why would they penalize people who had contracts less than a year old? I called up AT&amp;T and they confirmed this bizarre rule. Pissed off and confused, I left that day without a new iPhone.</p>
<p>Yesterday, I went back, resigned to my overcharged fate. I just couldn&#8217;t bear the thought of the EDGE network and no GPS until next April. Another baby blue t-shirt clad chap helped me and also pointed out the ridiculous AT&amp;T pricing rule. I explained how I knew and what I knew. &#8220;Weird,&#8221; he said. &#8220;I know,&#8221; I replied. &#8220;Let me see what I can do on my end,&#8221; he said and walked off to god knows where. Probably a room full of baby blue t-shirt clad hipsters.</p>
<p>Eventually, he returned and informed me that he was able to hook me up with a &#8220;price override&#8221; and that I would be getting my new phone for the upgrade price of $199 plus tax and some shady changes in my phone plan required by AT&amp;T when upgrading to the new phone. Whatever.</p>
<p>The big take away here is that, should you find yourself presented with the same bullshit $399 deal, don&#8217;t quit there! Ask about &#8220;price overrides&#8221; or come back later and look for a nerdy lookin&#8217; fellow named Ender (Thanks, broseph!). Just know that victory can be yours, oh yes.. it can be yours.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatseth.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatseth.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatseth.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatseth.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatseth.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatseth.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatseth.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatseth.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatseth.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatseth.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatseth.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatseth.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatseth.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatseth.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=76&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatseth.wordpress.com/2008/10/04/enders-game-price-overrides-or-how-i-got-the-iphone-3g-for-199-despite-the-man-trying-to-screw-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40823088cec28c3224ff4c46ced1beda?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">greatseth</media:title>
		</media:content>
	</item>
		<item>
		<title>on Rand and The Fountainhead</title>
		<link>http://greatseth.wordpress.com/2008/08/13/on-rand-and-the-fountainhead/</link>
		<comments>http://greatseth.wordpress.com/2008/08/13/on-rand-and-the-fountainhead/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 21:01:34 +0000</pubDate>
		<dc:creator>Seth Rasmussen</dc:creator>
				<category><![CDATA[everything else]]></category>

		<guid isPermaLink="false">http://greatseth.wordpress.com/?p=45</guid>
		<description><![CDATA[I always think of The Fountainhead like a great comic book redone as a novel. Or something like that. The characters are so extremist, the style and passion attractive.. it&#8217;s got epic intensity. I guess if you really dig into Rand&#8217;s ideas about reality it gets nutty or whatever, but I don&#8217;t give a fuck [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=45&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I always think of The Fountainhead like a great comic book redone as a novel. Or something like that. The characters are so extremist, the style and passion attractive.. it&#8217;s got epic intensity. I guess if you really dig into Rand&#8217;s ideas about reality it gets nutty or whatever, but I don&#8217;t give a fuck about that. Nor do I have to. So, fuck off with your knee-jerk judgement because I read a goddamn book.</p>
<p>Anyway, I tried reading Atlast Shrugged later, and I felt like it was the exact same book. Only about trains. And longer somehow. So, I got bored and stopped reading. I think I gave up while riding a train, actually..</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/greatseth.wordpress.com/45/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/greatseth.wordpress.com/45/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatseth.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatseth.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatseth.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatseth.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatseth.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatseth.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatseth.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatseth.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatseth.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatseth.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatseth.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatseth.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatseth.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatseth.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=45&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatseth.wordpress.com/2008/08/13/on-rand-and-the-fountainhead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40823088cec28c3224ff4c46ced1beda?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">greatseth</media:title>
		</media:content>
	</item>
		<item>
		<title>modern reason.</title>
		<link>http://greatseth.wordpress.com/2008/08/11/modern-reason/</link>
		<comments>http://greatseth.wordpress.com/2008/08/11/modern-reason/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 01:52:09 +0000</pubDate>
		<dc:creator>Seth Rasmussen</dc:creator>
				<category><![CDATA[everything else]]></category>
		<category><![CDATA[poetry]]></category>

		<guid isPermaLink="false">http://greatseth.wordpress.com/?p=40</guid>
		<description><![CDATA[it took me forever to figure out how to write something on that stupid event wall didn't see the tiny link and then i was wandering around in yet another unfocused internet journey that started with my bitching about that interface on twitter until i eventually came back to gmail and thought i'd just fucking [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=40&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>
<pre>
it took me forever to figure out
how to write something on that stupid event wall
didn't see the tiny link

and then i was wandering around in
yet another unfocused internet journey
that started with my bitching about that interface
on twitter until i eventually came back to gmail

and thought
i'd just fucking email you
</pre></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/greatseth.wordpress.com/40/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/greatseth.wordpress.com/40/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatseth.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatseth.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatseth.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatseth.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatseth.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatseth.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatseth.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatseth.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatseth.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatseth.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatseth.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatseth.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatseth.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatseth.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=40&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatseth.wordpress.com/2008/08/11/modern-reason/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40823088cec28c3224ff4c46ced1beda?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">greatseth</media:title>
		</media:content>
	</item>
		<item>
		<title>geocoding info in Ruby.</title>
		<link>http://greatseth.wordpress.com/2008/07/24/geocoding-info-in-ruby/</link>
		<comments>http://greatseth.wordpress.com/2008/07/24/geocoding-info-in-ruby/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 20:17:55 +0000</pubDate>
		<dc:creator>Seth Rasmussen</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://greatseth.wordpress.com/?p=26</guid>
		<description><![CDATA[Sometime last year, around the time of the 2007 RailsConf if I recall correctly, I wrote a tiny little gem called google-geo. It's a simple group of classes for making queries against Google's geocoding service and getting some classy objects in return.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=26&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometime last year, around the time of the 2007 RailsConf if I recall correctly, I wrote a tiny little gem called <a title="Visit the project on GitHub" href="http://github.com/greatseth/google-geo">google-geo</a>. It&#8217;s a simple group of classes for making queries against <a href="http://code.google.com/apis/maps/documentation/services.html#Geocoding">Google&#8217;s geocoding service</a> and getting some classy objects in return.</p>
<p>Here are some choice examples from the README.</p>
<pre><code>geo = Google::Geo.new API_KEY

addresses = geo.locate '1600 Amphitheatre Parkway, Mountain View, CA'
addresses.size # 1, :locate always returns an Array

address = addresses.first

address.country      # 'US'
address.city         # 'Mountain View'
address.full_address # '1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA'

address.query        # '1600 Amphitheatre Parkway, Mountain View, CA'
address.accuracy     # 8</code></pre>
<p>In the case of sufficiently vague queries, Google::Geo will return more than one:</p>
<pre><code>addresses = geo.locate 'hell'
addresses.size                # 2
addresses.map { |a| a.state } # ['PA', 'NC']</code></pre>
<p>Somebody recently contacted me about including this gem in a OpenBSD package, so I added in a LICENSE and put the project up on <a href="http://github.com">GitHub</a>.</p>
<blockquote><p>The &#8220;package&#8221; is just an OpenBSD application package. It would be similar to FreeBSD or NetBSD&#8217;s ports or Debian&#8217;s apt-get system. I&#8217;m using your Google-geo library in the web app I&#8217;m currently building. I found it very clean and helpful and though the rest of the OpenBSD community should know about it, so I&#8217;m creating an application package for it. Therefore, someone can just do a `pkg_add ruby-google-geo` and have your library installed. Also, if someone queries the OpenBSD packages looking for some kind of geo coding library, your library will pop up.</p></blockquote>
<p>Very cool! Thanks, Clint.</p>
<p>I&#8217;ve always been pleased with this library. I think it&#8217;s a great example of simple quality.</p>
<ul>
<li>First, it has tests. The tests use fixtures based on reasonable assumptions about what we can expect from Google&#8217;s service. This means that you can run the tests anytime and very quickly.</li>
<li>Second, it has no dependencies outside the standard Ruby libraries. XML parsing is relegated to a couple simple methods that use regular expressions to extract values from the response markup. Heresy, eh? No, quality. The overhead and complexity of a &#8220;real&#8221; parsing library is simply. not. needed.</li>
<li>Aaannnd you get great objects to work with.</li>
</ul>
<p>Score!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/greatseth.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/greatseth.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatseth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatseth.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatseth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatseth.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatseth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatseth.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatseth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatseth.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatseth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatseth.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatseth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatseth.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatseth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatseth.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=26&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatseth.wordpress.com/2008/07/24/geocoding-info-in-ruby/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40823088cec28c3224ff4c46ced1beda?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">greatseth</media:title>
		</media:content>
	</item>
		<item>
		<title>runpacker.</title>
		<link>http://greatseth.wordpress.com/2008/06/09/runpacker/</link>
		<comments>http://greatseth.wordpress.com/2008/06/09/runpacker/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 22:29:53 +0000</pubDate>
		<dc:creator>Seth Rasmussen</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://greatseth.wordpress.com/?p=23</guid>
		<description><![CDATA[I&#8217;ve noticed that RubyGems(as of version 1.0.1, anyway) does not offer a convenient way to unpack a specified gem and all of its dependencies. So, I decided to try to come up with something simple to work around that. After a few minutes inspecting the Gem API and some help from drbrain, I ended up [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=23&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve noticed that RubyGems(as of version 1.0.1, anyway) does not offer a convenient way to unpack a specified gem <em>and</em> all of its dependencies. So, I decided to try to come up with something simple to work around that. After a few minutes inspecting the <code>Gem</code> API and some help from <a href="http://blog.segment7.net/"><abbr title="Eric Hodel">drbrain</abbr></a>, I ended up with this:</p>
<pre><code>#!/usr/bin/env ruby

if ARGV.empty?
  puts "Usage: runpack gem_name"
  exit
end

require "rubygems"
gem_specified = ARGV.first
Gem.gem gem_specified
gems_to_unpack = [gem_specified] +
  Gem.loaded_specs[gem_specified].dependencies.map { |d| d.name }
gems_to_unpack.each { |g| system "gem unpack #{g}" }
</code></pre>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/greatseth.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/greatseth.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatseth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatseth.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatseth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatseth.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatseth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatseth.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatseth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatseth.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatseth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatseth.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatseth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatseth.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatseth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatseth.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=23&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatseth.wordpress.com/2008/06/09/runpacker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40823088cec28c3224ff4c46ced1beda?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">greatseth</media:title>
		</media:content>
	</item>
		<item>
		<title>be offended. be very offended.</title>
		<link>http://greatseth.wordpress.com/2008/06/04/be-offended-be-very-offended/</link>
		<comments>http://greatseth.wordpress.com/2008/06/04/be-offended-be-very-offended/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 00:11:05 +0000</pubDate>
		<dc:creator>Seth Rasmussen</dc:creator>
				<category><![CDATA[everything else]]></category>

		<guid isPermaLink="false">http://greatseth.wordpress.com/?p=21</guid>
		<description><![CDATA[I left the following as a comment on a recent failure, and I was just pleased enough with its coherence that I thought I would post it here: Taking personal offense to something is a subjective experience. Everyone has the right to that experience, but what I don’t think they have the right to is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=21&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I left the following as a comment on <a href="http://failblog.org/2008/06/03/tour-de-fail">a recent failure</a>, and I was just pleased enough with its coherence that I thought I would post it here:</p>
<blockquote cite="http://failblog.org/2008/06/03/tour-de-fail/#comment-13567"><p>
Taking personal offense to something is a subjective experience. Everyone has the right to that experience, but what I don’t think they have the right to is asking somebody to take back something like this. Where do you draw the line? “OK, this is offensive, but that is not.” Great. What about me? What about that guy? What about the guy who hasn’t even entered the situation yet?</p>
<p>Be offended if you must, but leave it at that and move on.
</p></blockquote>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/greatseth.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/greatseth.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatseth.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatseth.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatseth.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatseth.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatseth.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatseth.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatseth.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatseth.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatseth.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatseth.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatseth.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatseth.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatseth.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatseth.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=21&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatseth.wordpress.com/2008/06/04/be-offended-be-very-offended/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40823088cec28c3224ff4c46ced1beda?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">greatseth</media:title>
		</media:content>
	</item>
		<item>
		<title>a poor man&#8217;s YouTube API in Ruby.</title>
		<link>http://greatseth.wordpress.com/2008/06/04/a-poor-mans-youtube-api-in-ruby/</link>
		<comments>http://greatseth.wordpress.com/2008/06/04/a-poor-mans-youtube-api-in-ruby/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 20:40:51 +0000</pubDate>
		<dc:creator>Seth Rasmussen</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://greatseth.wordpress.com/?p=20</guid>
		<description><![CDATA[I&#8217;ve been playing with a little Merb app for my new personal website. One of the focuses of the project is for me to focus less on engineering principles and so-called best practices and more on features and doing new, creative things. Recently I thought it would be cool if YouTube videos I linked to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=20&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing with a little <a href="http://merbivore.com">Merb</a> app for <a href="http://greatseth.com">my new personal website</a>. One of the focuses of the project is for me to focus less on engineering principles and so-called best practices and more on features and doing new, creative things.</p>
<p>Recently I thought it would be cool if <a href="http://youtube.com">YouTube</a> videos I linked to via <a href="http://delicious.com/sethrasmussen">my Delicious account</a> were automatically embedded in the HTML representation of the <a href="http://pipes.yahoo.com">Yahoo! Pipes</a> <a href="http://greatseth.com/feeds/combined">feed which powers the main view of my new site</a>. I came up with this:</p>
<div>
<pre><code>CGI.unescapeHTML Hpricot(open(link)).at("#embed_code")[:value]</code></pre>
</div>
<p>Now, if you want to split hairs, it&#8217;s definitely questionable. However, context is everything, and in my current one, this solution works great.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/greatseth.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/greatseth.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatseth.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatseth.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatseth.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatseth.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatseth.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatseth.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatseth.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatseth.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatseth.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatseth.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatseth.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatseth.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatseth.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatseth.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=20&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatseth.wordpress.com/2008/06/04/a-poor-mans-youtube-api-in-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40823088cec28c3224ff4c46ced1beda?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">greatseth</media:title>
		</media:content>
	</item>
		<item>
		<title>hacked bot.</title>
		<link>http://greatseth.wordpress.com/2008/05/23/hacked-bot/</link>
		<comments>http://greatseth.wordpress.com/2008/05/23/hacked-bot/#comments</comments>
		<pubDate>Fri, 23 May 2008 23:03:47 +0000</pubDate>
		<dc:creator>Seth Rasmussen</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://greatseth.wordpress.com/?p=19</guid>
		<description><![CDATA[I was recently clued into Hackbot&#8217;s HaHa&#8217;s. It is a delightful and simple concept: Images of robots from earlier science fiction are funny. Cheesy computer synthesized voices saying things people might say are funny. The two combined are even funnier. So, I made an RSS feed for Hackbot. It is powered by Dreamweaver created HTML, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=19&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was recently clued into <a href="http://www.funboxcomedy.com/Fun_with_FunBox/Hackbots_HaHas.htm">Hackbot&#8217;s HaHa&#8217;s</a>. It is a delightful and simple concept:</p>
<ul>
<li>Images of robots from earlier science fiction are funny.</li>
<li>Cheesy computer synthesized voices saying things people might say are funny.</li>
<li>The two combined are even funnier.</li>
</ul>
<p>So, I made an <a href="http://greatseth.com/feeds/hackbot">RSS feed for Hackbot</a>. It is powered by Dreamweaver created HTML, some of the finest quick hackery this side of The Appalachians, and the promise that new jokes are published every Tuesday.</p>
<p>Here&#8217;s hoping..</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/greatseth.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/greatseth.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatseth.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatseth.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatseth.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatseth.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatseth.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatseth.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatseth.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatseth.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatseth.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatseth.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatseth.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatseth.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatseth.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatseth.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatseth.wordpress.com&amp;blog=1629311&amp;post=19&amp;subd=greatseth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatseth.wordpress.com/2008/05/23/hacked-bot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/40823088cec28c3224ff4c46ced1beda?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">greatseth</media:title>
		</media:content>
	</item>
	</channel>
</rss>
