<?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>DeShong.net &#187; Uncategorized</title>
	<atom:link href="http://www.deshong.net/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.deshong.net</link>
	<description></description>
	<lastBuildDate>Sat, 28 Jan 2012 17:54:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19719</generator>
		<item>
		<title>Vim mapping: Bringing PHPUnit skeleton test class code up to Zend Framework standards</title>
		<link>http://www.deshong.net/2009/03/vim-mapping-phpunit-skeleton-to-zf-standards/</link>
		<comments>http://www.deshong.net/2009/03/vim-mapping-phpunit-skeleton-to-zf-standards/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 16:31:57 +0000</pubDate>
		<dc:creator>Brian DeShong</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.deshong.net/?p=190</guid>
		<description><![CDATA[<a href="http://www.deshong.net/2009/03/vim-mapping-phpunit-skeleton-to-zf-standards/" title="Vim mapping: Bringing PHPUnit skeleton test class code up to Zend Framework standards"></a>I write a lot of unit tests. I like to apply our coding standards, which are based on Zend Framework coding standards, to these test classes. I also hate writing the skeleton test classes from scratch, especially with PHPUnit will &#8230;<p class="read-more"><a href="http://www.deshong.net/2009/03/vim-mapping-phpunit-skeleton-to-zf-standards/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://www.deshong.net/2009/03/vim-mapping-phpunit-skeleton-to-zf-standards/" title="Vim mapping: Bringing PHPUnit skeleton test class code up to Zend Framework standards"></a><p>
I write a lot of unit tests.  I like to apply our coding standards, which are based on <a href="http://framework.zend.com/manual/en/coding-standard.html">Zend Framework coding standards</a>, to these test classes.
</p>
<p>
I also hate writing the skeleton test classes from scratch, especially with <a href="http://phpunit.de/">PHPUnit</a> will do this for me.  You just have to run:</p>
<pre>
phpunit --skeleton-test Your_Class
</pre>
<p>&#8230;and it generates:</p>
<pre>
PHPUnit x.y.z by Sebastian Bergmann.

Wrote skeleton for "Your_Class" to "./Your_ClassTest.php".
</pre>
</p>
<p>
Fresh off of the skeleton generation, the test class will have a few little things in it that are against Zend Framework standards.  The Vim map below fixes these standards violations:</p>
<ol>
<li>Fixes method opening brace placements from <code>public function testFoo() {</code> to <code>public function testFoo()[NEWLINE + 4 SPACES]{</code></li>
<li>Changes all <code>$this->object</code> to <code>$this->_object</code></li>
<li>Changes <code>protected $object</code> to <code>protected $_object</code></li>
<li>Changes comments &#8220;@todo Implement testFoo()&#8221; to &#8220;Basic test of testFoo()&#8221; with a &#8220;@return void&#8221;; note that you should write more appropriate comments as needed!</li>
</ol>
<p>
Place this in your ~/.vimrc file:</p>
<pre>
map zfunit :%s/function test\(.*\) {/function test\1\r    {/g \
    \|%s/@todo Implement \(.*\)$/Basic test for \1\r     *\r     * @return void/g \
    \|%s/\$object/\$_object/g \
    \|%s/this->object/this->_object/g<CR>
</pre>
</p>
<p>
To run it, just open your offending class file in vim and type <code>zfunit</code>.  You will then see output of:</p>
<pre>
X substitutions on X lines
Y substitutions on Y lines
</pre>
<p>Take a look at your file now &#8212; voila!  All fixed.  No manual moving of those annoyances to conform to the standards.
</p>
<p>
Enjoy!
</p>
<p>
<strong>NOTE:</strong> The above applies to usage of PHPUnit with the <em>default</em> skeleton template.  You can provide alternate templates in your <code>PHPUnit/Util/Skeleton/Template</code> directory by adding your equivalent <code>*.tpl</code> file for the particular template to address the issues outlined here.  Thanks for keeping me in line, <a href="http://sebastian-bergmann.de/">Sebastian</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deshong.net/2009/03/vim-mapping-phpunit-skeleton-to-zf-standards/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Off to php&#124;tek 2008!</title>
		<link>http://www.deshong.net/2008/05/off-to-phptek-2008/</link>
		<comments>http://www.deshong.net/2008/05/off-to-phptek-2008/#comments</comments>
		<pubDate>Mon, 19 May 2008 12:10:40 +0000</pubDate>
		<dc:creator>Brian DeShong</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.deshong.net/?p=74</guid>
		<description><![CDATA[<a href="http://www.deshong.net/2008/05/off-to-phptek-2008/" title="Off to php&#124;tek 2008!"></a>For those of you that read my blog and happen to be attending php&#124;tek 2008, I&#8217;m heading up that way today! Over the past few weeks, I&#8217;ve received a handful of Twitter messages and other emails regarding batch processing with &#8230;<p class="read-more"><a href="http://www.deshong.net/2008/05/off-to-phptek-2008/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://www.deshong.net/2008/05/off-to-phptek-2008/" title="Off to php&#124;tek 2008!"></a><p>For those of you that read my blog and happen to be attending <a href="http://tek.phparch.com/">php|tek 2008</a>, I&#8217;m heading up that way today!  Over the past few weeks, I&#8217;ve received a handful of Twitter messages and other emails regarding batch processing with PHP.  I look forward to seeing the few curious, interested people there.  Don&#8217;t hesitate to stop by and say hello.</p>
<p>I&#8217;ll be presenting on &#8220;Robust Batch Processing with PHP,&#8221; as well as my &#8220;The Grown-Up Company&#8217;s Guide to Development,&#8221; which has been spruced up a bit post-ZendCon 2007 (read: &#8220;made less boring&#8221;). Happy conferencing, everyone!  <b><i>Ayyyyyyyyy!</i></b></p>
]]></content:encoded>
			<wfw:commentRss>http://www.deshong.net/2008/05/off-to-phptek-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Congrats! Community Connect Inc. sells to Radio One for $38 million</title>
		<link>http://www.deshong.net/2008/04/congrats-community-connect-inc-sells-to-radio-one-for-38-million/</link>
		<comments>http://www.deshong.net/2008/04/congrats-community-connect-inc-sells-to-radio-one-for-38-million/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 15:16:20 +0000</pubDate>
		<dc:creator>Brian DeShong</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.deshong.net/?p=72</guid>
		<description><![CDATA[<a href="http://www.deshong.net/2008/04/congrats-community-connect-inc-sells-to-radio-one-for-38-million/" title="Congrats! Community Connect Inc. sells to Radio One for $38 million"></a>Just a quick &#8220;congratulations&#8221; to my former employer, Community Connect Inc., for their recent sale to Radio One. Congrats, CCI!]]></description>
			<content:encoded><![CDATA[<a href="http://www.deshong.net/2008/04/congrats-community-connect-inc-sells-to-radio-one-for-38-million/" title="Congrats! Community Connect Inc. sells to Radio One for $38 million"></a><p>Just a quick &#8220;congratulations&#8221; to my former employer, <a href="http://www.communityconnect.com/">Community Connect Inc.</a>, for their recent <a href="http://www.alleyinsider.com/2008/4/blackplanet_parent_community_connect_sells_to_radio_one_for_38_million">sale to Radio One</a>.</p>
<p>Congrats, CCI!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deshong.net/2008/04/congrats-community-connect-inc-sells-to-radio-one-for-38-million/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>“The Grown-Up Company’s Guide to Development” on ZendCon Sessions</title>
		<link>http://www.deshong.net/2008/04/the-grown-up-companys-guide-to-development-on-zendcon-sessions/</link>
		<comments>http://www.deshong.net/2008/04/the-grown-up-companys-guide-to-development-on-zendcon-sessions/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 14:50:39 +0000</pubDate>
		<dc:creator>Brian DeShong</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[sdlc]]></category>

		<guid isPermaLink="false">http://www.deshong.net/?p=71</guid>
		<description><![CDATA[<a href="http://www.deshong.net/2008/04/the-grown-up-companys-guide-to-development-on-zendcon-sessions/" title="“The Grown-Up Company’s Guide to Development” on ZendCon Sessions"></a>One of my talks from ZendCon 2007, &#8220;The Grown-Up Company&#8217;s Guide to Development,&#8221; has been posted to the ZendCon Sessions. If you missed my talk and are interested, head on over there to check it out! Is it a coincidence &#8230;<p class="read-more"><a href="http://www.deshong.net/2008/04/the-grown-up-companys-guide-to-development-on-zendcon-sessions/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://www.deshong.net/2008/04/the-grown-up-companys-guide-to-development-on-zendcon-sessions/" title="“The Grown-Up Company’s Guide to Development” on ZendCon Sessions"></a><p>One of my talks from ZendCon 2007, &#8220;The Grown-Up Company&#8217;s Guide to Development,&#8221; has been <a href="http://devzone.zend.com/article/3343-The-ZendCon-Sessions-Episode-11-The-Grown-Up-Companys-Guide-to-Development">posted to the ZendCon Sessions</a>.</p>
<p>If you missed my talk and are interested, <a href="http://devzone.zend.com/article/3343-The-ZendCon-Sessions-Episode-11-The-Grown-Up-Companys-Guide-to-Development">head on over there</a> to check it out!</p>
<p>Is it a coincidence that everyone&#8217;s favorite Zend pal, <a href="http://blog.calevans.com/">Cal Evans</a>, posted it on April Fool&#8217;s Day?  That&#8217;s for you to decide.  <img src='http://www.deshong.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Thanks, Cal!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deshong.net/2008/04/the-grown-up-companys-guide-to-development-on-zendcon-sessions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Eyyyyyyy!&#8221;: ZendCon 2007, day #1/4</title>
		<link>http://www.deshong.net/2007/10/eyyyyyyy-zendcon-2007-day-14/</link>
		<comments>http://www.deshong.net/2007/10/eyyyyyyy-zendcon-2007-day-14/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 06:52:00 +0000</pubDate>
		<dc:creator>Brian DeShong</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.deshong.net/?p=57</guid>
		<description><![CDATA[<a href="http://www.deshong.net/2007/10/eyyyyyyy-zendcon-2007-day-14/" title="&quot;Eyyyyyyy!&quot;: ZendCon 2007, day #1/4"></a>Well, ZendCon day #1 has drawn to a close. By day #1, I mean that I sat in on Sara Golemon, Wez Furlong&#8216;s, and Marcus Boerger&#8216;s tutorial on &#8220;Extending PHP.&#8221; Reading Sara&#8217;s book is one thing, but hearing it first &#8230;<p class="read-more"><a href="http://www.deshong.net/2007/10/eyyyyyyy-zendcon-2007-day-14/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://www.deshong.net/2007/10/eyyyyyyy-zendcon-2007-day-14/" title="&quot;Eyyyyyyy!&quot;: ZendCon 2007, day #1/4"></a><p>Well, ZendCon day #1 has drawn to a close.  By day #1, I mean that I sat in on <a href="http://blog.libssh2.org/">Sara Golemon</a>, <a href="http://netevil.org/">Wez Furlong</a>&#8216;s, and <a href="http://marcus-boerger.de/">Marcus Boerger</a>&#8216;s tutorial on &#8220;Extending PHP.&#8221;  Reading Sara&#8217;s book is one thing, but hearing it first hand from the masters themselves is another.</p>
<p>Also, a little later in the day, my colleagues from <a href="http://www.schematic.com/">Schematic</a> showed up, along with some former colleagues from <a href="http://www.communityconnect.com/">Community Connect Inc.</a>, so quite a good day overall.</p>
<p>Now I&#8217;m inspired to write an extension&#8230;what&#8217;s it gonna&#8217; be?  <img src='http://www.deshong.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Tomorrow at 4 PM PST: <a href="http://benramsey.com/">Ben &#8220;It&#8217;s An Honor&#8221; Ramsey</a> and I speak on &#8220;Mobilizing and Sharing: How Zend Framework Builds Community for <a href="http://mosh.nokia.com/">Nokia MOSH</a>.&#8221;  Good luck to us!</p>
<p>See you all tomorrow&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deshong.net/2007/10/eyyyyyyy-zendcon-2007-day-14/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Some credit from the world&#8217;s top gamer!</title>
		<link>http://www.deshong.net/2007/09/some-credit-from-the-worlds-top-gamer/</link>
		<comments>http://www.deshong.net/2007/09/some-credit-from-the-worlds-top-gamer/#comments</comments>
		<pubDate>Wed, 05 Sep 2007 01:48:13 +0000</pubDate>
		<dc:creator>Brian DeShong</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.deshong.net/?p=52</guid>
		<description><![CDATA[<a href="http://www.deshong.net/2007/09/some-credit-from-the-worlds-top-gamer/" title="Some credit from the world&#039;s top gamer!"></a>Noticed this tonight: Click here for article My old high school friend and neighbor, Johnathan &#8220;Fatal1ty&#8221; Wendel mentions how my brothers and I got him into FPS gaming back in the day (you can just search the page for &#8220;Brian&#8221;). &#8230;<p class="read-more"><a href="http://www.deshong.net/2007/09/some-credit-from-the-worlds-top-gamer/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://www.deshong.net/2007/09/some-credit-from-the-worlds-top-gamer/" title="Some credit from the world&#039;s top gamer!"></a><p>Noticed this tonight:</p>
<p><a href="http://www.gamingjunky.com/article/2007/4/8/fatal1ty:-the-interview/4/">Click here for article</a></p>
<p>My old high school friend and neighbor, Johnathan &#8220;Fatal1ty&#8221; Wendel mentions how my brothers and I got him into FPS gaming back in the day (you can just search the page for &#8220;Brian&#8221;).  Ah, we used to play Doom 2 deathmatch over the Novell IPX network I had setup in the basement.  That was so long ago!</p>
<p>Those were the days.  Wendel, if you&#8217;re reading this, keep it up!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deshong.net/2007/09/some-credit-from-the-worlds-top-gamer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GA pictures and first day at work!</title>
		<link>http://www.deshong.net/2007/07/ga-pictures-and-first-day-at-work/</link>
		<comments>http://www.deshong.net/2007/07/ga-pictures-and-first-day-at-work/#comments</comments>
		<pubDate>Wed, 25 Jul 2007 14:16:00 +0000</pubDate>
		<dc:creator>Brian DeShong</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[atlanta]]></category>
		<category><![CDATA[austell]]></category>
		<category><![CDATA[georgia]]></category>
		<category><![CDATA[house]]></category>

		<guid isPermaLink="false">http://www.deshong.net/?p=50</guid>
		<description><![CDATA[<a href="http://www.deshong.net/2007/07/ga-pictures-and-first-day-at-work/" title="GA pictures and first day at work!"></a>Well, today&#8217;s my first day in Schematic&#8216;s Atlanta office! Really nice and quiet. Traffic was&#8230;interesting, though. Needless to say, I won&#8217;t be taking that route often. You can find a ton of pictures below! GA photos here Coming soon, a &#8230;<p class="read-more"><a href="http://www.deshong.net/2007/07/ga-pictures-and-first-day-at-work/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://www.deshong.net/2007/07/ga-pictures-and-first-day-at-work/" title="GA pictures and first day at work!"></a><p>Well, today&#8217;s my first day in <a href="http://www.schematic.com/">Schematic</a>&#8216;s Atlanta office!  Really nice and quiet.  Traffic was&#8230;interesting, though.  Needless to say, I won&#8217;t be taking that route often.  You can find a ton of pictures below!</p>
<p><a href="http://photos.deshong.net/gallery2/nyc2atl/">GA photos here</a></p>
<p>Coming soon, a long-overdue technical post: Who&#8217;s Online with Memcached</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deshong.net/2007/07/ga-pictures-and-first-day-at-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wedding proofs&#8230;finally!</title>
		<link>http://www.deshong.net/2007/05/wedding-proofsfinally/</link>
		<comments>http://www.deshong.net/2007/05/wedding-proofsfinally/#comments</comments>
		<pubDate>Mon, 07 May 2007 00:55:11 +0000</pubDate>
		<dc:creator>Brian DeShong</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.deshong.net/?p=38</guid>
		<description><![CDATA[<a href="http://www.deshong.net/2007/05/wedding-proofsfinally/" title="Wedding proofs...finally!"></a>We received our wedding proofs! Low-res digital copies can be found here: Wedding proofs here]]></description>
			<content:encoded><![CDATA[<a href="http://www.deshong.net/2007/05/wedding-proofsfinally/" title="Wedding proofs...finally!"></a><p>We received our wedding proofs!  Low-res digital copies can be found here:</p>
<p><a href="http://www.photos.deshong.net/gallery2/Wedding/Professional/">Wedding proofs here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.deshong.net/2007/05/wedding-proofsfinally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning OS X&#8230;the hard way&#8230;</title>
		<link>http://www.deshong.net/2007/04/learning-os-xthe-hard-way/</link>
		<comments>http://www.deshong.net/2007/04/learning-os-xthe-hard-way/#comments</comments>
		<pubDate>Wed, 04 Apr 2007 23:34:31 +0000</pubDate>
		<dc:creator>Brian DeShong</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.deshong.net/?p=33</guid>
		<description><![CDATA[<a href="http://www.deshong.net/2007/04/learning-os-xthe-hard-way/" title="Learning OS X...the hard way..."></a>A few weeks back, I had a need to install the latest copy of libxml2 on my Intel Mac Mini here at home. Little did I know what trouble it would cause! First, after installing 2.6.27, I noticed that Colloquy, &#8230;<p class="read-more"><a href="http://www.deshong.net/2007/04/learning-os-xthe-hard-way/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://www.deshong.net/2007/04/learning-os-xthe-hard-way/" title="Learning OS X...the hard way..."></a><p>A few weeks back, I had a need to install the latest copy of libxml2 on my Intel Mac Mini here at home.  Little did I know what trouble it would cause!</p>
<p>First, after installing 2.6.27, I noticed that Colloquy, my IRC client, wasn&#8217;t so stable.  After downgrading to libxml 2.6.16, all of my Office apps stopped working!  The icons would bounce once on the dock, then poof&#8230;nothing.</p>
<p>So, after tons of Googling, I discovered the Console program.  Upon running this and trying to start various Office applications, I noticed an error for libxml2!  Now, of course I couldn&#8217;t find out what version of libxml2 was installed with the latest 10.4.9 update, so I SCP&#8217;d over all of /usr/lib/libxml2* from my work MacBook, onto my Mac Mini and poof&#8230;everything&#8217;s working again.</p>
<p>Insanity!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deshong.net/2007/04/learning-os-xthe-hard-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another one bites the dust</title>
		<link>http://www.deshong.net/2007/02/another-one-bites-the-dust/</link>
		<comments>http://www.deshong.net/2007/02/another-one-bites-the-dust/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 02:41:25 +0000</pubDate>
		<dc:creator>Brian DeShong</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.deshong.net/?p=30</guid>
		<description><![CDATA[<a href="http://www.deshong.net/2007/02/another-one-bites-the-dust/" title="Another one bites the dust"></a>&#8230;nah&#8230;only kidding! As some of you may know, Felicia and I were married on February 17, 2007. We left early the next morning for a cruise to San Juan, St. Maarten, and St. Thomas on the Carnival Victory. We loved &#8230;<p class="read-more"><a href="http://www.deshong.net/2007/02/another-one-bites-the-dust/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://www.deshong.net/2007/02/another-one-bites-the-dust/" title="Another one bites the dust"></a><p>&#8230;nah&#8230;only kidding!  As some of you may know, Felicia and I were <a href="http://wedding.deshong.net/">married</a> on <a href="http://photos.deshong.net/gallery2/Wedding/TheBigDay/">February 17, 2007</a>.  We left early the next morning for a <a href="http://photos.deshong.net/gallery2/Wedding/Honeymoon/">cruise</a> to San Juan, St. Maarten, and St. Thomas on the Carnival Victory.  We loved the trip&#8230;I highly recommend cruising!  A week was a tad too long, but it may not have been if we had stopped at one more place.  But regardless, thumbs up for cruising!</p>
<p>You can find photos at the links above.  If anyone wants the original, high-resolution images suitable for printing, email me!</p>
<p>I&#8217;m looking forward to getting back to work and focusing without any wedding-related items on my to do list!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deshong.net/2007/02/another-one-bites-the-dust/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

