<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.2" -->
<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/"
	>

<channel>
	<title>Halogen Labs Weblog</title>
	<link>http://weblog.halogenlabs.com</link>
	<description></description>
	<pubDate>Fri, 13 Jun 2008 00:05:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
	<language>en</language>
			<item>
		<title>Fight the Smears</title>
		<link>http://weblog.halogenlabs.com/posts/fight-the-smears/</link>
		<comments>http://weblog.halogenlabs.com/posts/fight-the-smears/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 00:03:26 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
		
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://weblog.halogenlabs.com/posts/fight-the-smears/</guid>
		<description><![CDATA[I tend to not blog about political crap, but I need to link this:
Fight the Smears is a site (which actually redirects) run by the Barack Obama campaign designed to, well, Fight the Smears about Obama that commonly get passed around as viral e-mails.  You know the crap, those messages that claim that Obama [...]]]></description>
			<content:encoded><![CDATA[<p>I tend to not blog about political crap, but I need to link this:</p>
<p><a href="http://fightthesmears.com/">Fight the Smears</a> is a site (which actually redirects) run by the <a href="http://www.barackobama.com/">Barack Obama campaign</a> designed to, well, <a href="http://fightthesmears.com/">Fight the Smears</a> about Obama that commonly get passed around as viral e-mails.  You know the crap, those messages that claim that <a href="http://my.barackobama.com/page/invite/christian">Obama is a Muslim</a> or that he was sworn in on the Koran.</p>
<p>The site is quite genius, to think about it.  Not only do they take a <a href="http://snopes.com/">Snopes</a>-style method of debunking myths, they also make it extremely easy to plug in people&#8217;s email addresses with a short and to-the-point message regarding that particular issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblog.halogenlabs.com/posts/fight-the-smears/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Thoughts on Continuous Integration and Rails</title>
		<link>http://weblog.halogenlabs.com/posts/thoughts-on-continuous-integration-and-rails/</link>
		<comments>http://weblog.halogenlabs.com/posts/thoughts-on-continuous-integration-and-rails/#comments</comments>
		<pubDate>Fri, 30 May 2008 20:58:12 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://weblog.halogenlabs.com/posts/thoughts-on-continuous-integration-and-rails/</guid>
		<description><![CDATA[One of the first things I&#8217;ll do when working on a new project is to automate the build ASAP.  Starting a new job a couple weeks ago, I took the opportunity to get CruiseControl.rb up and running and getting the tests running reliably.
At my last job, we had automated the build by having CC.rb [...]]]></description>
			<content:encoded><![CDATA[<p>One of the first things I&#8217;ll do when working on a new project is to automate the build ASAP.  Starting a new job a couple weeks ago, I took the opportunity to get <a href="http://cruisecontrolrb.thoughtworks.com/">CruiseControl.rb</a> up and running and getting the tests running reliably.</p>
<p>At my last job, we had automated the build by having CC.rb run <code>rake db:migrate</code> followed by <code>rake test</code>.  This worked out fairly well, and we made it a practice to peer-review all migrations before committing them.</p>
<p>This technique had a few drawbacks, however.  One thing was that we were testing our migrations.  If someone committed a migration that broke, the build would fail.  Likewise, if someone committed a migration and then needed to change it later, we would have to manually roll back the database and re-migrate up, which was a pain in the butt.</p>
<p>Having the build run the migrations was nice, since other developers would be alerted to a potentially bad migration, but it ended up being more trouble than it was worth.</p>
<p>At my new job, there&#8217;s an established practice of using migrations to add static data to the database (which is the subject for another post).  Migrations are an easy way to do this, but you run into trouble if the data being added depends on other data in the database, or if the migration was bad.</p>
<p>I&#8217;m of the opinion that you should avoid hitting the database as much as possible during tests, and by running migrations during the build (especially ones that depend on static data in the database), you end up coupling yourself even more tightly to the database.</p>
<p>After thinking about it for a while, I&#8217;ve decided that the schema.rb file is, after all, the de facto source of the database schema (big DUH here). Therefore, each build should wipe the the test database clean of tables and then load the schema.rb file from the repository.</p>
<p>Our new rule here now is that if you check in a new migration, you must also check in the new schema.rb.</p>
<p>By doing this, we consider migrations a tool for communicating small changes to developers over time, and we have a reliable, repeatable way to load a fresh db schema into a new development environment.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblog.halogenlabs.com/posts/thoughts-on-continuous-integration-and-rails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Analytics to the Rescue</title>
		<link>http://weblog.halogenlabs.com/posts/google-analytics-to-the-rescue/</link>
		<comments>http://weblog.halogenlabs.com/posts/google-analytics-to-the-rescue/#comments</comments>
		<pubDate>Tue, 27 May 2008 06:36:28 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://weblog.halogenlabs.com/posts/google-analytics-to-the-rescue/</guid>
		<description><![CDATA[Google Analytics can help you in a lot of interesting ways sometimes.   Recently I noticed my traffic had dropped to zero:

What does this mean?

Nobody&#8217;s visiting the site
Web server died
Google stopped indexing my site and stopped referring links to the site.
Sky is falling

I knew the first option wasn&#8217;t the case since I usually have [...]]]></description>
			<content:encoded><![CDATA[<p>Google Analytics can help you in a lot of interesting ways sometimes.   Recently I noticed my traffic had dropped to zero:</p>
<p><img src="/images/posts/analytics-oops.png" width="314" height="131" alt="whoops!" /></p>
<p>What does this mean?</p>
<ol>
<li>Nobody&#8217;s visiting the site</li>
<li>Web server died</li>
<li>Google stopped indexing my site and stopped referring links to the site.</li>
<li>Sky is falling</li>
</ol>
<p>I knew the first option wasn&#8217;t the case since I usually have a low level of &#8220;background radiation&#8221; traffic even when I&#8217;m not posting. I knew for a fact my web server was up.  I checked my robots.txt file and it was fine, so WTF?</p>
<p>Well, after checking my page source, realized I blew away my old Google Analytics code in the Wordpress Template, and the only thing that Google Analytics was reporting was the fact that I didn&#8217;t even have it installed!</p>
]]></content:encoded>
			<wfw:commentRss>http://weblog.halogenlabs.com/posts/google-analytics-to-the-rescue/feed/</wfw:commentRss>
		</item>
		<item>
		<title>9 tips for successful telecommuting</title>
		<link>http://weblog.halogenlabs.com/posts/9-tips-for-successful-telecommuting/</link>
		<comments>http://weblog.halogenlabs.com/posts/9-tips-for-successful-telecommuting/#comments</comments>
		<pubDate>Fri, 09 May 2008 17:05:54 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://weblog.halogenlabs.com/posts/x-tips-for-successful-telecommuting/</guid>
		<description><![CDATA[Two weeks ago this past Wednesday, I gave notice to my former employer that I had accepted a job from a local company as a Software Engineer.  It was a hard decision to make; just over eighteen months ago I had written about getting the job which basically amounted to a &#8220;dream job&#8221; situation. [...]]]></description>
			<content:encoded><![CDATA[<p>Two weeks ago this past Wednesday, I gave notice to my former employer that I had accepted a job from a local company as a Software Engineer.  It was a hard decision to make; just over eighteen months ago I had <a href="http://weblog.halogenlabs.com/posts/decloaking/">written about getting the job</a> which basically amounted to a &#8220;dream job&#8221; situation.  I was working with Rails, doing cool stuff with weather and mapping.  </p>
<p>The only catch was that it would be 100% telecommuting.</p>
<p>After eighteen months, I pretty much had it firmed up in my mind that telecommuting, and the lifestyle associated with it, wasn&#8217;t for me.  Before accepting the job, I had done a ton of research into what it would take.  Telecommuting isn&#8217;t for everybody, and when I would tell people that I telecommute, the usual response was something along the lines of, &#8220;Wow, that must be nice!&#8221;</p>
<p>It <em>was</em> nice, but the drawbacks didn&#8217;t really become apparent after the third month.</p>
<p>If you&#8217;re considering telecommuting, there are a lot of things to take into account, especially if it&#8217;s going to be 100% of the time.</p>
<h3>Keep work and personal space separate.</h3>
<p>This is probably the most important item here.  Dedicate a room to your home office.  Don&#8217;t share it with existing space if you can.  Keep work and personal space separate.  Resist the urge to be in the office space &#8220;after hours&#8221; if you&#8217;re doing casual web browsing, email-checking or whatever.</p>
<h3>You never really leave work.</h3>
<p>It&#8217;s too easy to walk into your home office after-hours and work.  Bored? You can sit down and work. </p>
<h3>You never really leave <em>home</em>.</h3>
<p>The flip side of this is that you&#8217;re always around the house.  Bored working? It&#8217;s almost too easy to go play some Guitar Hero or fire up the Wii.  You&#8217;ll have to be immensely disciplined to get work done.</p>
<h3>Don&#8217;t become a hermit.</h3>
<p>Socialize.  You&#8217;re around the house more, which means you don&#8217;t have a lot of people around to talk to.  Not long after I started telecommuting, I noticed a shift in my personality.  I&#8217;m already an introvert, but being isolated from people seemed to make it worse.  I generally felt more awkward around people, and it was harder to socialize and relate to people in general.  </p>
<h3>Be aware of time shifts.</h3>
<p>Because the home office was in Denver, I generally got started one hour later than if I were working locally.  This also meant that I worked an hour later as well.  Sometimes this would throw off things like eating dinner or going to bed.  This can obviously affect your family, so make sure they understand why you&#8217;re getting up late and staying up late if this happens.</p>
<h3>Get a separate phone line, and use it.</h3>
<p>If your home phone line (or cell phone) becomes your lifeline to the office, it&#8217;s even more important that your coworkers understand this setup.  They shouldn&#8217;t be calling you at home on Saturdays.  </p>
<p>One of my bigger challenges with telecommuting (especially as a software engineer) was that much of my communication with my coworkers and colleagues was over email or IM.  Looking back, I wish I had a separate, dedicated work line, and that I used it more.  It&#8217;s much, <em>much</em> easier to communicate complex thoughts and ideas over the phone, compared to email or chat.  Don&#8217;t be afraid to fire up the phone.</p>
<h3>Get a headset for your phone.</h3>
<p>We would have weekly engineering meetings, and status meetings with our client quite often.  Having a headset that I could plug into the phone was very useful, mostly because it kept my hands free for typing on the computer.</p>
<h3>Make your employer pay your bills.</h3>
<p>Ideally, your employer should be paying your landline or cellphone bills.  They should even be paying your cable or DSL bills.  After all, they are saving quite a bit of money by not having to maintain physical office space an other facilities for you.  I made the mistake of not getting my phone and ISP bills expensed, and wished I had gotten it taken care of from the start.</p>
<h3>Investigate the tax benefits of a home office.</h3>
<p>If you have a room dedicated to office space, I believe you can write off a percentage of your taxes based on what percentage of the house is being used.  I&#8217;m not a tax expert, but I highly recommend looking into writing off what you can.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblog.halogenlabs.com/posts/9-tips-for-successful-telecommuting/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Subject to shill: tech books as corporate marketing</title>
		<link>http://weblog.halogenlabs.com/posts/adaptive-crap/</link>
		<comments>http://weblog.halogenlabs.com/posts/adaptive-crap/#comments</comments>
		<pubDate>Fri, 09 May 2008 16:23:49 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://weblog.halogenlabs.com/posts/adaptive-crap/</guid>
		<description><![CDATA[Jem Matzan has a damning article entitled Subject to shill: tech books as corporate marketing in which O&#8217;Reilly and Adaptive Path are panned for producing.. well, crap:

The book&#8217;s primary content reads like a marketing pitch for Adaptive Path services. It&#8217;s packed with enthusiasm but entirely devoid of substance. There are whole paragraphs that meander around [...]]]></description>
			<content:encoded><![CDATA[<p>Jem Matzan has a damning article entitled <a href="http://www.thejemreport.com/mambo/content/view/395/">Subject to shill: tech books as corporate marketing</a> in which O&#8217;Reilly and Adaptive Path are panned for producing.. well, crap:</p>
<blockquote><p>
The book&#8217;s primary content reads like a marketing pitch for Adaptive Path services. It&#8217;s packed with enthusiasm but entirely devoid of substance. There are whole paragraphs that meander around non-specific subjects, one leading into another until you&#8217;re pretty sure you&#8217;ve got the gist of what the authors are trying to say, but you have no idea how to apply it to your business.
</p></blockquote>
<p>It&#8217;s too bad that the book comes out as a fairly transparent marketing ploy. Several of my friends and colleagues agree with me in the opinion that the quality of O&#8217;Reilly titles has gone down over the past few years.  The last book from O&#8217;Reilly that I have bought was the <a href="http://www.amazon.com/Information-Architecture-World-Wide-Web/dp/0596527349/">Information Architecture</a> book, but that was fairly recent.</p>
<p>I am also reminded of the <a href="http://web.archive.org/web/20011116191607/http://www.geocities.com/wehavebigheads2/adaptive.gif">Adaptive Crap</a> image from 2001.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblog.halogenlabs.com/posts/adaptive-crap/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Amazon Hack: Searching for a Page Number</title>
		<link>http://weblog.halogenlabs.com/posts/amazon-hack-searching-for-a-page-number/</link>
		<comments>http://weblog.halogenlabs.com/posts/amazon-hack-searching-for-a-page-number/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 01:09:29 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://weblog.halogenlabs.com/posts/amazon-hack-searching-for-a-page-number/</guid>
		<description><![CDATA[I&#8217;m a huge nerd for books, and Amazon only makes it easier to obsess.  
Amazon&#8217;s &#8220;Search Inside&#8221; feature is pretty handy, but once you page through a few pages, you get stuck, so it makes it hard to get a good sample of the book before they cut you off.
More often than not, you [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a huge nerd for books, and Amazon only makes it easier to obsess.  </p>
<p>Amazon&#8217;s &#8220;Search Inside&#8221; feature is pretty handy, but once you page through a few pages, you get stuck, so it makes it hard to get a good sample of the book before they cut you off.</p>
<p>More often than not, you can page through the Table of Contents, find a section you want to look for, and then search for that page number.</p>
<div style="text-align: center;">
    <img src="http://weblog.halogenlabs.com/images/posts/amazon-search.png" alt="Amazon search results" style="border: 1px dashed gray;"/>
</div>
<p>Once you page through a few pages, you can search for the page you left off on, until you hit their hard limit of page views for the day.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblog.halogenlabs.com/posts/amazon-hack-searching-for-a-page-number/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SVNMate: SVN status icons for TextMate</title>
		<link>http://weblog.halogenlabs.com/posts/svnmate-svn-status-icons-for-textmate/</link>
		<comments>http://weblog.halogenlabs.com/posts/svnmate-svn-status-icons-for-textmate/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 21:42:01 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://weblog.halogenlabs.com/posts/svnmate-svn-status-icons-for-textmate/</guid>
		<description><![CDATA[Ok, all the kewl kids are using hg or git these days, but I just stumbled across an awesome plugin for TextMate called SVNMate.
One of my biggest problems moving to FT Rails development with TextMate was a lack of status icons that told me what I had modified.  Coming from using Eclipse, I felt [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, all the kewl kids are using hg or git these days, but I just stumbled across an awesome plugin for TextMate called <a href="http://ciaranwal.sh/2007/11/29/svnmate-update">SVNMate</a>.</p>
<p>One of my biggest problems moving to FT Rails development with TextMate was a lack of status icons that told me what I had modified.  Coming from using Eclipse, I felt like my commits were sloppier and I was more prone to break the build due to missing a file checkin.</p>
<p>SVNMate gives you file status icons in your project drawer, so you can tell at a glance what has changed.</p>
<div style="text-align: center;">
<img src="http://www.easyscreens.info/gallery/20080202/6.png" alt="SVNMate screenshot" width="139" height="113" style="border: 1px dashed gray;"/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://weblog.halogenlabs.com/posts/svnmate-svn-status-icons-for-textmate/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SOLVED: Opening a .DMG file in Finder won&#8217;t mount it</title>
		<link>http://weblog.halogenlabs.com/posts/solved-opening-a-dmg-file-in-finder-wont-mount-it/</link>
		<comments>http://weblog.halogenlabs.com/posts/solved-opening-a-dmg-file-in-finder-wont-mount-it/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 21:00:55 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://weblog.halogenlabs.com/posts/solved-opening-a-dmg-file-in-finder-wont-mount-it/</guid>
		<description><![CDATA[Recently, my MacBookPro decided that the only way I was allowed to open .DMG disk image files was by manually starting Disk Utility.app, and opening the DMG file from there.
I finally discovered the solution: Simply do a &#8220;Get Info&#8221; on any DMG file, and set the default application to DiskImageMounter.app, and your problems will be [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, my MacBookPro decided that the only way I was allowed to open .DMG disk image files was by manually starting Disk Utility.app, and opening the DMG file from there.</p>
<p>I <em>finally</em> discovered the solution: Simply do a &#8220;Get Info&#8221; on any DMG file, and set the default application to DiskImageMounter.app, and your problems will be solved.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblog.halogenlabs.com/posts/solved-opening-a-dmg-file-in-finder-wont-mount-it/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Elbow Room, and ez_temp_conversion: a tiny Rails Plugin</title>
		<link>http://weblog.halogenlabs.com/posts/elbow-room-and-ez_temp_conversion-a-tiny-rails-plugin/</link>
		<comments>http://weblog.halogenlabs.com/posts/elbow-room-and-ez_temp_conversion-a-tiny-rails-plugin/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 04:59:16 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://weblog.halogenlabs.com/posts/elbow-room-and-ez_temp_conversion-a-tiny-rails-plugin/</guid>
		<description><![CDATA[It feels good to stretch out.
Also, I committed an almost-worthless plugin for Rails called ez_temp_conversion which allows for basic Fahrenheit-to-Celsius (and vice versa) temperature conversion.

>> 32.f_to_c
=> 0.0
>> 37.c_to_f
=> 98.6

./script/plugin install http://svn.halogenlabs.com/rails_plugins/ez_temp_conversion/
It&#8217;s really a dead-simple monkeypatch to Numeric, so it&#8217;s not really specific to Rails. It should probably be bundled up as a gem or something, [...]]]></description>
			<content:encoded><![CDATA[<p>It feels good to stretch out.</p>
<p>Also, I committed an almost-worthless plugin for Rails called <code>ez_temp_conversion</code> which allows for basic Fahrenheit-to-Celsius (and vice versa) temperature conversion.<br />
<code><br />
>> 32.f_to_c<br />
=> 0.0<br />
>> 37.c_to_f<br />
=> 98.6<br />
</code></p>
<p>./script/plugin install <a href="http://svn.halogenlabs.com/rails_plugins/ez_temp_conversion/">http://svn.halogenlabs.com/rails_plugins/ez_temp_conversion/</a></p>
<p>It&#8217;s really a dead-simple monkeypatch to <code>Numeric</code>, so it&#8217;s not really specific to Rails. It should probably be bundled up as a gem or something, so I will get to that soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblog.halogenlabs.com/posts/elbow-room-and-ez_temp_conversion-a-tiny-rails-plugin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why email sucks, redux</title>
		<link>http://weblog.halogenlabs.com/posts/why-email-sucks-redux/</link>
		<comments>http://weblog.halogenlabs.com/posts/why-email-sucks-redux/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 16:26:15 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://weblog.halogenlabs.com/posts/why-email-sucks-redux/</guid>
		<description><![CDATA[Bruno over at Rails Spikes posted a couple months ago (sheesh I am late to the party) about why email sucks for communication.
I telecommute, and a large portion of my communication with the rest of the company (and our customer) is over email.  I hate it.  The web development team uses IM (An [...]]]></description>
			<content:encoded><![CDATA[<p>Bruno over at <a href="http://www.railspikes.com/2007/8/16/e-mail-sucks">Rails Spikes</a> posted a couple months ago (sheesh I am late to the party) about why email sucks for communication.</p>
<p>I telecommute, and a large portion of my communication with the rest of the company (and our customer) is over email.  I hate it.  The web development team uses IM (An internal Jabber server, actually), and it works well for daily standup meetings.</p>
<p>So why does email suck?  Bruno sees the tip of the iceberg:</p>
<blockquote><p>Which brings me to an idea my friend Dan exposed me to: the higher the fidelity of your communication, the better chance you have of making yourself understood. Makes sense, right? A phone with a good connection is better than a walkie-talkie with white noise and static. An MP3 with a high bit rate transmits communicates more than one with a low bit rate.</p></blockquote>
<p>Alistair Cockburn, founder of the &#8220;Crystal&#8221; development methodologies, summed up this phenomena in an article entitled &#8220;<a href="http://alistair.cockburn.us/index.php/Characterizing_people_as_non-linear,_first-order_components_in_software_development">Characterizing people as non-linear, first-order components in software development</a>.&#8221;</p>
<p><em>Whaaa?!?!?</em></p>
<p>What he&#8217;s saying is that people aren&#8217;t robots (duh), and act different month-to-month, day-to-day, and even minute-to-minute.</p>
<p>The big issue is that there&#8217;s a ton of information that isn&#8217;t being communicated when you type to someone.  Even over the phone, you&#8217;re missing subtle gestures that you&#8217;d normally pick up when you&#8217;re speaking to someone face-to-face in front of a whiteboard.</p>
<p>It&#8217;s all about the bandwidth, baby.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblog.halogenlabs.com/posts/why-email-sucks-redux/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
