<?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>Blizzo :: The Morgan Blog</title>
	<atom:link href="http://www.blizzo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blizzo.com</link>
	<description>Randomness for you since 1976</description>
	<lastBuildDate>Thu, 09 Feb 2012 15:47:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Jesus Built my Minecraft Map</title>
		<link>http://www.blizzo.com/jesus-built-my-minecraft-map/</link>
		<comments>http://www.blizzo.com/jesus-built-my-minecraft-map/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 15:47:23 +0000</pubDate>
		<dc:creator>F. Morgan Whitney</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Minecraft]]></category>

		<guid isPermaLink="false">http://www.blizzo.com/?p=314</guid>
		<description><![CDATA[I am a lover of Minecraft. I go in spurts where I play it obsessively and then forget about it, only to repeat the cycle over and over.  Since I have logged so many hours, a lot of the novelty of the game has worn off.  Often times I will just create a map, and [...]]]></description>
			<content:encoded><![CDATA[<p>I am a lover of Minecraft. I go in spurts where I play it obsessively and then forget about it, only to repeat the cycle over and over.  Since I have logged so many hours, a lot of the novelty of the game has worn off.  Often times I will just create a map, and then wander and wander until I find something really interesting that inspires me to build.  A mountaintop lake, a floating island with a waterfall that I can swim up, that sort of thing.  Last time I was doing this, I was walking towards a hill when I saw a giant cross at the top.  When I got closer, I realized it wasn&#8217;t just a cross, it was a floating cross! Clearly my randomly selected seed was infused with the divine!</p>
<p>Pic so you know it happened:</p>
<p><a href="http://www.blizzo.com/wp-content/uploads/2012/02/2012-02-08_14.26.01.png" class="lightview" data-lightview-group="group-314" data-lightview-options="background: { color: '', opacity: 0.00 }, skin: '', border: { color: '', opacity: 0.00, size: 0 }, controls: '', overlay: { background: '', opacity: 0.00, close: true }, radius: { size: 0, position: 'border' }, shadow: false" data-lightview-title="Jesus minecraft screenshot"><img class="aligncenter size-medium wp-image-315" title="Jesus minecraft screenshot" src="http://www.blizzo.com/wp-content/uploads/2012/02/2012-02-08_14.26.01-435x312.png" alt="Jesus minecraft screenshot" width="435" height="312" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blizzo.com/jesus-built-my-minecraft-map/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rails gotcha using after_initialize hook and exists?</title>
		<link>http://www.blizzo.com/rails-gotcha-using-after_initialize-hook-and-exists/</link>
		<comments>http://www.blizzo.com/rails-gotcha-using-after_initialize-hook-and-exists/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 18:49:10 +0000</pubDate>
		<dc:creator>F. Morgan Whitney</dc:creator>
				<category><![CDATA[Technobabble]]></category>

		<guid isPermaLink="false">http://www.blizzo.com/?p=309</guid>
		<description><![CDATA[While upgrading Ruby on Rails from 2.1 to 2.3, one of my models threw an ActiveRecord::MissingAttributeError exception when something used exists? to see if it was there. The issue turned out to be our after_initialize hook on the model. In our hook, we rely on looking up the value of one of the object attributes. [...]]]></description>
			<content:encoded><![CDATA[<p>While upgrading Ruby on Rails from 2.1 to 2.3, one of my models threw an ActiveRecord::MissingAttributeError exception when something used exists? to see if it was there.  The issue turned out to be our after_initialize hook on the model.  In our hook, we rely on looking up the value of one of the object attributes.  This fails now because exists? only selects the primary key from the table, leaving the rest of the attributes undefined. Here is how we solved it:</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"><span style="color: Green;">def</span><span style="color: Gray;"> </span><span style="color: Blue;">after_initialize</span></li>
<li><span style="color: Gray;">&nbsp; </span><span style="color: Blue;">do_something</span><span style="color: Gray;">&nbsp;</span><span style="color: Green;">if</span><span style="color: Gray;"> </span><span style="color: Blue;">foo_attribute</span></li>
<li><span style="color: Green;">rescue</span><span style="color: Gray;">&nbsp;</span><span style="color: Blue;">ActiveRecord</span><span style="color: Gray;">::</span><span style="color: Blue;">MissingAttributeError</span></li>
<li><span style="color: Gray;">&nbsp; </span><span style="color: Blue;">reload</span></li>
<li><span style="color: Gray;">&nbsp; </span><span style="color: Green;">retry</span></li>
<li><span style="color: Green;">end</span></li></ol></div>
<p>This will cause all the attributes to be fleshed out the second time around.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blizzo.com/rails-gotcha-using-after_initialize-hook-and-exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy way to encrypt and decrypt files in OS X from command line</title>
		<link>http://www.blizzo.com/easy-way-to-encrypt-and-decrypt-files-in-os-x-from-command-line/</link>
		<comments>http://www.blizzo.com/easy-way-to-encrypt-and-decrypt-files-in-os-x-from-command-line/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 18:44:43 +0000</pubDate>
		<dc:creator>F. Morgan Whitney</dc:creator>
				<category><![CDATA[Technobabble]]></category>

		<guid isPermaLink="false">http://www.blizzo.com/?p=297</guid>
		<description><![CDATA[I wanted an easy way to encrypt and decrypt files in OS X from the command line, so I added the following to my .profile file in my home directory: enc() { &#160; openssl&#160;des3 -salt -in $1 -out $1_enc &#160; rm&#160;$1 } &#160; dec()&#160;{ &#160; openssl&#160;des3 -d -salt -in $1_enc -out $1 &#160; rm&#160;$1_enc } [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted an easy way to encrypt and decrypt files in OS X from the command line, so I added the following to my .profile file in my home directory:</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"><span style="color: Blue;">enc</span><span style="color: Olive;">()</span><span style="color: Gray;"> </span><span style="color: Olive;">{</span></li>
<li><span style="color: Gray;">&nbsp; </span><span style="color: Blue;">openssl</span><span style="color: Gray;">&nbsp;</span><span style="color: Blue;">des3</span><span style="color: Gray;"> -</span><span style="color: Blue;">salt</span><span style="color: Gray;"> -</span><span style="color: Blue;">in</span><span style="color: Gray;"> </span><span style="color: #00008b;">$1</span><span style="color: Gray;"> -</span><span style="color: Blue;">out</span><span style="color: Gray;"> </span><span style="color: #00008b;">$1</span><span style="color: Blue;">_enc</span></li>
<li><span style="color: Gray;">&nbsp; </span><span style="color: Blue;">rm</span><span style="color: Gray;">&nbsp;</span><span style="color: #00008b;">$1</span></li>
<li><span style="color: Olive;">}</span></li>
<li><span style="color: Gray;">&nbsp;</span></li>
<li><span style="color: Blue;">dec</span><span style="color: Olive;">()</span><span style="color: Gray;">&nbsp;</span><span style="color: Olive;">{</span></li>
<li><span style="color: Gray;">&nbsp; </span><span style="color: Blue;">openssl</span><span style="color: Gray;">&nbsp;</span><span style="color: Blue;">des3</span><span style="color: Gray;"> -</span><span style="color: Blue;">d</span><span style="color: Gray;"> -</span><span style="color: Blue;">salt</span><span style="color: Gray;"> -</span><span style="color: Blue;">in</span><span style="color: Gray;"> </span><span style="color: #00008b;">$1</span><span style="color: Blue;">_enc</span><span style="color: Gray;"> -</span><span style="color: Blue;">out</span><span style="color: Gray;"> </span><span style="color: #00008b;">$1</span></li>
<li><span style="color: Gray;">&nbsp; </span><span style="color: Blue;">rm</span><span style="color: Gray;">&nbsp;</span><span style="color: #00008b;">$1</span><span style="color: Blue;">_enc</span></li>
<li><span style="color: Olive;">}</span></li></ol></div>
<p>Now I can quickly encrypt a file using &#8216;enc&#8217;:</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">$ cat secret.txt </li>
<li>this is a secret!</li>
<li>$ enc secret.txt</li>
<li>enter des-ede3-cbc encryption password: [password]</li>
<li>Verifying - enter des-ede3-cbc encryption password: [password]</li>
<li>$ cat secret.txt_enc </li>
<li>Salted__?&lt;?7sT?s??Cp??x?toA?d6~r?r</li></ol></div>
<p>And decrypt it just as easily with &#8216;dec&#8217;:</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">$ dec secret.txt</li>
<li>enter des-ede3-cbc decryption password: [password]</li>
<li>$ cat secret.txt </li>
<li>this is a secret!</li></ol></div>
<p>A couple of things to note. The encrypted file is saved using a _enc suffix, but when decrypting, it assumes you type the original filename, not the _enc version.  I don&#8217;t mind this, but it could be altered to be a little smarter in this regard.  Also, when encrypting it deletes the original file for you, and when decrypting it deletes the encrypted version.  I prefer this automatic &#8216;cleanup&#8217;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blizzo.com/easy-way-to-encrypt-and-decrypt-files-in-os-x-from-command-line/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ThisDangHouse.org</title>
		<link>http://www.blizzo.com/thisdanghouse-org/</link>
		<comments>http://www.blizzo.com/thisdanghouse-org/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 04:24:32 +0000</pubDate>
		<dc:creator>F. Morgan Whitney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blizzo.com/?p=293</guid>
		<description><![CDATA[Just a quick note to let people know I have started a new blog to follow the progress of my massive home remodel.  Join me on my adventure at This Dang House!]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to let people know I have started a new blog to follow the progress of my massive home remodel.  Join me on my adventure at <a href="http://thisdanghouse.org">This Dang House!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blizzo.com/thisdanghouse-org/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using and testing the 303 response code in Ruby on Rails</title>
		<link>http://www.blizzo.com/using-and-testing-the-303-response-code-in-ruby-on-rails/</link>
		<comments>http://www.blizzo.com/using-and-testing-the-303-response-code-in-ruby-on-rails/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 16:27:36 +0000</pubDate>
		<dc:creator>F. Morgan Whitney</dc:creator>
				<category><![CDATA[Technobabble]]></category>

		<guid isPermaLink="false">http://www.blizzo.com/?p=284</guid>
		<description><![CDATA[While building a Rest API call for our product, we needed the server to respond to a post with a &#8220;303 see other&#8221; response.  Unfortunately, in Rails when you do a redirect_to, it always uses the 302 response code, even when you set the status explicitly: redirect_to chunky_bacon_url(@bacon), :status =&#62; :see other redirect_to&#160;chunky_bacon_url(@bacon), :status =&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>While building a Rest API call for our product, we needed the server to respond to a post with a &#8220;303 see other&#8221; response.  Unfortunately, in Rails when you do a redirect_to, it always uses the 302 response code, even when you set the status explicitly:</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"><span style="color: Blue;">redirect_to</span><span style="color: Gray;"> </span><span style="color: Blue;">chunky_bacon_url</span><span style="color: Olive;">(</span><span style="color: #00008b;">@bacon</span><span style="color: Olive;">)</span><span style="color: Gray;">, :</span><span style="color: Blue;">status</span><span style="color: Gray;"> =&gt; :</span><span style="color: Blue;">see</span><span style="color: Gray;"> </span><span style="color: Blue;">other</span></li>
<li><span style="color: Blue;">redirect_to</span><span style="color: Gray;">&nbsp;</span><span style="color: Blue;">chunky_bacon_url</span><span style="color: Olive;">(</span><span style="color: #00008b;">@bacon</span><span style="color: Olive;">)</span><span style="color: Gray;">, :</span><span style="color: Blue;">status</span><span style="color: Gray;"> =&gt; :</span><span style="color: Maroon;">303</span></li></ol></div>
<p>These don&#8217;t fail, but they dont do what you would expect. In my test I asserted that the response code was 303, and the test failed.  After some digging I found that I could use the &#8216;head&#8217; method to force rails to respond correctly:</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"><span style="color: Blue;">head</span><span style="color: Gray;"> :</span><span style="color: Blue;">see_other</span><span style="color: Gray;">, :</span><span style="color: Blue;">location</span><span style="color: Gray;">=&gt;</span><span style="color: Blue;">chunky_bacon_url</span><span style="color: Olive;">(</span><span style="color: #00008b;">@bacon</span><span style="color: Olive;">)</span></li></ol></div>
<p>My response assertion passed. Yay. But it was short lived, because this assertion failed after I made the change:</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"><span style="color: Blue;">assert_redirected_to</span><span style="color: Gray;"> </span><span style="color: Blue;">chunky_bacon_url</span><span style="color: Olive;">(</span><span style="color: #00008b;">@bacon</span><span style="color: Olive;">)</span></li></ol></div>
<p>with an error deep inside response_assertions.rb.  Inside the &#8216;assert_redirected_to&#8217; method, the following line failed because @response.redirected_to returns nil, and then explodes when it tries to call dup.</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"><span style="color: Blue;">original</span><span style="color: Gray;"> = { :</span><span style="color: Blue;">expected</span><span style="color: Gray;"> =&gt; </span><span style="color: Blue;">options</span><span style="color: Gray;">, :</span><span style="color: Blue;">actual</span><span style="color: Gray;"> =&gt; </span><span style="color: #00008b;">@response</span><span style="color: Gray;">.</span><span style="color: Blue;">redirected_to</span><span style="color: Gray;">.</span><span style="color: Blue;">is_a</span><span style="color: Gray;">?</span><span style="color: Olive;">(</span><span style="color: Blue;">Symbol</span><span style="color: Olive;">)</span><span style="color: Gray;"> ? </span><span style="color: #00008b;">@response</span><span style="color: Gray;">.</span><span style="color: Blue;">redirected_to</span><span style="color: Gray;"> : </span><span style="color: #00008b;">@response</span><span style="color: Gray;">.</span><span style="color: Blue;">redirected_to</span><span style="color: Gray;">.</span><span style="color: Blue;">dup</span><span style="color: Gray;"> }</span></li></ol></div>
<p>I did some digging, and it turns out that when I used &#8216;head&#8217; instead of &#8216;redirect_to&#8217;, the @response.redirected_to was never set.  I fixed the test by asserting string equality directly in the response headers:</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"><span style="color: Blue;">assert_equal</span><span style="color: Gray;"> </span><span style="color: Blue;">chunky_bacon_url</span><span style="color: Olive;">(</span><span style="color: #00008b;">@bacon</span><span style="color: Olive;">)</span><span style="color: Gray;">, </span><span style="color: #00008b;">@response</span><span style="color: Gray;">.</span><span style="color: Blue;">headers</span><span style="color: Olive;">[</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">Location</span><span style="color: #8b0000;">&quot;</span><span style="color: Olive;">]</span></li></ol></div>
]]></content:encoded>
			<wfw:commentRss>http://www.blizzo.com/using-and-testing-the-303-response-code-in-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bitchin&#8217; Kitchen: New paint job</title>
		<link>http://www.blizzo.com/bitchin-kitchen-new-paint-job/</link>
		<comments>http://www.blizzo.com/bitchin-kitchen-new-paint-job/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 03:50:29 +0000</pubDate>
		<dc:creator>F. Morgan Whitney</dc:creator>
				<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://www.blizzo.com/?p=272</guid>
		<description><![CDATA[In general, I find use of the word &#8220;bitchin&#8221; to be almost inexcusable. The sad fact is, however, that there aren&#8217;t very many good rhymes for &#8220;kitchen&#8221;, and I&#8217;m in a rhyming mood. At any rate, we decided to repain the kitchen, and quickly settled on a nice green for the walls, and then later [...]]]></description>
			<content:encoded><![CDATA[<p>In general, I find use of the word &#8220;bitchin&#8221; to be almost inexcusable.  The sad fact is, however, that there aren&#8217;t very many good rhymes for &#8220;kitchen&#8221;, and I&#8217;m in a rhyming mood.  At any rate, we decided to repain the kitchen, and quickly settled on a nice green for the walls, and then later decided to do one wall a darker purple.  I am quite please with how it all came out, and hereby submit photographic evidence that I actually completed a project. For reallys.  I got all panoramic on you to give a better perspective of the room. Check the purple vent pipe too, it be stylin.</p>
<div id="attachment_274" class="wp-caption alignnone" style="width: 445px"><a href="http://www.blizzo.com/wp-content/uploads/2009/12/PC140047.jpg" class="lightview" data-lightview-group="group-272" data-lightview-options="background: { color: '', opacity: 0.00 }, skin: '', border: { color: '', opacity: 0.00, size: 0 }, controls: '', overlay: { background: '', opacity: 0.00, close: true }, radius: { size: 0, position: 'border' }, shadow: false" data-lightview-title="Bitchin Kitchen"><img class="size-medium wp-image-274" title="Bitchin Kitchen" src="http://www.blizzo.com/wp-content/uploads/2009/12/PC140047-435x108.jpg" alt="Purple and Green" width="435" height="108" /></a><p class="wp-caption-text">Purple and Green</p></div>
<p>Of course, now that the paint is (almost) dry, I loathe my cabinets, I detest my linoleum floors, I despise my counter tops and I look upon my appliances with disdain.  Actually, the plan is to take the cabinets down in the spring, paint them white, and apply some of those stencil looking decals to them. That should help things out a bit.  The floors et. al. will have to wait, unless they give out before we are ready.</p>
<p>I also like the way our organization wall looks against the new green color, although the flash really washed the colors out.</p>
<div id="attachment_275" class="wp-caption alignnone" style="width: 160px"><a href="http://www.blizzo.com/wp-content/uploads/2009/12/PC140048.jpg" class="lightview" data-lightview-group="group-272" data-lightview-options="background: { color: '', opacity: 0.00 }, skin: '', border: { color: '', opacity: 0.00, size: 0 }, controls: '', overlay: { background: '', opacity: 0.00, close: true }, radius: { size: 0, position: 'border' }, shadow: false" data-lightview-title="Organization Wall"><img class="size-thumbnail wp-image-275" title="Organization Wall" src="http://www.blizzo.com/wp-content/uploads/2009/12/PC140048-150x150.jpg" alt="Organization Wall" width="150" height="150" /></a><p class="wp-caption-text">Organization Wall</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.blizzo.com/bitchin-kitchen-new-paint-job/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OS X Tip, recover windows from external monitor</title>
		<link>http://www.blizzo.com/os-x-tip-recover-windows-from-external-monitor/</link>
		<comments>http://www.blizzo.com/os-x-tip-recover-windows-from-external-monitor/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 02:27:20 +0000</pubDate>
		<dc:creator>F. Morgan Whitney</dc:creator>
				<category><![CDATA[Technobabble]]></category>

		<guid isPermaLink="false">http://www.blizzo.com/?p=269</guid>
		<description><![CDATA[So one latest OS X annoyance that I actually stumbled across the solution for. At work I hook up an external monitor to my MacBook Pro, and usually keep all my terminal windows on that one. When I leave, I try to remember to unplug the monitor before I close the lid, because last time [...]]]></description>
			<content:encoded><![CDATA[<p>So one latest OS X annoyance that I actually stumbled across the solution for.  At work I hook up an external monitor to my MacBook Pro, and usually keep all my terminal windows on that one.  When I leave, I try to remember to unplug the monitor before I close the lid, because last time I forgot to do that, I had to kill the applications over there and relaunch them to get access to them again.</p>
<p>I tried using expose, but that didn&#8217;t show the windows on the now disconnected monitor.  I checked out the spaces dialogue as well, but that also didn&#8217;t work.  I also went into the system preferences to the &#8216;displays&#8217; screen, hoping to find the &#8216;gather windows&#8217; button, but it was not present.  I think you only get that button when an external display is connected.</p>
<p>The way I actually solved it was through app switching keyboard shortcuts. I used Cmd+Tab to switch to the inaccessible application, then used Cmd+~ to cycle through the windows.  As each window received focus, a sliver of it appeared on the edge of my screen and I was able to drag it over.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blizzo.com/os-x-tip-recover-windows-from-external-monitor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Poor, poor snow leopard</title>
		<link>http://www.blizzo.com/poor-poor-snow-leopard/</link>
		<comments>http://www.blizzo.com/poor-poor-snow-leopard/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 14:57:30 +0000</pubDate>
		<dc:creator>F. Morgan Whitney</dc:creator>
				<category><![CDATA[Observations]]></category>
		<category><![CDATA[Technobabble]]></category>

		<guid isPermaLink="false">http://www.blizzo.com/?p=262</guid>
		<description><![CDATA[So Apple has released their new OS, Snow Leopard, and this is what the Apple homepage looks like: I imagine this leopard, chillin, enjoying a nice snowy day, when along comes an Apple photo crew. *FWAP*, they nail him in the head with a snowball, and as he looks at them with annoyance, they snap [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">So Apple has released their new OS, Snow Leopard, and this is what the Apple homepage looks like:</div>
<div id="attachment_261" class="wp-caption alignnone" style="width: 445px"><img class="size-medium wp-image-261" title="Snow Leapord" src="http://www.blizzo.com/wp-content/uploads/2009/08/Untitled-1-435x269.jpg" alt="Poor, poor Snow Leapord..." width="435" height="269" /><p class="wp-caption-text">Poor, poor Snow Leopard...</p></div>
<p>I imagine this leopard, chillin, enjoying a nice snowy day, when along comes an Apple photo crew.</p>
<p>*FWAP*, they nail him in the head with a snowball, and as he looks at them with annoyance, they snap his picture.</p>
<p>I can only hope that shortly after this picture was taken, the Leopard ate every single one of them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blizzo.com/poor-poor-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RFS: Good Home Design/Remodel Blogs</title>
		<link>http://www.blizzo.com/rfs-good-home-designremodel-blogs/</link>
		<comments>http://www.blizzo.com/rfs-good-home-designremodel-blogs/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 17:10:01 +0000</pubDate>
		<dc:creator>F. Morgan Whitney</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.blizzo.com/?p=256</guid>
		<description><![CDATA[RFS stands for &#8220;Request For Suggestions&#8221;.  I&#8217;m not sure whether I made that up or absorbed it osmosis like from something I read. For those of you not in the know, I am soon going to be taking on a huge home remodel project, necessitated by some structural problems we are having.  In my quest [...]]]></description>
			<content:encoded><![CDATA[<p>RFS stands for &#8220;Request For Suggestions&#8221;.  I&#8217;m not sure whether I made that up or absorbed it osmosis like from something I read.</p>
<p>For those of you not in the know, I am soon going to be taking on a huge home remodel project, necessitated by some structural problems we are having.  In my quest for the ultimate abode, I am looking for inspirational resources.  I did the obligatory Google search and was disappointed with what I found.  I did find the <a href="http://blog.homerenovationguide.com/">Home Improvement Blog</a> which has some promising looking content.  We all know about <a href="http://www.apartmenttherapy.com/">Apartment Therapy</a>, which I love, but it&#8217;s a little like trying to sip from a waterfall.  I have also seen a lot of nice stuff on <a href="http://www.inhabitat.com/">Inhabitat</a>, but the architecture and design aspects of it are only a small slice of it&#8217;s content.</p>
<p>I am looking for blog&#8217;s that have the following types of content:</p>
<ul>
<li>Floor plans and layouts for remodels</li>
<li>Finishing details for interior and exterior</li>
<li>Modern design that integrates well into old homes</li>
<li>Green building strategies</li>
<li>Logistics of remodeling (permits, pitfalls, etc)</li>
<li>Tips on ways to do things that look awesome, but don&#8217;t cost too much</li>
<li>Personal experiences in home remodeling projects</li>
<li>Photos, photos and more photos</li>
</ul>
<p>If you can think of anything, please comment and help me out!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blizzo.com/rfs-good-home-designremodel-blogs/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Rails Gotcha Regarding Test Fixtures</title>
		<link>http://www.blizzo.com/rails-gotcha-regarding-test-fixtures/</link>
		<comments>http://www.blizzo.com/rails-gotcha-regarding-test-fixtures/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 18:05:14 +0000</pubDate>
		<dc:creator>F. Morgan Whitney</dc:creator>
				<category><![CDATA[Technobabble]]></category>

		<guid isPermaLink="false">http://www.blizzo.com/?p=251</guid>
		<description><![CDATA[I wasted a chunk of time running in circles over this issue.  I had assumed that when I loaded the fixtures into my database via &#8216;rake db:fixtures:load&#8217; or &#8216;rake spec:db:fixtures:load&#8217; in Ruby on Rails that it was blowing away all the data in all of my tables before creating records. It turns out that it [...]]]></description>
			<content:encoded><![CDATA[<p>I wasted a chunk of time running in circles over this issue.  I had assumed that when I loaded the fixtures into my database via &#8216;rake db:fixtures:load&#8217; or &#8216;rake spec:db:fixtures:load&#8217; in Ruby on Rails that it was blowing away all the data in all of my tables before creating records. It turns out that it only blows away data in tables for which you have fixtures, leaving any generated cruft in other tables behind.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blizzo.com/rails-gotcha-regarding-test-fixtures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
