<?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>Ken H. Judy &#187; software development</title>
	<atom:link href="http://judykat.com/ken-judy/category/software-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://judykat.com/ken-judy</link>
	<description>Scrum, XP, Management and the Ethics of Agile Software Development</description>
	<lastBuildDate>Sun, 22 Aug 2010 16:32:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Making an iteration/sprint burn up chart with Thoughtworks Studio Mingle</title>
		<link>http://judykat.com/ken-judy/making-daily-burnup-thoughtworks-studio-mingle/</link>
		<comments>http://judykat.com/ken-judy/making-daily-burnup-thoughtworks-studio-mingle/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 16:32:57 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[scrum]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[Agile software development]]></category>
		<category><![CDATA[project management]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[Thoughtworks Mingle]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://judykat.com/ken-judy/?p=1999</guid>
		<description><![CDATA[As I&#8217;ve said before, we use Thoughtworks Studio Mingle to track our backlogs. One thing Mingle has not provided for us in the time we&#8217;ve worked with it is a daily burn up. Kind of shocking. Last month, we migrated our instance to the EC2 cloud. I took advantage of that migration to un-cruft our [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;ve said before, we use <a href="http://www.thoughtworks-studios.com/mingle-agile-project-management">Thoughtworks Studio Mingle</a> to track our backlogs.</p>
<p>One thing Mingle has not provided for us in the time we&#8217;ve worked with it is a daily burn up. Kind of shocking.</p>
<p>Last month, <a href="http://judykat.com/ken-judy/installing-thoughtworks-mingle-amazon-cloud/">we migrated our instance to the EC2 cloud</a>. I took advantage of that migration to un-cruft our Mingle instance, apply the <a href="http://www.thoughtworks-studios.com/mingle/2.0/help/xp_template_2.0.html">XP template</a> and simplify cart types and states. </p>
<p>Now time to stop dumping data out of mingle to report to report status. Yes. Kind of shocking.</p>
<p>The first step was to track the data points we need for a burn up.</p>
<p>That involved creating a series of date fields to track the day on which a story moves from in analysis to ready for dev, in dev, in qa, ready for customer (QA done) and customer accepted.</p>
<p>We also need a way to have those dates recorded automatically as part of moving cards from one state to another.</p>
<p><a href="http://files.me.com/kenjudy/9vtkjf"><img alt="Mingle card transition" src="http://files.me.com/kenjudy/9vtkjf" title="Mingle card transition" class="alignleft" width="300" /></a>So we set up Mingle card transitions. </p>
<p>This replaces the drag and drop behavior of a card from one swim lane to another with a button link on the card. This a bummer for our product team but it allows us to script transitions to both change the status and set the appropriate date field.</p>
<div style="clear:both;"></div>
<p>Now to setup a burn up chart using Mingle charts and mql.</p>
<div style="background-color: black; color: white; white-space: pre; width: 550px; overflow: auto; padding: 5px; font-size: 11px; font-family: courier new,monospace;">
{% dashboard-panel %}<br />{% panel-heading %}Current iteration burnup{% panel-heading %}<br />{% panel-content %}<br />{{ <br />    data-series-chart  <br />    conditions: (&#8216;Type&#8217; = &#8216;Story&#8217; OR &#8216;Type&#8217; = &#8216;Defect&#8217; OR &#8216;Type&#8217; = &#8216;Task&#8217;) AND &#8216;Iteration &#8211; Scheduled&#8217; = (Current Iteration)  AND &#8216;Status&#8217; > &#8216;In Analysis&#8217;  AND &#8216;Status&#8217; is not &#8216;Deleted&#8217;  AND &#8216;Status&#8217; is not &#8216;Blocked&#8217; AND &#8216;Estimate&#8217; IS NOT NULL AND &#8216;Iteration &#8211; Analysis Completed&#8217; IS NOT NULL<br />    labels: SELECT DISTINCT &#8216;Date Estimated&#8217;<br />    x-title: Date<br />    x-labels-start: 2010-08-10<br />    x-labels-end: 2010-08-21<br />    y-title: Estimated Scope in Story Points<br />    show-start-label: false<br />    data-point-symbol: diamond<br />    data-labels: true<br />    chart-height: 500<br />    chart-width: 800<br />    plot-height: 375<br />    plot-width: 500<br />    trend-ignore: zeroes-at-end-and-last-value <br />    cumulative: true<br />    series: <br />    &#8211; label: Total Scope<br />      color: black<br />      data: SELECT &#8216;Date Estimated&#8217;, SUM(&#8216;Estimate&#8217;)<br />    &#8211; label: Development Complete<br />      color: yellow<br />      line-width: 1<br />      data: SELECT &#8216;Date Dev Complete&#8217;, SUM(&#8216;Estimate&#8217;) WHERE &#8216;Status&#8217; >= &#8216;Development Complete&#8217;<br />    &#8211; label: QA Complete<br />      color: orange<br />      line-width: 1<br />      data: SELECT &#8216;Date QA Complete&#8217;, SUM(&#8216;Estimate&#8217;) WHERE &#8216;Status&#8217; >= &#8216;QA Complete&#8217;<br />    &#8211; label: Accepted<br />      color: blue<br />      data: SELECT &#8216;Date Accepted&#8217;, SUM(&#8216;Estimate&#8217;) WHERE &#8216;Status&#8217; >= &#8216;Accepted&#8217;<br />}}<br />{% panel-content %}<br />{% dashboard-panel %}<br />{% dashboard-panel %}
</div>
<p>
<strong>Observations:</strong></p>
<ul>
<li>I had to hard code date start and date end in x-labels-start and x-labels-end but otherwise, I was able to use the project variable ‘Iteration – Scheduled’ = (Current Iteration) that&#8217;s part of the XP Template.</li>
<li>Burn up is accomplished by setting cumulative:true. Unfortunately, I can&#8217;t get trend lines to work as a result.</li>
</ul>
<p><strong>Here&#8217;s what the result looks like:</strong></p>
<p><a href="http://files.me.com/kenjudy/q0rbbe"><img alt="Burn up using Mingle data series chart" src="http://files.me.com/kenjudy/q0rbbe" title="Burn up using Mingle data series chart" class="aligncenter" width="550" height="383" /></a></p>
<p>This chart along with selected summary counts and tables allows us a real time dashboard of the health of our sprints.</p>
<p>As you can tell from the burn up, we have work to do improving flow in our iterations.</p>
<p>Anyway, reporting is a work in progress. As is everything.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Making%20an%20iteration%2Fsprint%20burn%20up%20chart%20with%20Thoughtworks%20Studio%20Mingle&amp;body=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmaking-daily-burnup-thoughtworks-studio-mingle%2F" title="email"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmaking-daily-burnup-thoughtworks-studio-mingle%2F&amp;partner=sociable" title="Print"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmaking-daily-burnup-thoughtworks-studio-mingle%2F&amp;title=Making%20an%20iteration%2Fsprint%20burn%20up%20chart%20with%20Thoughtworks%20Studio%20Mingle&amp;bodytext=As%20I%27ve%20said%20before%2C%20we%20use%20Thoughtworks%20Studio%20Mingle%20to%20track%20our%20backlogs.%0D%0A%0D%0AOne%20thing%20Mingle%20has%20not%20provided%20for%20us%20in%20the%20time%20we%27ve%20worked%20with%20it%20is%20a%20daily%20burn%20up.%20Kind%20of%20shocking.%0D%0A%0D%0ALast%20month%2C%20we%20migrated%20our%20instance%20to%20the%20EC2%20cloud." title="Digg"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmaking-daily-burnup-thoughtworks-studio-mingle%2F&amp;title=Making%20an%20iteration%2Fsprint%20burn%20up%20chart%20with%20Thoughtworks%20Studio%20Mingle" title="Reddit"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmaking-daily-burnup-thoughtworks-studio-mingle%2F&amp;title=Making%20an%20iteration%2Fsprint%20burn%20up%20chart%20with%20Thoughtworks%20Studio%20Mingle" title="StumbleUpon"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmaking-daily-burnup-thoughtworks-studio-mingle%2F&amp;title=Making%20an%20iteration%2Fsprint%20burn%20up%20chart%20with%20Thoughtworks%20Studio%20Mingle&amp;annotation=As%20I%27ve%20said%20before%2C%20we%20use%20Thoughtworks%20Studio%20Mingle%20to%20track%20our%20backlogs.%0D%0A%0D%0AOne%20thing%20Mingle%20has%20not%20provided%20for%20us%20in%20the%20time%20we%27ve%20worked%20with%20it%20is%20a%20daily%20burn%20up.%20Kind%20of%20shocking.%0D%0A%0D%0ALast%20month%2C%20we%20migrated%20our%20instance%20to%20the%20EC2%20cloud." title="Google Bookmarks"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmaking-daily-burnup-thoughtworks-studio-mingle%2F&amp;title=Making%20an%20iteration%2Fsprint%20burn%20up%20chart%20with%20Thoughtworks%20Studio%20Mingle&amp;notes=As%20I%27ve%20said%20before%2C%20we%20use%20Thoughtworks%20Studio%20Mingle%20to%20track%20our%20backlogs.%0D%0A%0D%0AOne%20thing%20Mingle%20has%20not%20provided%20for%20us%20in%20the%20time%20we%27ve%20worked%20with%20it%20is%20a%20daily%20burn%20up.%20Kind%20of%20shocking.%0D%0A%0D%0ALast%20month%2C%20we%20migrated%20our%20instance%20to%20the%20EC2%20cloud." title="del.icio.us"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmaking-daily-burnup-thoughtworks-studio-mingle%2F&amp;title=Making%20an%20iteration%2Fsprint%20burn%20up%20chart%20with%20Thoughtworks%20Studio%20Mingle&amp;source=Ken+H.+Judy+Scrum%2C+XP%2C+Management+and+the+Ethics+of+Agile+Software+Development&amp;summary=As%20I%27ve%20said%20before%2C%20we%20use%20Thoughtworks%20Studio%20Mingle%20to%20track%20our%20backlogs.%0D%0A%0D%0AOne%20thing%20Mingle%20has%20not%20provided%20for%20us%20in%20the%20time%20we%27ve%20worked%20with%20it%20is%20a%20daily%20burn%20up.%20Kind%20of%20shocking.%0D%0A%0D%0ALast%20month%2C%20we%20migrated%20our%20instance%20to%20the%20EC2%20cloud." title="LinkedIn"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmaking-daily-burnup-thoughtworks-studio-mingle%2F&amp;t=Making%20an%20iteration%2Fsprint%20burn%20up%20chart%20with%20Thoughtworks%20Studio%20Mingle" title="Facebook"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Making%20an%20iteration%2Fsprint%20burn%20up%20chart%20with%20Thoughtworks%20Studio%20Mingle%20-%20http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmaking-daily-burnup-thoughtworks-studio-mingle%2F" title="Twitter"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://judykat.com/ken-judy/making-daily-burnup-thoughtworks-studio-mingle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More well-wrought crap lovingly crafted for your disposal</title>
		<link>http://judykat.com/ken-judy/wellwrought-lovingly-crafted-disposal/</link>
		<comments>http://judykat.com/ken-judy/wellwrought-lovingly-crafted-disposal/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 00:47:31 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[software development]]></category>
		<category><![CDATA[agile]]></category>

		<guid isPermaLink="false">http://judykat.com/ken/?p=1355</guid>
		<description><![CDATA[- or &#8211; building the wrong thing, really, really well. The epitaph of many agile teams. You can optimize your construction practices as much as you want but if there is no discernible need for what you&#8217;re building&#8230; The goal is not to build crap well. It is to find a way each day to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>- or &#8211; building the wrong thing, really, really well.</strong></p>
<p>The epitaph of many agile teams.</p>
<p><img alt="Antique Car" src="http://idisk.mac.com/kenjudy-Public/blogimages/iStock_000007457016XSmall.jpg" title="Antique Car" class="alignleft" width="350" />You can optimize your construction practices as much as you want but if there is no discernible need for what you&#8217;re building&#8230; </p>
<p>The goal is not to build crap well. It is to find a way each day to do less and less crap and more and more not crap.</p>
<p>If this were easy, there&#8217;d be a lot more software that people should really get there hands on.</p>
<p>Let&#8217;s all look in the mirror on that one&#8230;</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=More%20well-wrought%20crap%20lovingly%20crafted%20for%20your%20disposal&amp;body=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fwellwrought-lovingly-crafted-disposal%2F" title="email"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fwellwrought-lovingly-crafted-disposal%2F&amp;partner=sociable" title="Print"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fwellwrought-lovingly-crafted-disposal%2F&amp;title=More%20well-wrought%20crap%20lovingly%20crafted%20for%20your%20disposal&amp;bodytext=-%20or%20-%20building%20the%20wrong%20thing%2C%20really%2C%20really%20well.%0D%0A%0D%0AThe%20epitaph%20of%20many%20agile%20teams.%0D%0A%0D%0AYou%20can%20optimize%20your%20construction%20practices%20as%20much%20as%20you%20want%20but%20if%20there%20is%20no%20discernible%20need%20for%20what%20you%27re%20building...%20%0D%0A%0D%0AThe%20goal%20is%20not%20to%20build" title="Digg"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fwellwrought-lovingly-crafted-disposal%2F&amp;title=More%20well-wrought%20crap%20lovingly%20crafted%20for%20your%20disposal" title="Reddit"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fwellwrought-lovingly-crafted-disposal%2F&amp;title=More%20well-wrought%20crap%20lovingly%20crafted%20for%20your%20disposal" title="StumbleUpon"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fwellwrought-lovingly-crafted-disposal%2F&amp;title=More%20well-wrought%20crap%20lovingly%20crafted%20for%20your%20disposal&amp;annotation=-%20or%20-%20building%20the%20wrong%20thing%2C%20really%2C%20really%20well.%0D%0A%0D%0AThe%20epitaph%20of%20many%20agile%20teams.%0D%0A%0D%0AYou%20can%20optimize%20your%20construction%20practices%20as%20much%20as%20you%20want%20but%20if%20there%20is%20no%20discernible%20need%20for%20what%20you%27re%20building...%20%0D%0A%0D%0AThe%20goal%20is%20not%20to%20build" title="Google Bookmarks"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fwellwrought-lovingly-crafted-disposal%2F&amp;title=More%20well-wrought%20crap%20lovingly%20crafted%20for%20your%20disposal&amp;notes=-%20or%20-%20building%20the%20wrong%20thing%2C%20really%2C%20really%20well.%0D%0A%0D%0AThe%20epitaph%20of%20many%20agile%20teams.%0D%0A%0D%0AYou%20can%20optimize%20your%20construction%20practices%20as%20much%20as%20you%20want%20but%20if%20there%20is%20no%20discernible%20need%20for%20what%20you%27re%20building...%20%0D%0A%0D%0AThe%20goal%20is%20not%20to%20build" title="del.icio.us"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fwellwrought-lovingly-crafted-disposal%2F&amp;title=More%20well-wrought%20crap%20lovingly%20crafted%20for%20your%20disposal&amp;source=Ken+H.+Judy+Scrum%2C+XP%2C+Management+and+the+Ethics+of+Agile+Software+Development&amp;summary=-%20or%20-%20building%20the%20wrong%20thing%2C%20really%2C%20really%20well.%0D%0A%0D%0AThe%20epitaph%20of%20many%20agile%20teams.%0D%0A%0D%0AYou%20can%20optimize%20your%20construction%20practices%20as%20much%20as%20you%20want%20but%20if%20there%20is%20no%20discernible%20need%20for%20what%20you%27re%20building...%20%0D%0A%0D%0AThe%20goal%20is%20not%20to%20build" title="LinkedIn"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fwellwrought-lovingly-crafted-disposal%2F&amp;t=More%20well-wrought%20crap%20lovingly%20crafted%20for%20your%20disposal" title="Facebook"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=More%20well-wrought%20crap%20lovingly%20crafted%20for%20your%20disposal%20-%20http%3A%2F%2Fjudykat.com%2Fken-judy%2Fwellwrought-lovingly-crafted-disposal%2F" title="Twitter"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://judykat.com/ken-judy/wellwrought-lovingly-crafted-disposal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agile software development: business value and human values</title>
		<link>http://judykat.com/ken-judy/agile-software-development-business-value-human-values/</link>
		<comments>http://judykat.com/ken-judy/agile-software-development-business-value-human-values/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 19:36:08 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[software development]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[Agile Manifesto]]></category>
		<category><![CDATA[Agile software development]]></category>
		<category><![CDATA[Bob Martin]]></category>
		<category><![CDATA[Martin Fowler]]></category>

		<guid isPermaLink="false">http://judykat.com/ken-judy/?p=1881</guid>
		<description><![CDATA[I&#8217;ve written about agile software development as an ongoing, perhaps excruciatingly gradual, conversation on the definition of value. We need a place at the conference table. But we also need a forum and language to discuss the human values behind the way we aspire to work. “&#8230; I&#8217;ve got to have more experience with junior [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve written about agile software development as <a href="http://judykat.com/ken-judy/agile-software-development-value/">an ongoing, perhaps excruciatingly gradual, conversation on the definition of value.</a></p>
<p>We need a place at the conference table. But we also need a forum and language to discuss the human values behind the way we aspire to work.</p>
<blockquote><p>“&#8230; I&#8217;ve got to have more experience with junior [children] than a lot of the people who are telling me what I should be doing with them&#8230; I think I could help bring a lot to it and nobody ever asks&#8230;They just go ahead and proclaim and we have to follow.” -– Anonymous Teacher</p></blockquote>
<p>This quote is from a study on the failure of education reform movements, called <a href="http://www.amazon.com/gp/product/080773554X?ie=UTF8&#038;tag=judykatcom-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=080773554X">What&#8217;s Worth Fighting for in Your School?</a><img src="http://www.assoc-amazon.com/e/ir?t=judykatcom-20&#038;l=as2&#038;o=1&#038;a=080773554X" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, by Andy Hargreaves &#038; Michael Fullan. </p>
<p>Reform often fails because reformers don&#8217;t engage individual contributors in the goals. Rather, they impose practices upon them. The attempt to improve the classroom actually makes the teacher less effective and sets them against reform.</p>
<p>Sound familiar?</p>
<p><a href="http://www.flickr.com/photos/judykat/4677707992/" title="Cape Kiwanda, Pacific City, Oregon by kenjudy, on Flickr"><img src="http://farm5.static.flickr.com/4024/4677707992_269946f85f_m.jpg" width="300"  alt="Cape Kiwanda, Pacific City, Oregon" /></a>The landscape of broken agile adoptions is composed of attempts to make software development &#8220;faster, cheaper, better&#8221; without embracing the experience and creativity of our core asset, the software developer.</p>
<p>We need to focus a little less on specific practices and a little more on building consensus among our peers over a shared set of values which despite human fallibility and economic necessity inspire us to do good work.  </p>
<p>The <a href="http://agilemanifesto.org/">Manifesto for Agile Software Development</a> is an attempt by thought leaders to capture these principles. As with all documents, it is an artifact of a moment created to address that moment&#8217;s opportunities and constraints.</p>
<p>If we take the &#8220;Manifesto&#8221; as terms and conditions, something to read and sign before we advance to practice then we glide over the surface of things. It&#8217;s not what was written but why people felt the need to write it.</p>
<p>If we take the &#8220;Manifesto&#8221; as a complete expression, then as happens with codes of ethics, we will use its silence on certain concerns and nuance in the interpretation words themselves to excuse actions by others and even justify the harm we do ourselves.</p>
<p>The &#8220;Manifesto&#8221;, as with any other artifact in agile, is simply a reminder to have a conversation.</p>
<p><a href="http://martinfowler.com/bliki/SmutOnRails.html">Martin Fowler discussing gender disparities in the industry</a>:</p>
<blockquote><p> How about a community where women are valued for their ability to program and not by the thickness of their skin? How about a community that edgily pushes new boundaries without reinforcing long running evils? </p></blockquote>
<p><a href="http://blog.objectmentor.com/articles/2008/08/14/quintessence-the-fifth-element-for-the-agile-manifesto/">Bob Martin lobbying to add a fifth principle to the Manifesto itself</a>:</p>
<blockquote><p>&#8220;We value craftsmanship over execution” (or “craftsmanship over crap”)</p></blockquote>
<p>But the discussion isn&#8217;t between thought leaders. It involves every practitioner.</p>
<p>We are here to create long-term value. To build businesses, careers and an industry. This is a labor of years not the current iteration.</p>
<p>If your concerns are entirely short term, then there are less disingenuous ways to extract wealth from people&#8217;s effort than to claim you are &#8220;agile&#8221;.</p>
<p>If you are agile, then you are accountable to the creativity and well-being of the teams with whom you collaborate. You are accountable for the security of end users and the benefit they derive from the software you create.</p>
<p>We are not tools. We are knowledge workers. What we create carries with it the way it was created. What we create is in some profound way us.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Agile%20software%20development%3A%20business%20value%20and%20human%20values&amp;body=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-business-value-human-values%2F" title="email"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-business-value-human-values%2F&amp;partner=sociable" title="Print"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-business-value-human-values%2F&amp;title=Agile%20software%20development%3A%20business%20value%20and%20human%20values&amp;bodytext=I%27ve%20written%20about%20agile%20software%20development%20as%20an%20ongoing%2C%20perhaps%20excruciatingly%20gradual%2C%20conversation%20on%20the%20definition%20of%20value.%0D%0A%0D%0AWe%20need%20a%20place%20at%20the%20conference%20table.%20But%20we%20also%20need%20a%20forum%20and%20language%20to%20discuss%20the%20human%20values%20behind" title="Digg"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-business-value-human-values%2F&amp;title=Agile%20software%20development%3A%20business%20value%20and%20human%20values" title="Reddit"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-business-value-human-values%2F&amp;title=Agile%20software%20development%3A%20business%20value%20and%20human%20values" title="StumbleUpon"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-business-value-human-values%2F&amp;title=Agile%20software%20development%3A%20business%20value%20and%20human%20values&amp;annotation=I%27ve%20written%20about%20agile%20software%20development%20as%20an%20ongoing%2C%20perhaps%20excruciatingly%20gradual%2C%20conversation%20on%20the%20definition%20of%20value.%0D%0A%0D%0AWe%20need%20a%20place%20at%20the%20conference%20table.%20But%20we%20also%20need%20a%20forum%20and%20language%20to%20discuss%20the%20human%20values%20behind" title="Google Bookmarks"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-business-value-human-values%2F&amp;title=Agile%20software%20development%3A%20business%20value%20and%20human%20values&amp;notes=I%27ve%20written%20about%20agile%20software%20development%20as%20an%20ongoing%2C%20perhaps%20excruciatingly%20gradual%2C%20conversation%20on%20the%20definition%20of%20value.%0D%0A%0D%0AWe%20need%20a%20place%20at%20the%20conference%20table.%20But%20we%20also%20need%20a%20forum%20and%20language%20to%20discuss%20the%20human%20values%20behind" title="del.icio.us"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-business-value-human-values%2F&amp;title=Agile%20software%20development%3A%20business%20value%20and%20human%20values&amp;source=Ken+H.+Judy+Scrum%2C+XP%2C+Management+and+the+Ethics+of+Agile+Software+Development&amp;summary=I%27ve%20written%20about%20agile%20software%20development%20as%20an%20ongoing%2C%20perhaps%20excruciatingly%20gradual%2C%20conversation%20on%20the%20definition%20of%20value.%0D%0A%0D%0AWe%20need%20a%20place%20at%20the%20conference%20table.%20But%20we%20also%20need%20a%20forum%20and%20language%20to%20discuss%20the%20human%20values%20behind" title="LinkedIn"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-business-value-human-values%2F&amp;t=Agile%20software%20development%3A%20business%20value%20and%20human%20values" title="Facebook"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Agile%20software%20development%3A%20business%20value%20and%20human%20values%20-%20http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-business-value-human-values%2F" title="Twitter"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://judykat.com/ken-judy/agile-software-development-business-value-human-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agile software development and &#8220;value&#8221;</title>
		<link>http://judykat.com/ken-judy/agile-software-development-value/</link>
		<comments>http://judykat.com/ken-judy/agile-software-development-value/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 18:13:24 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[software development]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[Agile software development]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[Social Issues]]></category>
		<category><![CDATA[software ethics]]></category>
		<category><![CDATA[Software project management]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://judykat.com/ken-judy/?p=1821</guid>
		<description><![CDATA[As advocates of agile software development we focus on practices. The hype on those practices is they produce software, &#8220;faster, cheaper, better.&#8221; And we sell our efforts with the promise of, &#8220;delivering value.&#8221; We speak of value as if the definition is shared, self-evident, contained within our backlogs and measured by our burn ups. At [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://judykat.com/ken-judy/agile-software-development-value/release-burndown-by-kjudy/"><img alt="Release Burndown" src="http://idisk.mac.com/kenjudy-Public/blogimages/releaseburndown-small.png" title="Release Burndown" class="alignright" width="250" height="188" /></a>As advocates of agile software development we focus on practices. </p>
<p>The hype on those practices is they produce software, &#8220;faster, cheaper, better.&#8221; And we sell our efforts with the promise of, &#8220;delivering value.&#8221;</p>
<p>We speak of value as if the definition is shared, self-evident, contained within our backlogs and measured by our burn ups.</p>
<p>At the same time we minimize the hard and long the struggle to achieve mastery, identify and address a material need, and sustain creativity and quality.</p>
<p>So, we win the opportunity to labor with our teams to incrementally deliver potentially shippable units of code to stated business priorities. </p>
<p>When those priorities are pointless, so is the software.</p>
<p>When those priorities are tactical and subjective, the values behind agile practice &#8212; sustainable effort, maintainable code, self-directed teams, collaboration and trust &#8212; become irrelevant. </p>
<p>The truth is there are definitions of &#8220;value&#8221; that sell us out whether or not material success accrues to someone as a result of the software development effort.</p>
<p>And so, an agile adoption that is true to its participants is an ongoing, perhaps excruciatingly gradual, but substantive conversation with the larger organization on the definition of value.</p>
<p>A set of practices is only companion to the human values that give our work meaning.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Agile%20software%20development%20and%20%22value%22&amp;body=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-value%2F" title="email"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-value%2F&amp;partner=sociable" title="Print"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-value%2F&amp;title=Agile%20software%20development%20and%20%22value%22&amp;bodytext=As%20advocates%20of%20agile%20software%20development%20we%20focus%20on%20practices.%20%0D%0A%0D%0AThe%20hype%20on%20those%20practices%20is%20they%20produce%20software%2C%20%22faster%2C%20cheaper%2C%20better.%22%20And%20we%20sell%20our%20efforts%20with%20the%20promise%20of%2C%20%22delivering%20value.%22%0D%0A%0D%0AWe%20speak%20of%20value%20as%20if%20the%20def" title="Digg"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-value%2F&amp;title=Agile%20software%20development%20and%20%22value%22" title="Reddit"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-value%2F&amp;title=Agile%20software%20development%20and%20%22value%22" title="StumbleUpon"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-value%2F&amp;title=Agile%20software%20development%20and%20%22value%22&amp;annotation=As%20advocates%20of%20agile%20software%20development%20we%20focus%20on%20practices.%20%0D%0A%0D%0AThe%20hype%20on%20those%20practices%20is%20they%20produce%20software%2C%20%22faster%2C%20cheaper%2C%20better.%22%20And%20we%20sell%20our%20efforts%20with%20the%20promise%20of%2C%20%22delivering%20value.%22%0D%0A%0D%0AWe%20speak%20of%20value%20as%20if%20the%20def" title="Google Bookmarks"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-value%2F&amp;title=Agile%20software%20development%20and%20%22value%22&amp;notes=As%20advocates%20of%20agile%20software%20development%20we%20focus%20on%20practices.%20%0D%0A%0D%0AThe%20hype%20on%20those%20practices%20is%20they%20produce%20software%2C%20%22faster%2C%20cheaper%2C%20better.%22%20And%20we%20sell%20our%20efforts%20with%20the%20promise%20of%2C%20%22delivering%20value.%22%0D%0A%0D%0AWe%20speak%20of%20value%20as%20if%20the%20def" title="del.icio.us"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-value%2F&amp;title=Agile%20software%20development%20and%20%22value%22&amp;source=Ken+H.+Judy+Scrum%2C+XP%2C+Management+and+the+Ethics+of+Agile+Software+Development&amp;summary=As%20advocates%20of%20agile%20software%20development%20we%20focus%20on%20practices.%20%0D%0A%0D%0AThe%20hype%20on%20those%20practices%20is%20they%20produce%20software%2C%20%22faster%2C%20cheaper%2C%20better.%22%20And%20we%20sell%20our%20efforts%20with%20the%20promise%20of%2C%20%22delivering%20value.%22%0D%0A%0D%0AWe%20speak%20of%20value%20as%20if%20the%20def" title="LinkedIn"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-value%2F&amp;t=Agile%20software%20development%20and%20%22value%22" title="Facebook"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Agile%20software%20development%20and%20%22value%22%20-%20http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-software-development-value%2F" title="Twitter"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://judykat.com/ken-judy/agile-software-development-value/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Thoughtworks Mingle on the Amazon cloud</title>
		<link>http://judykat.com/ken-judy/installing-thoughtworks-mingle-amazon-cloud/</link>
		<comments>http://judykat.com/ken-judy/installing-thoughtworks-mingle-amazon-cloud/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 18:59:39 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[software development]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Amazon Elastic Compute Cloud]]></category>
		<category><![CDATA[Amazon Web Services]]></category>
		<category><![CDATA[AWS console]]></category>
		<category><![CDATA[EC2]]></category>
		<category><![CDATA[Elastic IP service]]></category>
		<category><![CDATA[Elastic Server]]></category>
		<category><![CDATA[Elastic server manager]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mingle]]></category>
		<category><![CDATA[PostgreSQL]]></category>
		<category><![CDATA[project management tool]]></category>
		<category><![CDATA[Thoughtworks]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://judykat.com/ken-judy/?p=1789</guid>
		<description><![CDATA[I had to install an instance of Thoughtwork Studio&#8217;s agile project management tool, Mingle. My favorite tracking tool is Excel but such is life. The instance does not need to be highly-available but I don&#8217;t want to risk data loss and I want to minimize the cost of hosting. So I decided to put the [...]]]></description>
			<content:encoded><![CDATA[<p>I had to install an instance of Thoughtwork Studio&#8217;s agile project management tool, <a href="http://www.thoughtworks-studios.com/mingle-agile-project-management">Mingle</a>. My favorite tracking tool is Excel but such is life.</p>
<p>The instance does not need to be highly-available but I don&#8217;t want to risk data loss and I want to minimize the cost of hosting. So I decided to put the instance out on the Amazon cloud.</p>
<p>What follows are instructions targeted to relative newbies to PostgreSQL and Amazon Web Services (AWS) but some basic knowledge of Unix. I&#8217;ve tried to give credit wherever I based what I did on content from the web.</p>
<p>The whole process takes several hours with a clean set of notes but took me a couple days of trial and error to get through.</p>
<p><strong>Create and deploy an Amazon Machine Image (AMI)</strong></p>
<p>I used <a href="http://elasticserver.com/">Elastic Server</a> to build a clean Ubuntu Linux AMI with the recommended versions of Java JDK (1.5) and PostgreSQL (8.3). Through Elastic Server site I deployed the AMI to a new small instance in our Amazon EC2 Account. </p>
<p><em>Note: An implementation detail of the Elastic Server image is that the shell account user is different than the PostgreSQL user account so in the following instructions, most bash shell comands run as postgres or root using the su command.</em></p>
<p><strong>Assign an Amazon Elastic IP to the instance and register a domain name to that IP</strong></p>
<p>Since this is the cloud, I can&#8217;t rely on the permanence of the instance. Amazon supplies the Elastic IP service to ensure you have a consistent way to reference your sites regardless of the particular instance the site is hosted on.</p>
<p>Once the AMI was running on a new small instance within our EC2 account, I logged into our AWS console and created and assigned an Elastic IP address to the instance and registered a DNS entry against that IP address. </p>
<p><strong>Move PostgreSQL data to an Elastic Block Store (EBS) volume</strong></p>
<p>The small instance created by Elastic Server uses the instance-store for the boot volume. This is fine for the AMI itself and for the Mingle installation which is easy to install and rev but not for the database storage itself.</p>
<p>We decided the best approach for us was to locate the data store on an EBS volume with copies of custom config files and scripts. We also wanted to create nightly database dumps on that volume. Finally, we&#8217;d enable snapshots of the EBS volume giving us a stable store with convenient backup and restorals.</p>
<p><strong>Create an EBS Volume (AWS Management Console)</strong></p>
<ol>
<li>Create volume 10GB <em>in the same zone as the instance</em></li>
<li>Create snapshot of volume</li>
<li>Attach the volume to the instance (button in console UI volume tab &#8211; takes a while&#8230;)</li>
</ol>
<p><strong>Format and mount the volume from within the instance</strong></p>
<p>Requirements:  An attached EBS Volume</p>
<p>Assumptions: </p>
<ul>
<li>Your EBS volume is: /dev/sdf and you are creating one volume. This mount point is listed in the AWS console in the Attachment Information column of the EBS volumes console.</li>
<li>You want to mount the volume at /data</li>
</ul>
<ol>
<li>SSH into your instance. AWS Console -> Instances -> select the specific instances -> Instance Management -> Connect -> terminal opens login as cftuser</li>
<li>type sudo fdisk /dev/sdf</li>
<li>At &#8220;Command&#8221; type n</li>
<li>At &#8220;Primary or Extended&#8221; type p</li>
<li>At Number of volumes type 1</li>
<li>Press &#8220;Return&#8221; two times to accept the default cylinder values</li>
<li>Press &#8220;w&#8221; to write the partition table and exit</li>
<li>Type sudo &#8220;mkfs.ext3 /dev/sdm&#8221; to format an ext3 file system</li>
<li>Type sudo &#8220;mkdir /data&#8221; this creates a directory called data, which we will use to mount the new volume.</li>
<li>Type sudo mount /dev/sdm /data to mount the drive</li>
<li>(optional) edit /etc/fstab to add the drive mount to automount at boot, this will not automaticly attach the volume to your instance at boot, you need to do that through the RightScale interface or maybe i&#8217;ll write another tutorial on that later.</li>
<ul>
<li>sudo vi /etc/fstab</li>
<li>add a line: /dev/sdf /data   ext3    defaults 0 0</li>
<li>type :wq and type return</li>
</ul>
</ol>
<p>Instructions based on notes from <a href="https://learningspaces.njit.edu/content/how-format-and-mount-ebs-volume">https://learningspaces.njit.edu/content/how-format-and-mount-ebs-volume</a></p>
<p><strong>Move PostgreSQL data directory in PostgreSQL config</strong></p>
<ol>
<li>Stop the PostgreSQL server sudo /etc/init.d/PostgreSQL-8.3 stop</li>
<li>Edit PostgreSQL.conf sudo /etc/PostgreSQL/8.3/main/PostgreSQL.conf</li>
<ul>
<li>Change from: data_directory = &#8216;/var/lib/PostgreSQL/8.3/main&#8217;</li>
<li>To: data_directory = &#8216;/data/PostgreSQL/&#8217;</li>
</ul>
<li>sudo cp -r /var/lib/PostgreSQL/8.3/main /data</li>
<li>sudo mv main PostgreSQL</li>
<li>sudo chown -R postgres:postgres PostgreSQL/</li>
<li>move main directory sudo mv /var/lib/PostgreSQL/8.3/main /var/lib/PostgreSQL/8.3/data_bak</li>
<li>restart server sudo /etc/init.d/PostgreSQL-8.3 start</li>
<li>copy this change to /data/config_copies</li>
</ol>
<p><strong>Basic PostgreSQL server setup</strong></p>
<p>Change the PostgreSQL postgres user password in order to access the server. As the postgres Linux user execute the psql command:</p>
<ol>
<li>sudo -u postgres psql template1</li>
<li>\password postgres</li>
<li>ctrl-D (to exit posgreSQL prompt)</li>
</ol>
<p>Based on notes from <a href="https://help.ubuntu.com/community/PostgreSQL">https://help.ubuntu.com/community/PostgreSQL</a></p>
<p><strong>Create a PostgreSQL database called &#8220;mingle&#8221;</strong></p>
<ul>
<li>sudo -u postgres createdb mingle</li>
</ul>
<p><strong>Turn off the software firewall via the Elastic Server Management Console on your instance at port 2999</strong></p>
<p>Mingle needs access to traffic across multiple ports. These are prohibited by rule by the ubuntu firewall. In a situation where you need to lock this server down, you&#8217;ll have to figure out what specific ports to open traffic to. I just turned off the Ubuntu firewall. Our instance of mingle ain&#8217;t that mission critical.</p>
<ol>
<li>Open up access to tcp traffic to port 2999 in AWS.</li>
<ul>
<li>Enable port 2999 in the security group to which your instance is assigned in AWS. This is listed in the Security Group column of the instance list in the console. Go to Security Groups, select the group and add a rule to allow tcp traffic on port 2999.</li>
</ul>
<li>Browse to Elastic server manager and turn off firewall http://<instance address>:2999/firewall</li>
</ol>
<p><strong>Install Mingle <a href="http://www.thoughtworks-studios.com/mingle/3.1/help/installing_mingle.html">http://www.thoughtworks-studios.com/mingle/3.1/help/installing_mingle.html</a></strong></p>
<ol>
<li><a href="http://www.thoughtworks-studios.com/user/register&#038;destination=forms/form/mingle/download">Download Mingle</a></li>
<li>secure copy the install package to your small intance:<br />
scp mingle_unix_<version-build>.tar cftuser@<instance elastic ip or domain name>:~</li>
<li>sudo mv mingle_unix_<version-build>.tar  /usr/local</li>
<li>cd /usr/local</li>
<li>sudo tar -xvf mingle_unix_<version-build>.tar</li>
<li>sudo ln -s mingle_3_1/ mingle</li>
<li>sudo ln -s /usr/local/mingle/MingleServer /usr/local/bin/MingleServer</li>
<li>sudo mkdir /home/mingle</li>
<li>sudo mkdir /home/mingle/data</li>
<li>sudo chown cftuser /home/mingle</li>
<li>sudo chown cftuser /home/mingle/data</li>
<li>Edit the mingle config to set the swap directory and to run on port 80</li>
<p><code><br />
-Dmingle.swapDir=/home/mingle/data/tmp<br />
-Dmingle.appContext=/<br />
-Dmingle.memcachedPort=11211<br />
-Dmingle.port=80<br />
-Dmingle.logDir=/usr/local/log<br />
-Dmingle.memcachedHost=127.0.0.1<br />
</code></p>
<li>Start the instance (see below) and wait for the server to startup &#8211; takes minutes</li>
</ol>
<p><strong>Starting Mingle</strong>: sudo MingleServer &#8211;mingle.dataDir=/home/mingle/data start</p>
<p><strong>Stopping Mingle</strong>: sudo MingleServer stop</p>
<p><strong>Run the Mingle setup (refer to <a href="http://www.thoughtworks-studios.com/mingle/3.1/help/welcome_to_mingle.html">thoughtworks studio help</a>)</strong></p>
<ol>
<li>Browse to the server</li>
<li>Run the install wizard</li>
<li>Create your first user</li>
<li>Enter your license key</li>
</ol>
<p><strong>Manually managing dumps of the mingle database</strong></p>
<ul>
<li>Dumping a single database (from cftuser folder)</li>
<ul>
<li>sudo -u postgres /usr/bin/pg_dump &#8211;create &#8211;oids &#8211;format=c &#8211;verbose &#8211;file=&#8221;dump/mingle.backup&#8221; mingle</li>
</ul>
<li>Renaming the mingle database</li>
<ul>
<li>Stop the mingle server: sudo MingleServer stop</li>
<li>sudo -u postgres psql template1</li>
<li>ALTER DATABASE mingle RENAME TO mingleback</li>
</ul>
<li>Dropping the mingle database</li>
<ul>
<li>sudo -u postgres /usr/bin/dropdb -i -e mingleback</li>
</ul>
<li>Restoring single database</li>
<ul>
<li>sudo -u postgres createdb mingle</li>
<li>sudo -u postgres /usr/bin/pg_restore &#8211;create &#8211;verbose &#8211;dbname=mingle dump/mingle.backup</li>
</ul>
</ul>
<p><strong>Setting up a schedule cron job to dump the mingle database nightly at 7pm</strong></p>
<ol>
<li>Create a backup script and place it in /data named backupmingledb.sh</li>
<p><code><br />
	#!/bin/sh</p>
<p>	#Based on PostgreSQL DUMP RECIPE by Frederik Dannemare<br />
	# Must run as postgres user!</p>
<p>       # Script to automate database backups onto the EBS volume<br />
       # at /data/backupmingledb.sh with owner group postgres (<br />
       # dump dir = /data/database_backups/ again owner/group postgres<br />
       # entered as crontab for postgres user </p>
<p>	export PGPASSWORD=<insert the postgres password here><br />
	export PATH=$PATH:usr/bin<br />
	DATE=`date +%y%m%d-%H%M`</p>
<p>	echo "Beginning to dump mingle database..."<br />
	DUMP_DIR=/data/database_backups/<br />
	DUMP_FILE=mingledump-$DATE.backup<br />
	pg_dump --username=postgres --create --oids --format=c --verbose --file="$DUMP_DIR$DUMP_FILE" mingle 2> /$DUMP_DIR/pg_dump.out<br />
	echo "Mingle database has been dumped to $DUMP_DIR$DUMP_FILE.gz"</p>
<p>	exit 0<br />
</code></p>
<li>Change the owner group to postgres: sudo -u postgres chown postgres:postgres backupmingledb.sh</li>
<li>Make the script executable by postgres user: sudo -u postgres chmod 755 backupmingledb.sh</li>
<li>Create a cron job to invoke the script</li>
<ul>
<li>sudo -u postgres crontab -e</li>
<li>To append a new line type: o</li>
<li>Type: 0 19 * * * /data/backupmingledb.sh</li>
</ul>
</ol>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Installing%20Thoughtworks%20Mingle%20on%20the%20Amazon%20cloud&amp;body=http%3A%2F%2Fjudykat.com%2Fken-judy%2Finstalling-thoughtworks-mingle-amazon-cloud%2F" title="email"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Finstalling-thoughtworks-mingle-amazon-cloud%2F&amp;partner=sociable" title="Print"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Finstalling-thoughtworks-mingle-amazon-cloud%2F&amp;title=Installing%20Thoughtworks%20Mingle%20on%20the%20Amazon%20cloud&amp;bodytext=I%20had%20to%20install%20an%20instance%20of%20Thoughtwork%20Studio%27s%20agile%20project%20management%20tool%2C%20Mingle.%20My%20favorite%20tracking%20tool%20is%20Excel%20but%20such%20is%20life.%0D%0A%0D%0AThe%20instance%20does%20not%20need%20to%20be%20highly-available%20but%20I%20don%27t%20want%20to%20risk%20data%20loss%20and%20I%20want%20to%20min" title="Digg"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Finstalling-thoughtworks-mingle-amazon-cloud%2F&amp;title=Installing%20Thoughtworks%20Mingle%20on%20the%20Amazon%20cloud" title="Reddit"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Finstalling-thoughtworks-mingle-amazon-cloud%2F&amp;title=Installing%20Thoughtworks%20Mingle%20on%20the%20Amazon%20cloud" title="StumbleUpon"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjudykat.com%2Fken-judy%2Finstalling-thoughtworks-mingle-amazon-cloud%2F&amp;title=Installing%20Thoughtworks%20Mingle%20on%20the%20Amazon%20cloud&amp;annotation=I%20had%20to%20install%20an%20instance%20of%20Thoughtwork%20Studio%27s%20agile%20project%20management%20tool%2C%20Mingle.%20My%20favorite%20tracking%20tool%20is%20Excel%20but%20such%20is%20life.%0D%0A%0D%0AThe%20instance%20does%20not%20need%20to%20be%20highly-available%20but%20I%20don%27t%20want%20to%20risk%20data%20loss%20and%20I%20want%20to%20min" title="Google Bookmarks"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Finstalling-thoughtworks-mingle-amazon-cloud%2F&amp;title=Installing%20Thoughtworks%20Mingle%20on%20the%20Amazon%20cloud&amp;notes=I%20had%20to%20install%20an%20instance%20of%20Thoughtwork%20Studio%27s%20agile%20project%20management%20tool%2C%20Mingle.%20My%20favorite%20tracking%20tool%20is%20Excel%20but%20such%20is%20life.%0D%0A%0D%0AThe%20instance%20does%20not%20need%20to%20be%20highly-available%20but%20I%20don%27t%20want%20to%20risk%20data%20loss%20and%20I%20want%20to%20min" title="del.icio.us"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Finstalling-thoughtworks-mingle-amazon-cloud%2F&amp;title=Installing%20Thoughtworks%20Mingle%20on%20the%20Amazon%20cloud&amp;source=Ken+H.+Judy+Scrum%2C+XP%2C+Management+and+the+Ethics+of+Agile+Software+Development&amp;summary=I%20had%20to%20install%20an%20instance%20of%20Thoughtwork%20Studio%27s%20agile%20project%20management%20tool%2C%20Mingle.%20My%20favorite%20tracking%20tool%20is%20Excel%20but%20such%20is%20life.%0D%0A%0D%0AThe%20instance%20does%20not%20need%20to%20be%20highly-available%20but%20I%20don%27t%20want%20to%20risk%20data%20loss%20and%20I%20want%20to%20min" title="LinkedIn"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjudykat.com%2Fken-judy%2Finstalling-thoughtworks-mingle-amazon-cloud%2F&amp;t=Installing%20Thoughtworks%20Mingle%20on%20the%20Amazon%20cloud" title="Facebook"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Installing%20Thoughtworks%20Mingle%20on%20the%20Amazon%20cloud%20-%20http%3A%2F%2Fjudykat.com%2Fken-judy%2Finstalling-thoughtworks-mingle-amazon-cloud%2F" title="Twitter"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://judykat.com/ken-judy/installing-thoughtworks-mingle-amazon-cloud/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Update requires that you quit update</title>
		<link>http://judykat.com/ken-judy/update-requires-you-quit-update/</link>
		<comments>http://judykat.com/ken-judy/update-requires-you-quit-update/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 03:02:56 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[software development]]></category>
		<category><![CDATA[bad design]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://judykat.com/ken-judy/?p=1764</guid>
		<description><![CDATA[I realize Microsoft AutoUpdate and any particular Microsoft Office update are two different executables but since the first launches the second, this dialog box strikes me as a plea for assisted suicide. The fact that it always comes up makes me think Microsoft could have spent time on a more elegant solution. That fact that [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="Microsoft update requires that you quit Microsoft auto-update" src="http://files.me.com/kenjudy/0amqsb" title="Microsoft update requires that you quit Microsoft auto-update" class="aligncenter" width="477" height="226" /></p>
<p style="clear:both;">I realize Microsoft AutoUpdate and any particular Microsoft Office update are two different executables but since the first launches the second, this dialog box strikes me as a plea for assisted suicide.</p>
<p>The fact that it always comes up makes me think Microsoft could have spent time on a more elegant solution.</p>
<p>That fact that the naming and iconography is so confusing that I&#8217;ve accidentally killed the update instead of the auto-updater requiring me to start all over again is infuriating.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Update%20requires%20that%20you%20quit%20update&amp;body=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fupdate-requires-you-quit-update%2F" title="email"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fupdate-requires-you-quit-update%2F&amp;partner=sociable" title="Print"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fupdate-requires-you-quit-update%2F&amp;title=Update%20requires%20that%20you%20quit%20update&amp;bodytext=%0D%0A%0D%0AI%20realize%20Microsoft%20AutoUpdate%20and%20any%20particular%20Microsoft%20Office%20update%20are%20two%20different%20executables%20but%20since%20the%20first%20launches%20the%20second%2C%20this%20dialog%20box%20strikes%20me%20as%20a%20plea%20for%20assisted%20suicide.%0D%0A%0D%0AThe%20fact%20that%20it%20always%20comes%20up%20makes%20" title="Digg"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fupdate-requires-you-quit-update%2F&amp;title=Update%20requires%20that%20you%20quit%20update" title="Reddit"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fupdate-requires-you-quit-update%2F&amp;title=Update%20requires%20that%20you%20quit%20update" title="StumbleUpon"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fupdate-requires-you-quit-update%2F&amp;title=Update%20requires%20that%20you%20quit%20update&amp;annotation=%0D%0A%0D%0AI%20realize%20Microsoft%20AutoUpdate%20and%20any%20particular%20Microsoft%20Office%20update%20are%20two%20different%20executables%20but%20since%20the%20first%20launches%20the%20second%2C%20this%20dialog%20box%20strikes%20me%20as%20a%20plea%20for%20assisted%20suicide.%0D%0A%0D%0AThe%20fact%20that%20it%20always%20comes%20up%20makes%20" title="Google Bookmarks"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fupdate-requires-you-quit-update%2F&amp;title=Update%20requires%20that%20you%20quit%20update&amp;notes=%0D%0A%0D%0AI%20realize%20Microsoft%20AutoUpdate%20and%20any%20particular%20Microsoft%20Office%20update%20are%20two%20different%20executables%20but%20since%20the%20first%20launches%20the%20second%2C%20this%20dialog%20box%20strikes%20me%20as%20a%20plea%20for%20assisted%20suicide.%0D%0A%0D%0AThe%20fact%20that%20it%20always%20comes%20up%20makes%20" title="del.icio.us"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fupdate-requires-you-quit-update%2F&amp;title=Update%20requires%20that%20you%20quit%20update&amp;source=Ken+H.+Judy+Scrum%2C+XP%2C+Management+and+the+Ethics+of+Agile+Software+Development&amp;summary=%0D%0A%0D%0AI%20realize%20Microsoft%20AutoUpdate%20and%20any%20particular%20Microsoft%20Office%20update%20are%20two%20different%20executables%20but%20since%20the%20first%20launches%20the%20second%2C%20this%20dialog%20box%20strikes%20me%20as%20a%20plea%20for%20assisted%20suicide.%0D%0A%0D%0AThe%20fact%20that%20it%20always%20comes%20up%20makes%20" title="LinkedIn"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fupdate-requires-you-quit-update%2F&amp;t=Update%20requires%20that%20you%20quit%20update" title="Facebook"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Update%20requires%20that%20you%20quit%20update%20-%20http%3A%2F%2Fjudykat.com%2Fken-judy%2Fupdate-requires-you-quit-update%2F" title="Twitter"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://judykat.com/ken-judy/update-requires-you-quit-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agile NYC Presentation Handout</title>
		<link>http://judykat.com/ken-judy/agile-nyc-presentation-handout/</link>
		<comments>http://judykat.com/ken-judy/agile-nyc-presentation-handout/#comments</comments>
		<pubDate>Sun, 16 May 2010 14:39:03 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[software development]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[Agile software development]]></category>
		<category><![CDATA[AgileNYC]]></category>
		<category><![CDATA[ethics]]></category>
		<category><![CDATA[handout]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[principle]]></category>
		<category><![CDATA[values]]></category>

		<guid isPermaLink="false">http://kenjudy.us/ken-judy/?p=1749</guid>
		<description><![CDATA[Here is a draft handout from my presentation at &#8220;Agile NYC&#8221;, Instilling Agile Values for Creativity, Self-Improvement and Organizational Change – A Manager’s Perspective. http://idisk.mac.com/kenjudy-Public/papers/agile-values-outline.pdf]]></description>
			<content:encoded><![CDATA[<p>Here is a draft handout from my presentation at &#8220;Agile NYC&#8221;, <strong>Instilling Agile Values for Creativity, Self-Improvement and Organizational Change – A Manager’s Perspective</strong>.</p>
<p><a href="http://idisk.mac.com/kenjudy-Public/papers/agile-values-outline.pdf"> http://idisk.mac.com/kenjudy-Public/papers/agile-values-outline.pdf</a></p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Agile%20NYC%20Presentation%20Handout&amp;body=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-nyc-presentation-handout%2F" title="email"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-nyc-presentation-handout%2F&amp;partner=sociable" title="Print"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-nyc-presentation-handout%2F&amp;title=Agile%20NYC%20Presentation%20Handout&amp;bodytext=Here%20is%20a%20draft%20handout%20from%20my%20presentation%20at%20%22Agile%20NYC%22%2C%20Instilling%20Agile%20Values%20for%20Creativity%2C%20Self-Improvement%20and%20Organizational%20Change%20%E2%80%93%20A%20Manager%E2%80%99s%20Perspective.%0D%0A%0D%0A%20http%3A%2F%2Fidisk.mac.com%2Fkenjudy-Public%2Fpapers%2Fagile-values-outline.pdf" title="Digg"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-nyc-presentation-handout%2F&amp;title=Agile%20NYC%20Presentation%20Handout" title="Reddit"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-nyc-presentation-handout%2F&amp;title=Agile%20NYC%20Presentation%20Handout" title="StumbleUpon"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-nyc-presentation-handout%2F&amp;title=Agile%20NYC%20Presentation%20Handout&amp;annotation=Here%20is%20a%20draft%20handout%20from%20my%20presentation%20at%20%22Agile%20NYC%22%2C%20Instilling%20Agile%20Values%20for%20Creativity%2C%20Self-Improvement%20and%20Organizational%20Change%20%E2%80%93%20A%20Manager%E2%80%99s%20Perspective.%0D%0A%0D%0A%20http%3A%2F%2Fidisk.mac.com%2Fkenjudy-Public%2Fpapers%2Fagile-values-outline.pdf" title="Google Bookmarks"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-nyc-presentation-handout%2F&amp;title=Agile%20NYC%20Presentation%20Handout&amp;notes=Here%20is%20a%20draft%20handout%20from%20my%20presentation%20at%20%22Agile%20NYC%22%2C%20Instilling%20Agile%20Values%20for%20Creativity%2C%20Self-Improvement%20and%20Organizational%20Change%20%E2%80%93%20A%20Manager%E2%80%99s%20Perspective.%0D%0A%0D%0A%20http%3A%2F%2Fidisk.mac.com%2Fkenjudy-Public%2Fpapers%2Fagile-values-outline.pdf" title="del.icio.us"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-nyc-presentation-handout%2F&amp;title=Agile%20NYC%20Presentation%20Handout&amp;source=Ken+H.+Judy+Scrum%2C+XP%2C+Management+and+the+Ethics+of+Agile+Software+Development&amp;summary=Here%20is%20a%20draft%20handout%20from%20my%20presentation%20at%20%22Agile%20NYC%22%2C%20Instilling%20Agile%20Values%20for%20Creativity%2C%20Self-Improvement%20and%20Organizational%20Change%20%E2%80%93%20A%20Manager%E2%80%99s%20Perspective.%0D%0A%0D%0A%20http%3A%2F%2Fidisk.mac.com%2Fkenjudy-Public%2Fpapers%2Fagile-values-outline.pdf" title="LinkedIn"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-nyc-presentation-handout%2F&amp;t=Agile%20NYC%20Presentation%20Handout" title="Facebook"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Agile%20NYC%20Presentation%20Handout%20-%20http%3A%2F%2Fjudykat.com%2Fken-judy%2Fagile-nyc-presentation-handout%2F" title="Twitter"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://judykat.com/ken-judy/agile-nyc-presentation-handout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m speaking at Agile NYC on May 12th</title>
		<link>http://judykat.com/ken-judy/speaking-at-agile-nyc/</link>
		<comments>http://judykat.com/ken-judy/speaking-at-agile-nyc/#comments</comments>
		<pubDate>Wed, 05 May 2010 06:12:36 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[software development]]></category>
		<category><![CDATA[Agile software development]]></category>
		<category><![CDATA[Jochen Krebs]]></category>
		<category><![CDATA[New York City]]></category>
		<category><![CDATA[scheduled speaker]]></category>
		<category><![CDATA[Software project management]]></category>

		<guid isPermaLink="false">http://judykat.com/ken-judy/?p=1698</guid>
		<description><![CDATA[I have a week to prepare for this month&#8217;s APLN-NY which now goes by the zazzy name &#8220;Agile New York City&#8221;. Last month, I was the last minute replacement for the planned speaker until the planned venue fell through. So this month, I am the scheduled speaker. This lends an air of improvisation to the [...]]]></description>
			<content:encoded><![CDATA[<p>I have a week to prepare for this month&#8217;s <a href="http://incrementor.com/agilenyc/">APLN-NY</a> which now goes by the zazzy name &#8220;Agile New York City&#8221;.</p>
<p>Last month, I was the last minute replacement for the planned speaker until the planned venue fell through. So this month, I am the scheduled speaker. This lends an air of improvisation to the event.</p>
<p>Right now, I am a year and a half into my current job and locked in the kind of agile adoption I&#8217;ve only presented with hindsight. Right now, I am about the day to day: acknowledging incremental progress, working through setbacks and full of my own limitations. I don&#8217;t know the ending. What I feel is an urgency to <em>do better</em> and <em>be better</em>.</p>
<p>So, I worked out the topic over some e-mail exchanges with <a href="http://www.jochenkrebs.com">Jochen Krebs</a>. In the absence of a story to tell, it&#8217;s time to do a little a personal retrospection. </p>
<blockquote><p><strong>Instilling Agile Values for Creativity, Self-Improvement and Organizational Change &#8211; A Manager&#8217;s Perspective</strong></p>
<p>The scale and speed of an agile adoption are external measures that don&#8217;t speak to the founding values of the practice. Collective ownership, continuous improvement and high trust are hard won, take time and discipline but lead to craftsmanship and joy. They are enabling conditions for innovation and beneficial change.</p>
<p>I will retrospect on my contributions both positive and negative towards cultivating these values in two teams. The first was a practice that matured over four years, led to a new mission for the team and direct collaboration with the founder and CEO. The second, is a new team finding its way at the end of its first year.</p>
<p>What will I do more off? What will I do less of? What impediments got in the way?</p></blockquote>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=I%27m%20speaking%20at%20Agile%20NYC%20on%20May%2012th&amp;body=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fspeaking-at-agile-nyc%2F" title="email"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fspeaking-at-agile-nyc%2F&amp;partner=sociable" title="Print"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fspeaking-at-agile-nyc%2F&amp;title=I%27m%20speaking%20at%20Agile%20NYC%20on%20May%2012th&amp;bodytext=I%20have%20a%20week%20to%20prepare%20for%20this%20month%27s%20APLN-NY%20which%20now%20goes%20by%20the%20zazzy%20name%20%22Agile%20New%20York%20City%22.%0D%0A%0D%0ALast%20month%2C%20I%20was%20the%20last%20minute%20replacement%20for%20the%20planned%20speaker%20until%20the%20planned%20venue%20fell%20through.%20So%20this%20month%2C%20I%20am%20the%20scheduled" title="Digg"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fspeaking-at-agile-nyc%2F&amp;title=I%27m%20speaking%20at%20Agile%20NYC%20on%20May%2012th" title="Reddit"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fspeaking-at-agile-nyc%2F&amp;title=I%27m%20speaking%20at%20Agile%20NYC%20on%20May%2012th" title="StumbleUpon"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fspeaking-at-agile-nyc%2F&amp;title=I%27m%20speaking%20at%20Agile%20NYC%20on%20May%2012th&amp;annotation=I%20have%20a%20week%20to%20prepare%20for%20this%20month%27s%20APLN-NY%20which%20now%20goes%20by%20the%20zazzy%20name%20%22Agile%20New%20York%20City%22.%0D%0A%0D%0ALast%20month%2C%20I%20was%20the%20last%20minute%20replacement%20for%20the%20planned%20speaker%20until%20the%20planned%20venue%20fell%20through.%20So%20this%20month%2C%20I%20am%20the%20scheduled" title="Google Bookmarks"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fspeaking-at-agile-nyc%2F&amp;title=I%27m%20speaking%20at%20Agile%20NYC%20on%20May%2012th&amp;notes=I%20have%20a%20week%20to%20prepare%20for%20this%20month%27s%20APLN-NY%20which%20now%20goes%20by%20the%20zazzy%20name%20%22Agile%20New%20York%20City%22.%0D%0A%0D%0ALast%20month%2C%20I%20was%20the%20last%20minute%20replacement%20for%20the%20planned%20speaker%20until%20the%20planned%20venue%20fell%20through.%20So%20this%20month%2C%20I%20am%20the%20scheduled" title="del.icio.us"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fspeaking-at-agile-nyc%2F&amp;title=I%27m%20speaking%20at%20Agile%20NYC%20on%20May%2012th&amp;source=Ken+H.+Judy+Scrum%2C+XP%2C+Management+and+the+Ethics+of+Agile+Software+Development&amp;summary=I%20have%20a%20week%20to%20prepare%20for%20this%20month%27s%20APLN-NY%20which%20now%20goes%20by%20the%20zazzy%20name%20%22Agile%20New%20York%20City%22.%0D%0A%0D%0ALast%20month%2C%20I%20was%20the%20last%20minute%20replacement%20for%20the%20planned%20speaker%20until%20the%20planned%20venue%20fell%20through.%20So%20this%20month%2C%20I%20am%20the%20scheduled" title="LinkedIn"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fspeaking-at-agile-nyc%2F&amp;t=I%27m%20speaking%20at%20Agile%20NYC%20on%20May%2012th" title="Facebook"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=I%27m%20speaking%20at%20Agile%20NYC%20on%20May%2012th%20-%20http%3A%2F%2Fjudykat.com%2Fken-judy%2Fspeaking-at-agile-nyc%2F" title="Twitter"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://judykat.com/ken-judy/speaking-at-agile-nyc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Catastrophic system failure</title>
		<link>http://judykat.com/ken-judy/catastrophic-system-failure/</link>
		<comments>http://judykat.com/ken-judy/catastrophic-system-failure/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 04:00:33 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[software development]]></category>
		<category><![CDATA[Blowout preventer]]></category>
		<category><![CDATA[Deepwater Horizon]]></category>
		<category><![CDATA[Disaster_Accident]]></category>
		<category><![CDATA[energy]]></category>
		<category><![CDATA[Engineering]]></category>
		<category><![CDATA[Gulf of Mexico]]></category>
		<category><![CDATA[High-Risk Technologies]]></category>
		<category><![CDATA[oil]]></category>
		<category><![CDATA[Oil wells]]></category>
		<category><![CDATA[Petroleum production]]></category>
		<category><![CDATA[Preventer]]></category>
		<category><![CDATA[Safety]]></category>
		<category><![CDATA[System accident]]></category>
		<category><![CDATA[Transocean]]></category>
		<category><![CDATA[Transocean Inc.]]></category>

		<guid isPermaLink="false">http://judykat.com/ken-judy/?p=1661</guid>
		<description><![CDATA[A Cameron Blow Out Preventer (BOP) is installed at the base of the BP leased, Transocean owned Deepwater Horizon rig. An unmanageable surge of oil led to the fire that sunk the rig and ended 11 lives. The BOP is not preventing up to 200,000 gallons/day of oil from gushing into Gulf of Mexico. At [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.otcnet.org/2009/pages/spotlight/Cameron_Nautronix.html"><img alt="Cameron Blow Out Preventer" src="http://files.me.com/kenjudy/vbsuww" title="Cameron Blow Out Preventer" class="alignnone" width="600" height="800" /></a><br />
A Cameron Blow Out Preventer (BOP) is installed at the base of the BP leased, Transocean owned Deepwater Horizon rig. <a href="http://www.businessweek.com/news/2010-04-28/cameron-provided-blowout-gear-for-rig-that-sank-update1-.html">An unmanageable surge of oil led to the fire that sunk the rig and ended 11 lives</a>. </p>
<p><a href="http://www.nytimes.com/2010/04/30/us/30gulf.html">The BOP is not preventing up to 200,000 gallons/day of oil from gushing into Gulf of Mexico</a>. At this point, no one appears to understand why.</p>
<p>The Blow Out Preventer is only a very visible part of an intricate human and technological system under enormous economic pressure to deliver crude oil.</p>
<blockquote><p>If interactive complexity and tight coupling &#8212; system characteristics &#8212; inevitably will produce an accident, I believe we are justified in calling it a <em>normal accident</em>, or a <em>system accident.</em> The odd term <em>normal accident</em> is meant to signal that, given the system characteristics, multiple and unexpected interactions of failures are inevitable. This is an expression of an integral characteristic of the system. System accidents are uncommon, even rare; yet this is not all that reassuring if they produce catastrophes. &#8212; <a href="http://www.amazon.com/gp/product/0691004129?ie=UTF8&#038;tag=judykatcom-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=0691004129">Normal Accidents: Living with High-Risk Technologies</a><img src="http://www.assoc-amazon.com/e/ir?t=judykatcom-20&#038;l=as2&#038;o=1&#038;a=0691004129" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p></blockquote>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Catastrophic%20system%20failure&amp;body=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fcatastrophic-system-failure%2F" title="email"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fcatastrophic-system-failure%2F&amp;partner=sociable" title="Print"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fcatastrophic-system-failure%2F&amp;title=Catastrophic%20system%20failure&amp;bodytext=%0D%0AA%20Cameron%20Blow%20Out%20Preventer%20%28BOP%29%20is%20installed%20at%20the%20base%20of%20the%20BP%20leased%2C%20Transocean%20owned%20Deepwater%20Horizon%20rig.%20An%20unmanageable%20surge%20of%20oil%20led%20to%20the%20fire%20that%20sunk%20the%20rig%20and%20ended%2011%20lives.%20%0D%0A%0D%0AThe%20BOP%20is%20not%20preventing%20up%20to%20200%2C000%20gal" title="Digg"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fcatastrophic-system-failure%2F&amp;title=Catastrophic%20system%20failure" title="Reddit"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fcatastrophic-system-failure%2F&amp;title=Catastrophic%20system%20failure" title="StumbleUpon"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fcatastrophic-system-failure%2F&amp;title=Catastrophic%20system%20failure&amp;annotation=%0D%0AA%20Cameron%20Blow%20Out%20Preventer%20%28BOP%29%20is%20installed%20at%20the%20base%20of%20the%20BP%20leased%2C%20Transocean%20owned%20Deepwater%20Horizon%20rig.%20An%20unmanageable%20surge%20of%20oil%20led%20to%20the%20fire%20that%20sunk%20the%20rig%20and%20ended%2011%20lives.%20%0D%0A%0D%0AThe%20BOP%20is%20not%20preventing%20up%20to%20200%2C000%20gal" title="Google Bookmarks"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fcatastrophic-system-failure%2F&amp;title=Catastrophic%20system%20failure&amp;notes=%0D%0AA%20Cameron%20Blow%20Out%20Preventer%20%28BOP%29%20is%20installed%20at%20the%20base%20of%20the%20BP%20leased%2C%20Transocean%20owned%20Deepwater%20Horizon%20rig.%20An%20unmanageable%20surge%20of%20oil%20led%20to%20the%20fire%20that%20sunk%20the%20rig%20and%20ended%2011%20lives.%20%0D%0A%0D%0AThe%20BOP%20is%20not%20preventing%20up%20to%20200%2C000%20gal" title="del.icio.us"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fcatastrophic-system-failure%2F&amp;title=Catastrophic%20system%20failure&amp;source=Ken+H.+Judy+Scrum%2C+XP%2C+Management+and+the+Ethics+of+Agile+Software+Development&amp;summary=%0D%0AA%20Cameron%20Blow%20Out%20Preventer%20%28BOP%29%20is%20installed%20at%20the%20base%20of%20the%20BP%20leased%2C%20Transocean%20owned%20Deepwater%20Horizon%20rig.%20An%20unmanageable%20surge%20of%20oil%20led%20to%20the%20fire%20that%20sunk%20the%20rig%20and%20ended%2011%20lives.%20%0D%0A%0D%0AThe%20BOP%20is%20not%20preventing%20up%20to%20200%2C000%20gal" title="LinkedIn"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fcatastrophic-system-failure%2F&amp;t=Catastrophic%20system%20failure" title="Facebook"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Catastrophic%20system%20failure%20-%20http%3A%2F%2Fjudykat.com%2Fken-judy%2Fcatastrophic-system-failure%2F" title="Twitter"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://judykat.com/ken-judy/catastrophic-system-failure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Technology IP Patents</title>
		<link>http://judykat.com/ken-judy/technology-ip-patents/</link>
		<comments>http://judykat.com/ken-judy/technology-ip-patents/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 03:08:47 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[software development]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Inc]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[Intellectual property law]]></category>
		<category><![CDATA[Online social networking]]></category>
		<category><![CDATA[Patent]]></category>
		<category><![CDATA[Patent law]]></category>
		<category><![CDATA[Social information processing]]></category>
		<category><![CDATA[Software patent]]></category>
		<category><![CDATA[Technology_Internet]]></category>
		<category><![CDATA[World Intellectual Property Organization]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://judykat.com/ken-judy/?p=1652</guid>
		<description><![CDATA[Facebook patents news feeds in a social network context The method covered in the patent includes &#8220;generating news items regarding activities associated with a user of a social network environment and attaching an informational link associated with at least one of the activities, to at least one of the news items, as well as limiting [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Facebook patents news feeds in a social network context</strong></p>
<blockquote><p>The method covered in the patent includes &#8220;generating news items regarding activities associated with a user of a social network environment and attaching an informational link associated with at least one of the activities, to at least one of the news items, as well as limiting access to the news items to a predetermined set of viewers and assigning an order to the news items.&#8221; &#8212; <a href="http://www.pcmag.com/article2/0,2817,2360728,00.asp">PC World</a></p></blockquote>
<p><strong>Apple sues HTC for violations on 20 patents</strong> </p>
<p><a href="http://www.docstoc.com/docs/27226564/Apple-vs-HTC">Here&#8217;s the actual filing</a> that includes the titles of each of the patents including:</p>
<ul>
<li>Object oriented graphic system &#8211; granted 1995</li>
<li>List scrolling and document translation, scaling, and rotation on a touch-screen display &#8211; granted 2008</li>
<li>Object oriented event notification system with listener registration of both interests and methods &#8211; granted 2002</li>
</ul>
<p><strong>What kinds of Inventions can be Protected?</strong></p>
<blockquote><p>An invention must, in general, fulfill the following conditions to be protected by a patent. It must be of <strong>practical use</strong>; it must show an element of <strong>novelty</strong>, that is, some <strong>new characteristic</strong> which is <strong>not known in the body of existing knowledge</strong> in its technical field. This body of existing knowledge is called &#8221; <strong>prior art</strong>&#8220;. The invention must show an <strong>inventive step</strong> which could not be deduced by a person with average knowledge of the technical field. Finally, its subject matter must be accepted as &#8220;patentable&#8221; under law. In many countries, scientific theories, mathematical methods, plant or animal varieties, discoveries of natural substances, commercial methods, or methods for medical treatment (as opposed to medical products) are generally not patentable. &#8212; <a href="http://www.wipo.int/patentscope/en/patents_faq.html#inventions">World Intellectual Property Organization</a></p></blockquote>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Technology%20IP%20Patents&amp;body=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ftechnology-ip-patents%2F" title="email"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ftechnology-ip-patents%2F&amp;partner=sociable" title="Print"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ftechnology-ip-patents%2F&amp;title=Technology%20IP%20Patents&amp;bodytext=Facebook%20patents%20news%20feeds%20in%20a%20social%20network%20context%0D%0A%0D%0AThe%20method%20covered%20in%20the%20patent%20includes%20%22generating%20news%20items%20regarding%20activities%20associated%20with%20a%20user%20of%20a%20social%20network%20environment%20and%20attaching%20an%20informational%20link%20associated%20wit" title="Digg"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ftechnology-ip-patents%2F&amp;title=Technology%20IP%20Patents" title="Reddit"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ftechnology-ip-patents%2F&amp;title=Technology%20IP%20Patents" title="StumbleUpon"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ftechnology-ip-patents%2F&amp;title=Technology%20IP%20Patents&amp;annotation=Facebook%20patents%20news%20feeds%20in%20a%20social%20network%20context%0D%0A%0D%0AThe%20method%20covered%20in%20the%20patent%20includes%20%22generating%20news%20items%20regarding%20activities%20associated%20with%20a%20user%20of%20a%20social%20network%20environment%20and%20attaching%20an%20informational%20link%20associated%20wit" title="Google Bookmarks"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ftechnology-ip-patents%2F&amp;title=Technology%20IP%20Patents&amp;notes=Facebook%20patents%20news%20feeds%20in%20a%20social%20network%20context%0D%0A%0D%0AThe%20method%20covered%20in%20the%20patent%20includes%20%22generating%20news%20items%20regarding%20activities%20associated%20with%20a%20user%20of%20a%20social%20network%20environment%20and%20attaching%20an%20informational%20link%20associated%20wit" title="del.icio.us"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ftechnology-ip-patents%2F&amp;title=Technology%20IP%20Patents&amp;source=Ken+H.+Judy+Scrum%2C+XP%2C+Management+and+the+Ethics+of+Agile+Software+Development&amp;summary=Facebook%20patents%20news%20feeds%20in%20a%20social%20network%20context%0D%0A%0D%0AThe%20method%20covered%20in%20the%20patent%20includes%20%22generating%20news%20items%20regarding%20activities%20associated%20with%20a%20user%20of%20a%20social%20network%20environment%20and%20attaching%20an%20informational%20link%20associated%20wit" title="LinkedIn"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ftechnology-ip-patents%2F&amp;t=Technology%20IP%20Patents" title="Facebook"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Technology%20IP%20Patents%20-%20http%3A%2F%2Fjudykat.com%2Fken-judy%2Ftechnology-ip-patents%2F" title="Twitter"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://judykat.com/ken-judy/technology-ip-patents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
