<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Art of Software Reuse &#187; iteration</title>
	<atom:link href="http://artofsoftwarereuse.com/tag/iteration/feed/" rel="self" type="application/rss+xml" />
	<link>http://artofsoftwarereuse.com</link>
	<description>Enabling Organizational Agility using Systematic Software Reuse</description>
	<lastBuildDate>Sun, 27 May 2012 03:44:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='artofsoftwarereuse.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/867ea3399412f403d50af9d95344fa89?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Art of Software Reuse &#187; iteration</title>
		<link>http://artofsoftwarereuse.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://artofsoftwarereuse.com/osd.xml" title="Art of Software Reuse" />
	<atom:link rel='hub' href='http://artofsoftwarereuse.com/?pushpress=hub'/>
		<item>
		<title>Why do we fear Continuous Refactoring?</title>
		<link>http://artofsoftwarereuse.com/2010/04/22/why-do-we-fear-continuous-refactoring/</link>
		<comments>http://artofsoftwarereuse.com/2010/04/22/why-do-we-fear-continuous-refactoring/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 23:54:27 +0000</pubDate>
		<dc:creator>vijaynarayanan</dc:creator>
				<category><![CDATA[agile]]></category>
		<category><![CDATA[continuous refactoring]]></category>
		<category><![CDATA[iteration]]></category>
		<category><![CDATA[refactoring]]></category>
		<category><![CDATA[software reuse]]></category>

		<guid isPermaLink="false">http://artofsoftwarereuse.com/?p=2279</guid>
		<description><![CDATA[There are so many reasons why continuously refactoring code is a good idea &#8211; in fact, it is a sound investment for the overall health of your codebase. So, what could be some reasons why we fear doing refactorings? what could be the impediments to making changes? In my experience, the #1 reason why developers [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=artofsoftwarereuse.com&#038;blog=7058737&#038;post=2279&#038;subd=softwarereuse&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are so many reasons why continuously refactoring code is a good idea &#8211; in fact, it is a <a href="http://artofsoftwarereuse.com/2010/04/10/continuous-refactoring-is-a-wise-investment/">sound investment </a>for the overall health of your codebase. So, what could be some reasons why we fear doing refactorings? what could be the impediments to making changes?</p>
<p>In my experience, the #1 reason why developers fear refactoring is the lack of automated regression tests. This is why Martin Fowler emphasizes the need for tests <strong><em>prior</em></strong> to pursuing refactorings in his seminal book <a href="http://www.amazon.com/Refactoring-Improving-Design-Existing-Code/dp/0201485672/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1271979598&amp;sr=8-1" target="_blank">Refactoring</a>. Without a comprehensive suite of tests, developers cannot be confident that changes to the code didn&#8217;t break existing functionality and it didn&#8217;t introduce new defects.</p>
<p>There are other reasons as well for fearing refactoring:</p>
<ul>
<li>Not enough time during development &#8211; this is such an often repeated reason for a variety of issues <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Here is the rub though: we learn most about the domain and the limitations of existing code with experience. This tends to happen at the &#8220;end&#8221; of an iteration or release cycle. Naturally, we don&#8217;t want to jeopardize our release to do refactorings. This is precisely why agile advocates the notion of continuous refactoring iteration after iteration. Your code reflects the state of the software (and the associated knowledge of the domain) at a snapshot in time. It is a work-in-progress &#8211; remaining that way till the product ceases to exist or be maintained.</li>
<li>Lack of disciplined effort to translate new domain knowledge into existing code. As a project proceeds, developers learn more about the domain and the gaps in their knowledge with respect to the domain. These gaps typically manifest themselves in various forms: needless abstractions, insufficient flexibility with known variations in the domain, and lack of domain-relevant concepts being modeled as first-class citizens.</li>
<li>Insufficient knowledge on using refactoring tools (e.g. using an IDE such as Eclipse, there are a plethora of refactorings can be implemented rapidly).</li>
<li>Lack of knowledge about refactoring tactics &#8211; moving methods, creating interfaces, replacing if..then logic etc. &#8211; that are necessary to keep a tidy, effective codebase</li>
<li>Unwillingness to improve the codebase on a continuous basis <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ul>
<br /> Tagged: <a href='http://artofsoftwarereuse.com/tag/agile/'>agile</a>, <a href='http://artofsoftwarereuse.com/tag/continuous-refactoring/'>continuous refactoring</a>, <a href='http://artofsoftwarereuse.com/tag/iteration/'>iteration</a>, <a href='http://artofsoftwarereuse.com/tag/refactoring/'>refactoring</a>, <a href='http://artofsoftwarereuse.com/tag/software-reuse/'>software reuse</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/softwarereuse.wordpress.com/2279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/softwarereuse.wordpress.com/2279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/softwarereuse.wordpress.com/2279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/softwarereuse.wordpress.com/2279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/softwarereuse.wordpress.com/2279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/softwarereuse.wordpress.com/2279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/softwarereuse.wordpress.com/2279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/softwarereuse.wordpress.com/2279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/softwarereuse.wordpress.com/2279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/softwarereuse.wordpress.com/2279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/softwarereuse.wordpress.com/2279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/softwarereuse.wordpress.com/2279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/softwarereuse.wordpress.com/2279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/softwarereuse.wordpress.com/2279/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=artofsoftwarereuse.com&#038;blog=7058737&#038;post=2279&#038;subd=softwarereuse&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://artofsoftwarereuse.com/2010/04/22/why-do-we-fear-continuous-refactoring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edf4a0cc88a15552fecbf78099c790ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vijay</media:title>
		</media:content>
	</item>
		<item>
		<title>Building Assets Iteratively &#8211; An Example</title>
		<link>http://artofsoftwarereuse.com/2010/04/13/building-assets-iteratively-an-example/</link>
		<comments>http://artofsoftwarereuse.com/2010/04/13/building-assets-iteratively-an-example/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 10:02:36 +0000</pubDate>
		<dc:creator>vijaynarayanan</dc:creator>
				<category><![CDATA[agile]]></category>
		<category><![CDATA[Reuse]]></category>
		<category><![CDATA[governance]]></category>
		<category><![CDATA[iteration]]></category>
		<category><![CDATA[SOA]]></category>
		<category><![CDATA[software reuse]]></category>
		<category><![CDATA[systematic reuse]]></category>

		<guid isPermaLink="false">http://artofsoftwarereuse.com/?p=2131</guid>
		<description><![CDATA[Building reusable assets iteratively helps your team in several ways: reduces technical and business risk, reduces time to market, and increases the odds of real-life usage across applications. In this post, I wanted to walk through an example of iteratively building a reusable asset. Our task was to create a suite of services for providing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=artofsoftwarereuse.com&#038;blog=7058737&#038;post=2131&#038;subd=softwarereuse&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Building reusable assets iteratively helps your team in several ways: reduces technical and business risk, reduces time to market, and increases the odds of real-life usage across applications. In this post, I wanted to walk through an example of iteratively building a reusable asset. Our task was to create a suite of services for providing core data such as customer data and product data to various internal applications. To support these services in production several non-functional capabilities were required. These capabilities needed to be reusable across services &#8211; i.e. we didn&#8217;t want to develop something that would only work with customer data and not product data. Note: this effort was before mature SOA governance tools started to appear &#8211; so if you are thinking &#8220;why did they build this?&#8221; &#8211; because it didn&#8217;t exist at that point in time <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><em>Iteration 1: </em>Simple logging to log requests, responses, errors</p>
<p><em>Iteration 2:</em> Configurable logging &#8211; ability to change logging levels without restarting the service container</p>
<p><em>Iteration 3:</em><strong> </strong>Ability to enable/disable service capabilities via a service interface &#8211; a web service end point that would turn on/off services (we had business reasons to support this capability)</p>
<p><em>Iteration 4:</em> Toggle service capabilities via a web interface &#8211; integrated functionality from Iteration3 to be able to perform the toggle via a browser-based front end application.</p>
<p><em>Iteration 5: </em>Get statistics about a service capability &#8211; usage metrics, distribution of error codes, etc. was available for every service capability.</p>
<p><em>Iteration 6: </em>Enable/disable HTTP endpoint &#8211; to enable/shut off access to a HTTP port that was listening to service requests.</p>
<p><em>Iteration 7:</em> Enable/disable JMS endpoint &#8211; to enable/shut off access to a JMS queue that was listening to  service requests.</p>
<p><em>Iteration 8:</em> Toggle transport endpoints via a web interface &#8211; integrate functionality from iteration 6 and 7 with our web based console application.</p>
<p><em>Iteration 9:</em> Get usage statistics filtered by consumer, date and time, and various other fields.</p>
<p><em>Iteration 10:</em> Integrate usage statistics querying with web based console application.</p>
<p>These iterations were executed alongside business functionality &#8211; the interesting aspect of this &#8211; and something that all agile methods emphasize &#8211; is that we <strong>learned </strong>from real-world service usage and troubleshooting in production. We didn&#8217;t have to dream up requirements &#8211; as we gained deeper knowledge of how services function in production, the needs emerged naturally. Coupled with reviewing logs/production statistics and interviews with service consumers we were able to prioritize the supportability tools that were needed.</p>
<br /> Tagged: <a href='http://artofsoftwarereuse.com/tag/agile/'>agile</a>, <a href='http://artofsoftwarereuse.com/tag/governance/'>governance</a>, <a href='http://artofsoftwarereuse.com/tag/iteration/'>iteration</a>, <a href='http://artofsoftwarereuse.com/tag/reuse/'>Reuse</a>, <a href='http://artofsoftwarereuse.com/tag/soa/'>SOA</a>, <a href='http://artofsoftwarereuse.com/tag/software-reuse/'>software reuse</a>, <a href='http://artofsoftwarereuse.com/tag/systematic-reuse/'>systematic reuse</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/softwarereuse.wordpress.com/2131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/softwarereuse.wordpress.com/2131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/softwarereuse.wordpress.com/2131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/softwarereuse.wordpress.com/2131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/softwarereuse.wordpress.com/2131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/softwarereuse.wordpress.com/2131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/softwarereuse.wordpress.com/2131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/softwarereuse.wordpress.com/2131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/softwarereuse.wordpress.com/2131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/softwarereuse.wordpress.com/2131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/softwarereuse.wordpress.com/2131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/softwarereuse.wordpress.com/2131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/softwarereuse.wordpress.com/2131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/softwarereuse.wordpress.com/2131/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=artofsoftwarereuse.com&#038;blog=7058737&#038;post=2131&#038;subd=softwarereuse&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://artofsoftwarereuse.com/2010/04/13/building-assets-iteratively-an-example/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edf4a0cc88a15552fecbf78099c790ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vijay</media:title>
		</media:content>
	</item>
		<item>
		<title>Just Enough Design For An Iteration</title>
		<link>http://artofsoftwarereuse.com/2009/10/11/just-enough-design-for-an-iteration/</link>
		<comments>http://artofsoftwarereuse.com/2009/10/11/just-enough-design-for-an-iteration/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 16:26:56 +0000</pubDate>
		<dc:creator>vijaynarayanan</dc:creator>
				<category><![CDATA[agile]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Planning]]></category>
		<category><![CDATA[iteration]]></category>
		<category><![CDATA[iterative]]></category>
		<category><![CDATA[roadmap]]></category>
		<category><![CDATA[software reuse]]></category>
		<category><![CDATA[systematic reuse]]></category>
		<category><![CDATA[user story]]></category>

		<guid isPermaLink="false">http://artofsoftwarereuse.com/?p=1416</guid>
		<description><![CDATA[You can practice minimal design to be effective with systematic reuse. The design needs to continuously look for opportunities to align iteration goals with your systematic reuse roadmap. Too many developers mistakenly think that adopting agile means abandoning design. This couldn’t be farther from the truth. You design whether you explicitly allocate time for it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=artofsoftwarereuse.com&#038;blog=7058737&#038;post=1416&#038;subd=softwarereuse&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can practice minimal design to be effective with systematic reuse. The design needs to continuously look for opportunities to align iteration goals with your systematic reuse roadmap. Too many developers mistakenly think that adopting agile means abandoning design. This couldn’t be farther from the truth. You design whether you explicitly allocate time for it or not. Your code will reflect the design and you will impact the technical debt for your codebase in one way, shape, or form. Implementing user stories and paying down technical debt should be your end goal and not avoiding design altogether.</p>
<p>The first priority is to design for meeting your iteration goals. Avoid designing for several weeks or months and surely avoid putting technical perfection ahead of delivering <em>real user</em> needs. You should design minimally. Just enough to take advantage of existing reusable components, identify new ones, and plan refactoring to existing code. Specifically this means:</p>
<ol>
<li>Keeping a list of short term and medium term business goals in mind when designing</li>
<li>Always looking for ways to make domain relevant software assets more reusable</li>
<li>You are aware of what distribution channels your business is looking to grow</li>
<li>Design reflects the domain as close as possible and that your reusable assets map to commonly occurring entities in your business domain</li>
<li>Value is placed on identifying the product lines that your business wants to invest in and evolving your reusable assets to mirror product line needs.</li>
<li>Design isn’t a pursuit of perfection but an iterative exercise in alignment with your domain.</li>
</ol>
<p>What you decide to encapsulate, abstract, and scale are all natural byproducts of this design approach. Rather than spend a lot of effort with big upfront design you can do <em>just enough </em>design.</p>
<p><strong>Like this post?</strong> Subscribe to <a href="http://feeds2.feedburner.com/SoftwareReuseInTheRealWorld">RSS feed</a> or get blog <a href="http://feedburner.google.com/fb/a/mailverify?uri=SoftwareReuseInTheRealWorld&amp;loc=en_US">updates via email</a>.</p>
<p style="text-align:right;"><strong> <a href="http://twitter.com/home?status=I just read: http://wp.me/ptCiB-mQ"><img title="tweet this" src="http://softwarereuse.files.wordpress.com/2009/10/twitter2.png?w=32&h=32" alt="tweet this" width="32" height="32" /></a> <a href="http://del.icio.us/post?url=http://wp.me/ptCiB-mQ&amp;title=Just Enough Design For An Iteration"><img title="del.icio.us:Just Enough Design For An Iteration" src="http://softwarereuse.files.wordpress.com/2009/10/dellicious.png?w=32&h=32" alt="add to del.icio.us" width="32" height="32" /></a></strong> <a href="http://www.facebook.com/sharer.php?u=http://wp.me/ptCiB-mQ&amp;title=Just Enough Design For An Iteration"><img title="facebook:Just Enough Design For An Iteration" src="http://softwarereuse.files.wordpress.com/2009/10/48x48.png?w=32&h=32" alt="post to facebook" width="32" height="32" /></a></p>
<br /> Tagged: agile, iteration, iterative, roadmap, software reuse, systematic reuse, user story <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/softwarereuse.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/softwarereuse.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/softwarereuse.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/softwarereuse.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/softwarereuse.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/softwarereuse.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/softwarereuse.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/softwarereuse.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/softwarereuse.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/softwarereuse.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/softwarereuse.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/softwarereuse.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/softwarereuse.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/softwarereuse.wordpress.com/1416/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=artofsoftwarereuse.com&#038;blog=7058737&#038;post=1416&#038;subd=softwarereuse&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://artofsoftwarereuse.com/2009/10/11/just-enough-design-for-an-iteration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edf4a0cc88a15552fecbf78099c790ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vijay</media:title>
		</media:content>

		<media:content url="http://softwarereuse.files.wordpress.com/2009/10/twitter2.png" medium="image">
			<media:title type="html">tweet this</media:title>
		</media:content>

		<media:content url="http://softwarereuse.files.wordpress.com/2009/10/dellicious.png" medium="image">
			<media:title type="html">del.icio.us:Just Enough Design For An Iteration</media:title>
		</media:content>

		<media:content url="http://softwarereuse.files.wordpress.com/2009/10/48x48.png" medium="image">
			<media:title type="html">facebook:Just Enough Design For An Iteration</media:title>
		</media:content>
	</item>
		<item>
		<title>Have a plan for every reusable software asset</title>
		<link>http://artofsoftwarereuse.com/2009/05/10/have-a-plan-for-every-reusable-software-asset/</link>
		<comments>http://artofsoftwarereuse.com/2009/05/10/have-a-plan-for-every-reusable-software-asset/#comments</comments>
		<pubDate>Sun, 10 May 2009 15:57:42 +0000</pubDate>
		<dc:creator>vijaynarayanan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Planning]]></category>
		<category><![CDATA[Reuse]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[agility]]></category>
		<category><![CDATA[iteration]]></category>
		<category><![CDATA[software reuse]]></category>
		<category><![CDATA[tactics]]></category>

		<guid isPermaLink="false">http://softwarereuse.wordpress.com/?p=119</guid>
		<description><![CDATA[Have a plan for every reusable asset. At a minimum the plan needs to address: The scope of the asset&#8217;s functionality for your immediate deliverable The asset&#8217;s place in within your product line The impact to your existing design and overall architecture Tentative road-map for evolving the reusable asset over several iterations or releases You [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=artofsoftwarereuse.com&#038;blog=7058737&#038;post=119&#038;subd=softwarereuse&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Have a plan for every reusable asset. At a minimum the plan needs to address:<a href="http://del.icio.us/post?url=http://softwarereuse.wordpress.com/2009/05/10/have-a-plan-for-every-reusable-software-asset/&amp;title=Have a plan for every reusable asset"><img class="size-full wp-image-473 alignright" title="plan" src="http://softwarereuse.files.wordpress.com/2009/05/plan.jpg?w=450" alt="plan"   /></a></p>
<ol>
<li>The scope of the asset&#8217;s functionality for your immediate deliverable</li>
<li>The asset&#8217;s place in within your product line</li>
<li>The impact to your existing design and overall architecture</li>
<li>Tentative road-map for evolving the reusable asset over several iterations or releases</li>
</ol>
<p>You don&#8217;t have to get answers for all these areas rightaway! The point is to think about them so you can make decisions on scope and effort. In the midst of an iteration there will be several questions about whether or not to invest time in refactoring or developing a feature. You can use this tiny list as a guide to help you make decisions on what to refactor or build and whether or not it is in line with your overall strategy.</p>
<p><strong>Like this post?</strong> Subscribe to <a href="http://feeds2.feedburner.com/SoftwareReuseInTheRealWorld">RSS feed</a> or get blog <a href="http://feedburner.google.com/fb/a/mailverify?uri=SoftwareReuseInTheRealWorld&amp;loc=en_US">updates via email</a>.</p>
<p style="text-align:right;"><strong><a href="http://del.icio.us/post?url=http://softwarereuse.wordpress.com/2009/05/10/have-a-plan-for-every-reusable-software-asset/&amp;title=Have a plan for every reusable asset"><img title="del.icio.us:Have a plan for every reusable asset" src="http://sunburntkamel.files.wordpress.com/2006/11/delicious.gif?w=450" alt="add to del.icio.us" /></a></strong>: <a href="http://digg.com/submit?url=http://softwarereuse.wordpress.com/2009/05/10/have-a-plan-for-every-reusable-software-asset/&amp;title=Have a plan for every reusable asset"><img title="Digg it:Have a plan for every reusable asset" src="http://sunburntkamel.files.wordpress.com/2006/11/digg.gif?w=450" alt="Digg it" /></a> : <a href="http://www.facebook.com/sharer.php?u=http://softwarereuse.wordpress.com/2009/05/10/have-a-plan-for-every-reusable-software-asset/&amp;title=Have a plan for every reusable asset"><img title="facebook:Have a plan for every reusable asset" src="http://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif?w=450" alt="post to facebook" /></a>: <a href="http://www.stumbleupon.com/submit?url=http://softwarereuse.wordpress.com/2009/05/10/have-a-plan-for-every-reusable-software-asset/&amp;title=Have a plan for every reusable asset"><img title="Stumble it:Have a plan for every reusable asset" src="http://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif?w=450" alt="Stumble It!" /></a> : <a href="http://reddit.com/submit?url=http://softwarereuse.wordpress.com/2009/05/10/have-a-plan-for-every-reusable-software-asset/&amp;title=Have a plan for every reusable asset"><img title="reddit:Have a plan for every reusable asset" src="http://sunburntkamel.files.wordpress.com/2006/11/reddit.gif?w=450" alt="" /></a> :</p>
<br /> Tagged: agile, agility, iteration, Planning, software reuse, tactics <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/softwarereuse.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/softwarereuse.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/softwarereuse.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/softwarereuse.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/softwarereuse.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/softwarereuse.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/softwarereuse.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/softwarereuse.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/softwarereuse.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/softwarereuse.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/softwarereuse.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/softwarereuse.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/softwarereuse.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/softwarereuse.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=artofsoftwarereuse.com&#038;blog=7058737&#038;post=119&#038;subd=softwarereuse&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://artofsoftwarereuse.com/2009/05/10/have-a-plan-for-every-reusable-software-asset/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/edf4a0cc88a15552fecbf78099c790ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vijay</media:title>
		</media:content>

		<media:content url="http://softwarereuse.files.wordpress.com/2009/05/plan.jpg" medium="image">
			<media:title type="html">plan</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/delicious.gif" medium="image">
			<media:title type="html">del.icio.us:Have a plan for every reusable asset</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/digg.gif" medium="image">
			<media:title type="html">Digg it:Have a plan for every reusable asset</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif" medium="image">
			<media:title type="html">facebook:Have a plan for every reusable asset</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif" medium="image">
			<media:title type="html">Stumble it:Have a plan for every reusable asset</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/reddit.gif" medium="image">
			<media:title type="html">reddit:Have a plan for every reusable asset</media:title>
		</media:content>
	</item>
	</channel>
</rss>
