<?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>stevedoria.net &#187; Refactoring</title>
	<atom:link href="http://blog.stevedoria.net/category/refactoring/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.stevedoria.net</link>
	<description>Real-World Computing Experience Distilled</description>
	<lastBuildDate>Fri, 16 Dec 2011 10:11:54 +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>Refactoring Could&#8217;ve Saved the Day</title>
		<link>http://blog.stevedoria.net/20071102/refactoring-couldve-saved-the-day</link>
		<comments>http://blog.stevedoria.net/20071102/refactoring-couldve-saved-the-day#comments</comments>
		<pubDate>Fri, 02 Nov 2007 12:36:34 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Refactoring]]></category>
		<category><![CDATA[Software Engineering]]></category>

		<guid isPermaLink="false">http://blog.stevedoria.net/20071102/refactoring-couldve-saved-the-day</guid>
		<description><![CDATA[I have ran into a few snags while trying to update parts of my code that depended on other peoples&#8217; code. Other people updated the interface of their modules, and I needed to update the way my module interacted with theirs. Being slightly optimistic and feeling a bit of schedule pressure, a simple identifier substitution [...]]]></description>
		<wfw:commentRss>http://blog.stevedoria.net/20071102/refactoring-couldve-saved-the-day/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Explicitly Redundant</title>
		<link>http://blog.stevedoria.net/20071012/explicitly-redundant</link>
		<comments>http://blog.stevedoria.net/20071012/explicitly-redundant#comments</comments>
		<pubDate>Sat, 13 Oct 2007 06:55:23 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Refactoring]]></category>

		<guid isPermaLink="false">http://blog.stevedoria.net/20071012/explicitly-redundant</guid>
		<description><![CDATA[Today, I caught myself doing this: bool f() { bool r; if( x == y ) { r = true; } else { r = false; } return r; } When I really should have written: bool f() { return x == y; } In the actual code I that I was writing, x and [...]]]></description>
		<wfw:commentRss>http://blog.stevedoria.net/20071012/explicitly-redundant/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

