<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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" version="2.0">

<channel>
	<title>Shaun Haber</title>
	
	<link>http://srhaber.com</link>
	<description>Me = musician + programmer, and more</description>
	<pubDate>Tue, 02 Dec 2008 10:40:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/srhabercom" type="application/rss+xml" /><item>
		<title>Drupal Case Study on MCR: FeedAPI, SimplePie Parser, and Cron</title>
		<link>http://srhaber.com/blog/2008/12/01/drupal-case-study-on-mcr-feedapi-simplepie-parser-and-cron/</link>
		<comments>http://srhaber.com/blog/2008/12/01/drupal-case-study-on-mcr-feedapi-simplepie-parser-and-cron/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 07:58:29 +0000</pubDate>
		<dc:creator>srhaber</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[cron]]></category>

		<category><![CDATA[drupal]]></category>

		<category><![CDATA[feed]]></category>

		<category><![CDATA[my chemical romance]]></category>

		<category><![CDATA[wbr]]></category>

		<guid isPermaLink="false">http://srhaber.com/?p=186</guid>
		<description><![CDATA[Last week at WBR, we re-launched the website for My Chemical Romance.  The site&#8217;s built on Drupal 6.x and showcases blogs, photos, and tweets directly from the band members.  

To aggregate the Twitter feed, we used the FeedAPI module and associated SimplePie parser.  Cron runs every 10 minutes to ensure the content [...]]]></description>
			<content:encoded><![CDATA[<p>Last week at WBR, we re-launched the website for <a href="http://mychemicalromance.com">My Chemical Romance</a>.  The site&#8217;s built on Drupal 6.x and showcases blogs, photos, and tweets directly from the band members.  </p>
<p><a href="http://www.flickr.com/photos/srhaber/3077022834/" title="My Chemical Romance by srhaber, on Flickr"><img src="http://farm4.static.flickr.com/3236/3077022834_2d70b24154.jpg" width="500" height="375" alt="My Chemical Romance" /></a></p>
<p>To aggregate the Twitter feed, we used the <a href="http://drupal.org/project/feedapi">FeedAPI</a> module and associated SimplePie parser.  Cron runs every 10 minutes to ensure the content stays fresh.</p>
<p>We hit a few bumps getting this all to work.</p>
<p><strong>Feeds rarely updating</strong><br />
Initially, the feeds were scarcely refreshing.  The problem was caused by SimplePie doing its own feed caching, with FeedAPI blissfully unaware.  To fix this, I wrote a simple patch for parser_simplepie.module (under review as of this writing): <a href="http://drupal.org/node/341410">http://drupal.org/node/341410</a></p>
<p><strong>Cron not refreshing feeds</strong><br />
Cron, when invoked from a command-line PHP script, was failing to refresh the feeds.  The cause was a default PHP setting of max_execution_time = 0.  </p>
<p>FeedAPI uses max_execution_time to calculate its allowed time during a cron run.  This value is always set when invoking PHP through the web, but it needs to be explicitly defined in any command line PHP script.  This is solved with the following line of code:</p>
<p><code>ini_set('max_execution_time', 300); // Set to 5 minutes</code></p>
<p><strong>Cron refresh rate set too high</strong><br />
FeedAPI sets a default cron refresh rate value of 1800 seconds.  This prevents cron from refreshing the feeds twice within 30 minutes.  For us this was too high (cron runs every 10 minutes).  Lowering this to a more reasonable setting did the trick.</p>
<p><em>feedapi.module (lines 14-15):</em>
<pre><code>// Minimum time that must elapse before a feed can be refreshed again on cron.
define('FEEDAPI_CRON_MIN_REFRESH_TIME', 300);</code></pre>
<p>Everything is now running smoothly!</p>
]]></content:encoded>
			<wfw:commentRss>http://srhaber.com/blog/2008/12/01/drupal-case-study-on-mcr-feedapi-simplepie-parser-and-cron/feed/</wfw:commentRss>
		</item>
		<item>
		<title>BADCamp Slides and Code</title>
		<link>http://srhaber.com/blog/2008/10/13/badcamp-slides-and-code/</link>
		<comments>http://srhaber.com/blog/2008/10/13/badcamp-slides-and-code/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 07:30:50 +0000</pubDate>
		<dc:creator>srhaber</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<category><![CDATA[badcamp]]></category>

		<category><![CDATA[database]]></category>

		<category><![CDATA[drupal]]></category>

		<guid isPermaLink="false">http://srhaber.com/?p=150</guid>
		<description><![CDATA[My BADCamp slides and code are available below.
Database Syncronization
http://badcamp.net/session/database-synchronization

SlideShare
PDF (8.6 MB)
Code and &#8220;knowledge base&#8221; (zip)

Core Crazy
http://badcamp.net/session/core-crazy

SlideShare
PDF (7.5 MB)

]]></description>
			<content:encoded><![CDATA[<p>My <a href="http://badcamp.net/">BADCamp</a> slides and code are available below.</p>
<p><strong>Database Syncronization</strong><br />
<a href="http://badcamp.net/session/database-synchronization">http://badcamp.net/session/database-synchronization</a></p>
<ul>
<li><a href="http://www.slideshare.net/srhaber/badcamp-2008-db-sync-presentation/">SlideShare</a></li>
<li><a href="http://srhaber.com/talks/badcamp08_dbsync.pdf">PDF (8.6 MB)</a></li>
<li><a href="http://srhaber.com/talks/dbsync081013.zip">Code and &#8220;knowledge base&#8221; (zip)</a></li>
</ul>
<p><strong>Core Crazy</strong><br />
<a href="http://badcamp.net/session/core-crazy">http://badcamp.net/session/core-crazy</a></p>
<ul>
<li><a href="http://www.slideshare.net/srhaber/badcamp-2008-core-crazy-presentation">SlideShare</a></li>
<li><a href="http://srhaber.com/talks/badcamp08_corecrazy.pdf">PDF (7.5 MB)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://srhaber.com/blog/2008/10/13/badcamp-slides-and-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Quick Look from the command line!</title>
		<link>http://srhaber.com/blog/2007/11/04/quick-look-from-the-command-line/</link>
		<comments>http://srhaber.com/blog/2007/11/04/quick-look-from-the-command-line/#comments</comments>
		<pubDate>Sun, 04 Nov 2007 07:54:16 +0000</pubDate>
		<dc:creator>srhaber</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.srhaber.com/2007/11/04/quick-look-from-the-command-line/</guid>
		<description><![CDATA[For all you Leopard users out there, here&#8217;s a handy trick to use Quick Look from the command line.
Leopard ships with a command called &#8216;qlmanage&#8217;. The -p option shows a preview of the file passed to the command. In the terminal, type the following:

qlmanage -p thefile

You can extend this by creating the following shell script:

#!/bin/bash
qlmanage [...]]]></description>
			<content:encoded><![CDATA[<p>For all you Leopard users out there, here&#8217;s a handy trick to use Quick Look from the command line.</p>
<p>Leopard ships with a command called &#8216;qlmanage&#8217;. The -p option shows a preview of the file passed to the command. In the terminal, type the following:</p>
<pre>
<code>qlmanage -p thefile</code>
</pre>
<p>You can extend this by creating the following shell script:</p>
<pre>
<code>#!/bin/bash
qlmanage -p $1 &gt;&amp; /dev/null &amp;</code>
</pre>
<p><em>The <code>&gt;&amp; /dev/null</code> prevents output from displaying, and the <code>&amp;</code> runs the process in the background so a new prompt displays on the terminal.</em></p>
<p><a href="http://srhaber.com/wp-content/uploads/2007/11/ql">Download it here.</a></p>
<p>Save this script as an executable file and store it somewhere in your PATH. I recommend naming it something short like &#8216;ql&#8217;.</p>
<p>(Note: I stored mine in a home bin folder used for custom-made scripts).</p>
<p>You can close the Quick Look window with the mouse (the conventional way), or close it in the terminal by getting the pid from the <code>ps</code> command and using <code>kill [pid]</code>.</p>
<p><a href="http://www.flickr.com/photos/srhaber/1853258122/" title="Photo Sharing"><img src="http://farm3.static.flickr.com/2216/1853258122_58ee5851ec_o.png" width="528" height="318" alt="ql_on" /></a></p>
<p><strong>Using the ql command in Terminal</strong></p>
<p><a href="http://www.flickr.com/photos/srhaber/1853258116/" title="Photo Sharing"><img src="http://farm3.static.flickr.com/2418/1853258116_c881e90539_o.png" width="410" height="125" alt="ql_off" /></a></p>
<div style='clear:both'></div>
<p><strong>Closing the Quick Look window using the kill command</strong></p>
<p>This feature is really handy for me because I spend a lot time in the Terminal. Many times I encounter a file such as an image, pdf, word doc, etc. that I&#8217;d like to briefly preview.</p>
<p>Before I discovered this, I would resort to opening Finder and navigating to the same directory to preview the file. Being able to do this all from Terminal is a real time saver!</p>
<p><strong>[UPDATE]</strong><br />
A better solution is to use &#8220;$@&#8221; (with quotes) instead of $1 in the script.  This will allow multiple arguments and wrap quotes around each one to account for spaces or other odd characters in the filename.   Additionally, providing multiple arguments creates a slideshow in Quicklook.</p>
<p><code><br />
#!/bin/bash<br />
qlmanage -p “$@” >&#038; /dev/null &#038;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://srhaber.com/blog/2007/11/04/quick-look-from-the-command-line/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Spinwatch: Southwest (Finally) Apologizes To Mini-Skirted Customer</title>
		<link>http://srhaber.com/blog/2007/09/15/spinwatch-southwest-finally-apologizes-to-mini-skirted-customer/</link>
		<comments>http://srhaber.com/blog/2007/09/15/spinwatch-southwest-finally-apologizes-to-mini-skirted-customer/#comments</comments>
		<pubDate>Sat, 15 Sep 2007 21:34:06 +0000</pubDate>
		<dc:creator>srhaber</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.srhaber.com/2007/09/15/spinwatch-southwest-finally-apologizes-to-mini-skirted-customer/</guid>
		<description><![CDATA[Spinwatch: Southwest (Finally) Apologizes To Mini-Skirted Customer:  This is yet one more reason why I love Southwest Airlines.  They admit to their mistakes and are &#8220;somehow&#8221; able to spin them into good PR opps.
My favorite personal Southwest experience earlier this year:
I was on a flight from San Diego to Oakland on Februrary 14. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://feeds.gawker.com/~r/consumerist/full/~3/156638919/southwest-finally-apologizes-to-mini+skirted-customer-300185.php">Spinwatch: Southwest (Finally) Apologizes To Mini-Skirted Customer</a>:  This is yet one more reason why I love Southwest Airlines.  They admit to their mistakes and are &#8220;somehow&#8221; able to spin them into good PR opps.</p>
<p>My favorite personal Southwest experience earlier this year:</p>
<p>I was on a flight from San Diego to Oakland on Februrary 14.  Halfway thru the flight, one of the flight attendants announces on the P.A. that Valentine&#8217;s Day is the Southwest&#8217;s favorite holiday and they have a special treat for us.  Soon afterwards, another attendant starts walking down the aisle carrying a basket of chocolate hearts, handing one out for each customer.</p>
<p>A simple gesture, but a big one&#8230; especially considering they were (probably) doing that on every flight that day.</p>
<p>Favorite 2nd experience last year:</p>
<p>Our plane was late arriving to the gate, so to speed up the boarding time the attendants put a race clock by the gate ticking down from 14min.  Our goal was to completely board the plane, stow away our luggage in under 14min.  If we succeeded, one person picked at random wins a $50 voucher.  We succeeded.  Somebody one (it wasn&#8217;t me).  Quite amusing.</p>
<p>Other moments include attendants singing Proud Mary when taking off from LAX, replace &#8220;rolling down the river&#8221; with &#8220;rolling down the runway&#8221;, and also landing in San Diego with the attendant pretending to be a jockey slowing down her horse.   I think the more kids on a flight, the goofier the attendants get, but in a very respectable manner&#8230; if that makes sense.</p>
<p>Now if only they had satellite TV with a flight-tracker channel like Jet Blue.   Oh, and WiFi.</p>
]]></content:encoded>
			<wfw:commentRss>http://srhaber.com/blog/2007/09/15/spinwatch-southwest-finally-apologizes-to-mini-skirted-customer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How I Improved My Feed Reader, 2 Simple Hints</title>
		<link>http://srhaber.com/blog/2007/08/28/how-i-improved-my-feed-reader-2-simple-hints/</link>
		<comments>http://srhaber.com/blog/2007/08/28/how-i-improved-my-feed-reader-2-simple-hints/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 08:42:46 +0000</pubDate>
		<dc:creator>srhaber</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.srhaber.com/2007/08/28/how-i-improved-my-feed-reader-2-simple-hints/</guid>
		<description><![CDATA[I use NetNewsWire as my main RSS reader on the Mac.  Until recently, I had a hard time keeping up on all my feeds.  However, I recently employed 2 tricks to greatly improve my productivity for perusing my feeds and finding the gems.
Tip #1:  Flatten the Feeds
For the longest time, I tried [...]]]></description>
			<content:encoded><![CDATA[<p>I use <a href="http://www.newsgator.com/Individuals/NetNewsWire/Default.aspx">NetNewsWire</a> as my main RSS reader on the Mac.  Until recently, I had a hard time keeping up on all my feeds.  However, I recently employed 2 tricks to greatly improve my productivity for perusing my feeds and finding the gems.</p>
<p><strong>Tip #1:  Flatten the Feeds</strong></p>
<p>For the longest time, I tried hard to keep my feeds categorized:  Apple, Tech, Blogs, Flickr, etc.   Ultimately, this required too much cognitive overhead.</p>
<p>Where should I place a new feed?  Does it need a new category?  Where was that other feed I want to read?  Under Tech?  Blogs?  etc&#8230;</p>
<p>The solution:  Flatten the feeds!</p>
<p>Having one long list of feeds sorted alphabetically has been a huge help.  Now I don&#8217;t have to think twice when I add a new feed, and I can easily scroll up or down to find a particular feed I want to read.</p>
<p><strong>Tip #2: Create a hot key on the mouse for &#8220;Mark All As Read&#8221;</strong></p>
<p>NetNewsWire has the Cmd-K hotkey for the &#8220;Mark All As Read&#8221; feature.  This is useful for quickly committing RSS suicide. Additionally, it prevents you from having to increment through each story one-by-one to mark them as read.</p>
<p>I took this one step further by mapping my middle click mouse button to Cmd-K for the NewNewsWire app.  I did this using the <a href="http://www.apple.com/downloads/macosx/drivers/steermouse.html">SteerMouse</a> driver for the Logitech VX Revolution mouse.</p>
<p>Now I never need to lift my hand off the mouse.  I can quickly scan through and mark off all my feeds at an olympic gold-medal pace. </p>
<p><strong>Bonus Tip</strong></p>
<p>I use the Combined View layout in my feed reader.  The left column shows all the feeds, the right columns shows all the stories and the body text.  This is in contrast to the Traditional and Widescreen Views, which require an extra click on the story headline to read the actual text.  Not really a tip, but I thought it was worth mentioning.</p>
<p><a href="http://www.flickr.com/photos/srhaber/1256635624/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1014/1256635624_aaddb15e90.jpg" width="456" height="500" alt="My NewNewsWire Setup" /></a></p>
<p>[tags]NetNewsWire, rss, feed reader[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://srhaber.com/blog/2007/08/28/how-i-improved-my-feed-reader-2-simple-hints/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rangers’ 30 runs sets AL record in rout of Orioles</title>
		<link>http://srhaber.com/blog/2007/08/23/rangers-30-runs-sets-al-record-in-rout-of-orioles/</link>
		<comments>http://srhaber.com/blog/2007/08/23/rangers-30-runs-sets-al-record-in-rout-of-orioles/#comments</comments>
		<pubDate>Thu, 23 Aug 2007 07:59:26 +0000</pubDate>
		<dc:creator>srhaber</dc:creator>
		
		<category><![CDATA[Sports]]></category>

		<guid isPermaLink="false">http://www.srhaber.com/2007/08/23/rangers-30-runs-sets-al-record-in-rout-of-orioles/</guid>
		<description><![CDATA[ESPN - Rangers&#8217; 30 runs sets AL record in rout of Orioles - MLB:  The Texas Rangers beat the Orioles 30-3 today&#8230; and that was just game 1 of a doubleheader.  My god!
They also won game 2 by a measley score of 9-7 (which is still high for San Diego standards).
By contrast, the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://scores.espn.go.com/mlb/recap?gameId=270822201">ESPN - Rangers&#8217; 30 runs sets AL record in rout of Orioles - MLB</a>:  The Texas Rangers beat the Orioles 30-3 today&#8230; and that was just game 1 of a doubleheader.  My god!</p>
<p>They also won game 2 by a measley score of 9-7 (which is still high for San Diego standards).</p>
<p>By contrast, the Houston Texans didn&#8217;t manage to score 30 points in a single NFL game all <a href='http://www.nfl.com/teams/schedule?team=HOU&#038;season=2006&#038;seasonType=REG'>last season</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://srhaber.com/blog/2007/08/23/rangers-30-runs-sets-al-record-in-rout-of-orioles/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PETA ranks Petco 10th most ‘vegetarian friendly park in MLB</title>
		<link>http://srhaber.com/blog/2007/08/21/peta-ranks-petco-10th-most-vegetarian-friendly-park-in-mlb/</link>
		<comments>http://srhaber.com/blog/2007/08/21/peta-ranks-petco-10th-most-vegetarian-friendly-park-in-mlb/#comments</comments>
		<pubDate>Tue, 21 Aug 2007 22:03:02 +0000</pubDate>
		<dc:creator>srhaber</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.srhaber.com/2007/08/21/peta-ranks-petco-10th-most-vegetarian-friendly-park-in-mlb/</guid>
		<description><![CDATA[San Diego Metro News &#124; SignOnSanDiego.com &#8212; PETA ranks Petco 10th most &#8216;vegetarian friendly park in MLB:  I find this story slightly ironic, considering this.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.signonsandiego.com/news/metro/20070821-1038-veggies.html">San Diego Metro News | SignOnSanDiego.com &#8212; PETA ranks Petco 10th most &#8216;vegetarian friendly park in MLB</a>:  I find this story slightly ironic, considering <a href="http://www.snopes.com/business/hidden/peta.asp">this</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://srhaber.com/blog/2007/08/21/peta-ranks-petco-10th-most-vegetarian-friendly-park-in-mlb/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Street View Car Hit San Diego in March ‘07</title>
		<link>http://srhaber.com/blog/2007/08/20/google-street-view-car-hit-san-diego-in-march-07/</link>
		<comments>http://srhaber.com/blog/2007/08/20/google-street-view-car-hit-san-diego-in-march-07/#comments</comments>
		<pubDate>Mon, 20 Aug 2007 08:22:58 +0000</pubDate>
		<dc:creator>srhaber</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.srhaber.com/2007/08/20/google-street-view-car-hit-san-diego-in-march-07/</guid>
		<description><![CDATA[This one&#8217;s for all of you UCSD&#8217;ers.
First, the smoking gun:  La Jolla Village Theatres
Notice the show dates for the upcoming Saturday Night Movie Madness shows:
Mar 31 - Donnie Darko
Apr 7 - Star Trek IV
Apr 14 - Army of Darkness
It is likely this image was captured during the last week of March: tinyurl.com/yswydb

Additionally, those familiar [...]]]></description>
			<content:encoded><![CDATA[<p>This one&#8217;s for all of you UCSD&#8217;ers.</p>
<p>First, the smoking gun:  La Jolla Village Theatres</p>
<p>Notice the show dates for the upcoming Saturday Night Movie Madness shows:<br />
Mar 31 - Donnie Darko<br />
Apr 7 - Star Trek IV<br />
Apr 14 - Army of Darkness</p>
<p>It is likely this image was captured during the last week of March: <a href="http://tinyurl.com/yswydb">tinyurl.com/yswydb</a></p>
<p><a href="http://www.flickr.com/photos/srhaber/1180362328/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1113/1180362328_b4b4928637.jpg" width="500" height="317" alt="Google Street View - La Jolla Village Theatres" /></a></p>
<p>Additionally, those familiar with the area know that students are always waiting at UCSD shuttle stops.  However, all of the stops (I&#8217;ve checked so far) are empty.  This yields two conclusions:</p>
<ul>
<li>These were taken during the weekend</li>
<li>These were taken during spring break.</li>
</ul>
<p>I opt for the latter.</p>
<p>Finally, a couple fun things&#8230;</p>
<p>Rebecca, I found your car: <a href="http://tinyurl.com/2cohxv">http://tinyurl.com/2cohxv</a><br />
<a href="http://www.flickr.com/photos/srhaber/1179590159/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1198/1179590159_7ed1fa0bbe_m.jpg" width="240" height="136" alt="Rebecca's car on google maps" /></a></p>
<div style='clear:both;'>Spence, I found your car: <a href="http://tinyurl.com/yrd292">http://tinyurl.com/yrd292</a><br />
<a href="http://www.flickr.com/photos/srhaber/1180449526/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1073/1180449526_d6f88c6a38_m.jpg" width="240" height="133" alt="Spence's car on google maps" /></a></div>
<div style='clear:both;'>I&#8217;m really bummed my car didn&#8217;t make the cut!  I was usually working from home during this time.  My guess is I was at ETech.  Otherwise, I might have just been out.</div>
<p>Cool or creepy, you gotta love Google Maps. <img src='http://srhaber.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://srhaber.com/blog/2007/08/20/google-street-view-car-hit-san-diego-in-march-07/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Voldemort and Kif</title>
		<link>http://srhaber.com/blog/2007/04/25/voldemort-and-kif/</link>
		<comments>http://srhaber.com/blog/2007/04/25/voldemort-and-kif/#comments</comments>
		<pubDate>Wed, 25 Apr 2007 07:17:18 +0000</pubDate>
		<dc:creator>srhaber</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.srhaber.com/2007/04/25/voldemort-and-kif/</guid>
		<description><![CDATA[The new trailer is out for Harry Potter and the Order of the Phoenix.
While watching this, I immediately thought that Voldemort looks exactly like Kif from Futurama.  Has nobody else noticed this?&#8230; Or cared? 
I tried searching the blogosphere (technorati, google blogs, etc.) for any related posts and was surprised to no one else [...]]]></description>
			<content:encoded><![CDATA[<p>The new trailer is out for <a href="http://movies.yahoo.com/feature/harrypotterandtheorderofthephoenix.html">Harry Potter and the Order of the Phoenix</a>.</p>
<p>While watching this, I immediately thought that Voldemort looks exactly like Kif from Futurama.  Has nobody else noticed this?&#8230; Or cared? </p>
<p>I tried searching the blogosphere (technorati, google blogs, etc.) for any related posts and was surprised to no one else mentioning this.   Am I completely off here?</p>
<p><strong>Left:</strong> Voldemort (screenshot from trailer)<br />
<strong>Right:</strong> Kif</p>
<p><a href='http://www.srhaber.com/wp/wp-content/uploads/2007/04/voldemort_kif.jpg' title='Voldemort and Kif'><img src='http://www.srhaber.com/wp/wp-content/uploads/2007/04/voldemort_kif.jpg' alt='Voldemort and Kif' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://srhaber.com/blog/2007/04/25/voldemort-and-kif/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Recent Reads</title>
		<link>http://srhaber.com/blog/2007/04/13/recent-reads/</link>
		<comments>http://srhaber.com/blog/2007/04/13/recent-reads/#comments</comments>
		<pubDate>Fri, 13 Apr 2007 18:27:12 +0000</pubDate>
		<dc:creator>srhaber</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.srhaber.com/2007/04/13/recent-reads/</guid>
		<description><![CDATA[I just finished reading a couple of great books.

Freakonomics is an insightful look inside the social trends in America, involving crime rates, drug trafficking, and racial discrimination.  Steven D. Lewitt thinks of provocative questions (e.g. why did crime rates drop in the &#8217;90s?) and comes up with answers generally ignored and dismissed by the [...]]]></description>
			<content:encoded><![CDATA[<p>I just finished reading a couple of great books.</p>
<ul>
<li><a href="http://www.amazon.com/Freakonomics-Economist-Explores-Hidden-Everything/dp/006073132X">Freakonomics</a> is an insightful look inside the social trends in America, involving crime rates, drug trafficking, and racial discrimination.  Steven D. Lewitt thinks of provocative questions (e.g. why did crime rates drop in the &#8217;90s?) and comes up with answers generally ignored and dismissed by the media.  It&#8217;s a fascinating read, offering a different slant from conventional economics (which I know very little about).</li>
<li><a href="http://www.amazon.com/Ultramarathon-Man-Confessions-All-Night-Runner/dp/1585422789">Ultramarathon Man</a> is a collection of memoirs from Dean Karnazes.  This guy is a beast, making a 26.2 mile marathon look like child&#8217;s play.  He runs in excess of 100 miles at a time, including the <a href="http://www.ws100.com/">Western States Endurance Run</a>, <a href="http://en.wikipedia.org/wiki/Badwater_Ultramarathon">Badwater Ultramarathon (Death Valley)</a>, and even a marathon at the South Pole.  Yet he&#8217;s humble and passionate, an ordinary family man with a day job&#8230; an incredible inspiration.  I usually average about 5 miles per run, but I know I can go much longer. <img src='http://srhaber.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://srhaber.com/blog/2007/04/13/recent-reads/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
