<?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>cwash into software &#187; reuse trap</title>
	<atom:link href="http://cwash.org/tag/reuse-trap/feed/" rel="self" type="application/rss+xml" />
	<link>http://cwash.org</link>
	<description>+= construction + craftsmanship;</description>
	<lastBuildDate>Thu, 29 Sep 2011 04:23:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.2</generator>
		<item>
		<title>How I Escape the &#8220;Reuse Trap&#8221;</title>
		<link>http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-i-escape-the-reuse-trap</link>
		<comments>http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 16:25:57 +0000</pubDate>
		<dc:creator>Chris Wash</dc:creator>
				<category><![CDATA[Software Engineering]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[reuse]]></category>
		<category><![CDATA[reuse trap]]></category>
		<category><![CDATA[software development]]></category>

		<guid isPermaLink="false">http://cwash.org/?p=22</guid>
		<description><![CDATA[While I was reading "The Reuse Trap In Software Design" I found myself thinking,"Me too! Me too!" like a giddy kid on the playground that's found a new pal with a mutual interest in "pet snakes and/or tarantulas."  As with many of the problems Basil writes about in his blog, I experienced the same problem, investigated it and found the same root causes, and came to many of the same conclusions as those outlined.  My preferred technique for getting out of this quagmire is a little bit different than Basil's and I describe it in this article.]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/";</script><script language="javascript" src="http://widgets.dzone.com/widgets/zoneit.js"></script><p>If you&#8217;ve checked out my blogroll, you&#8217;ll notice I have a link to <a title="Professional Software Development" href="http://www.basilv.com/psd/" target="_blank">Basil Vandegriend&#8217;s &#8220;Professional Software Development&#8221;</a> blog.  I like a lot of the articles he has written and to a large extent the subject matter I envision for this blog frequently crisscrosses with Basil&#8217;s.</p>
<p>While I was reading &#8220;<a title="The Reuse Trap In Software Design" href="http://www.basilv.com/psd/blog/2006/the-reuse-trap-in-software-design#comment-58049" target="_blank">The Reuse Trap In Software Design</a>&#8221; I found myself thinking,&#8221;Me too! Me too!&#8221; like a giddy kid on the playground that&#8217;s found a new pal with a mutual interest in &#8220;pet snakes and/or tarantulas.&#8221;  As with many of the problems Basil writes about in his blog, I experienced the same problem, investigated it and found the same root causes, and came to many of the same conclusions as those outlined.  He describes the &#8220;reuse trap&#8221; as:</p>
<blockquote><p>&#8230;[A] term I coined to describe the situation when one becomes stuck trying to design new functionality while simultaneously attempting to reuse existing code that needs some modifications.</p></blockquote>
<p>He then goes on to describe why it&#8217;s a tough problem for n00bs and outlines a strategy he uses to get out of the trap–one that&#8217;s best described as a two-step process: <em>copy-paste to reuse/refactoring to remove duplication</em>.  I encourage you to read his article if you&#8217;re not familiar with the terms, or how this strategy can solve the problem described above.</p>
<p>My preferred technique for mitigating the problems involved isn&#8217;t <em>copy-paste reuse/refactoring</em>; it&#8217;s stubbing the calls to the code-to-be-reused (C2BR) that needs modification.  If I can fake out the behavior I need, it lets me focus on the nature of the dependency that exists between the two objects/components.  When I go to modify the C2BR, my inputs and outputs (or other consequences that occur as a result of a call to the C2BR) translate directly into a test that I can use to drive the changes I make to that code.  It also ensures that the coupling that exists between the objects is loose and legit.</p>
<p>The only thing to watch out for is that care must be taken to then remove the (small) duplication of the stubbed out inputs/outputs and actually wire the two pieces together when finished with the reused code.  I usually do that by throwing a TODO:WIRE marker in when I stub something.</p>
<p>I&#8217;ve found this is the approach I take more often, though I do take the <em>copy-paste reuse/refactoring</em> route from time to time.  This <strong><em>stub/rewire</em></strong> approach is a bit more advanced, but it&#8217;s how I envisioned solving the &#8220;reuse trap&#8221; when, as Basil puts it, &#8220;I became aware of it&#8221; and all that it entailed.</p>
<p>Do you ever come across this problem?  How do you get out of this &#8220;trap&#8221; or avoid being caught up in it in the first place?</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=6&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=4&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=How+I+Escape+the+%22Reuse+Trap%22&amp;link=http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/&amp;notes=While%20I%20was%20reading%20%22The%20Reuse%20Trap%20In%20Software%20Design%22%20I%20found%20myself%20thinking%2C%22Me%20too%21%20Me%20too%21%22%20like%20a%20giddy%20kid%20on%20the%20playground%20that%27s%20found%20a%20new%20pal%20with%20a%20mutual%20interest%20in%20%22pet%20snakes%20and%2For%20tarantulas.%22%20%20As%20with%20many%20of%20the%20problems%20Basil%20writes%20about%20in%20his%20blog%2C%20I%20experienced%20the%20same%20problem%2C%20investigated%20it%20and%20found%20the%20same%20root%20causes%2C%20and%20came%20to%20many%20of%20the%20same%20conclusions%20as%20those%20outlined.%20%20My%20preferred%20technique%20for%20getting%20out%20of%20this%20quagmire%20is%20a%20little%20bit%20different%20than%20Basil%27s%20and%20I%20describe%20it%20in%20this%20article.&amp;short_link=http://bit.ly/brMnK3&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div></div>

<h3  class="related_post_title">More Related Content</h3><ul class="related_post"><li>July 24, 2009 -- <a href="http://cwash.org/2009/07/24/the-elements-of-reusable-code/" title="The Elements of Reusable Code">The Elements of Reusable Code</a> (0)</li><li>January 31, 2009 -- <a href="http://cwash.org/2009/01/31/in-response-to-stackoverflow-38quality-doesnt-matter-that-much-jeff-and-joel/" title="In response to Stackoverflow #38/&#8221;Quality Doesn&#8217;t Matter That Much&#8221; &#8212; Jeff and Joel ">In response to Stackoverflow #38/&#8221;Quality Doesn&#8217;t Matter That Much&#8221; &#8212; Jeff and Joel </a> (3)</li><li>January 13, 2009 -- <a href="http://cwash.org/2009/01/13/on-software-quality/" title="On Software Quality">On Software Quality</a> (8)</li><li>December 1, 2008 -- <a href="http://cwash.org/2008/12/01/24ways/" title="24ways">24ways</a> (1)</li><li>November 28, 2008 -- <a href="http://cwash.org/2008/11/28/must-havesreferences-for-modern-java-ee-developers/" title="Must Haves/References For Modern Java EE Developers">Must Haves/References For Modern Java EE Developers</a> (1)</li><li>July 8, 2010 -- <a href="http://cwash.org/2010/07/08/transactions-part-1/" title="Transactions, Part 1">Transactions, Part 1</a> (0)</li><li>January 7, 2010 -- <a href="http://cwash.org/2010/01/07/eliminate-branching-if-statements-to-produce-better-code/" title="Eliminate Branching (IF Statements) to Produce Better Code">Eliminate Branching (IF Statements) to Produce Better Code</a> (0)</li><li>July 29, 2009 -- <a href="http://cwash.org/2009/07/29/what-id-tell-myself-about-design-if-i-were-just-beginning/" title="What I&#8217;d Tell Myself About Design If I Were Just Beginning">What I&#8217;d Tell Myself About Design If I Were Just Beginning</a> (5)</li><li>April 15, 2009 -- <a href="http://cwash.org/2009/04/15/osgi-ggity-giggity/" title="OSGi-ggity-Giggity">OSGi-ggity-Giggity</a> (4)</li><li>January 21, 2009 -- <a href="http://cwash.org/2009/01/21/16-apps-that-lessen-teh-suck-of-web-development-in-xp/" title="16 Apps That Lessen TEH SUCK of Web Development in XP">16 Apps That Lessen TEH SUCK of Web Development in XP</a> (8)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://cwash.org/2008/08/02/how-i-escape-the-reuse-trap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

