<?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>f3yourmind &#187; ubuntu</title>
	<atom:link href="http://aslamkhan.net/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://aslamkhan.net</link>
	<description>Ubuntu coding ... for your friends</description>
	<lastBuildDate>Mon, 24 Oct 2011 07:07:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Rolling out a methodology is about design</title>
		<link>http://aslamkhan.net/software-development/rolling-out-a-methodology-is-about-design/</link>
		<comments>http://aslamkhan.net/software-development/rolling-out-a-methodology-is-about-design/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 12:20:33 +0000</pubDate>
		<dc:creator>Aslam</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[zen]]></category>

		<guid isPermaLink="false">http://aslamkhan.net/?p=493</guid>
		<description><![CDATA[Implementing a new methodology is a painful exercise.  Lots change, lots break, and lots of so-called &#8220;colateral damage&#8221;.  I have tried implementing new methodologies including XP and Scrum many times.  I have also witnessed a lot of attempts by other people, and been involved while others drove the initiative.  Every time, it has lead the [...]]]></description>
			<content:encoded><![CDATA[<p>Implementing a new methodology is a painful exercise.  Lots change, lots break, and lots of so-called &#8220;colateral damage&#8221;.  I have tried implementing new methodologies including XP and Scrum many times.  I have also witnessed a lot of attempts by other people, and been involved while others drove the initiative.  Every time, it has lead the organisation into a disruptive, stressful state.  The most common position taken by the implementors is:</p>
<blockquote><p>Of course it is disruptive.  That&#8217;s part of the change-process.  We all knew that from the moment we started. How else do you think it&#8217;s going to get better?</p></blockquote>
<p>In the past, I&#8217;ve been guilty of the same.  The end result is that I am left unsatisfied and unfulfilled, and so is the organisation. Yes, it may eventually get better.  Eventually I got sick of taking this high road.  Well, it only took two such situations a long time ago to realise that I was messing up royally.</p>
<p>In my quest to do things better, I drew inspiration from test driven development and dealing with old, messy legacy code.  Three very distinct things which are rooted in software development and changing legacy code is very, very apt.</p>
<ol>
<li>Rolling out a methodology is at the implementation level.  So, was there a design for the implementation in the first place?  Implementation without design always ends up in a mess.</li>
<li>Even if we abstracted the design from one implementation, does the design support all implementations?  &#8221;Similar&#8221; does not equate to &#8220;same&#8221;.</li>
<li>The existing methodology has a set of protocols by which the organisation functions, while the new methodology introduces a new set of protocols.  Just dumping down the new protocols is the equivalent of rip and replace &#8211; the grand rewrite without care for migration.  Is this the only way?</li>
</ol>
<p>So, taking inspiration from code, here is something that you can try when attempting a new rollout.</p>
<p><strong>Understand the existing implementation. </strong>Use a test based approach to concretely discover existing protocols within the organisation.  This may be as simple as playing out what-if scenarios that test the communication pathways.  Keep your eyes wide open for seams or boundaries.  These seams are candidates for incision points for introducing a new protocol facing in towards the area under change while honoring the old protocol facing out towards the other side that should not be changed (yet).</p>
<p><strong>Design, design, design.</strong> Once you understand the existing protocols and how they behave under certain scenarios, you switch to design mode.  Look again at the dependency graph within the organisation for a particular protocol.  What is affected when a certain event occurs?  Then look at your candidate seams and incision points and design your wedge.  It may be a transformer that completely modifies information as it crosses over the seam.  Maybe it&#8217;s a buffer with a finite capacity that slows things down and trickle feeds info to the other side.  What about a filter that removes some info?  How about something that just decorates existing info with a just a wee bit more that is tolerable on the other side.</p>
<p>This design is mostly about designing feedback loops.  As such, you need to consider the temporal and synchronous aspects of feedback also. What is the expected latency when I stick in this new wedge?  Will it take one week or one day or one hour when something crosses this boundary?  Do we send off some info and wait for a response on the same pathway, or do we get informed of which other pathway to regularly check for the response?  Perhaps someone gets nudged when the response arrives.</p>
<p><strong>Implement it test first.</strong> While it may seem like a lot of upfront work is necessary to get the ball rolling, it can be done in tiny steps.  You don&#8217;t need to fall into the analysis hole when looking for seams.  Nor do you need to get stuck looking for the perfect design.  It is better to remain concrete for long periods of time, than speculate at possibilities.  Doing a little bit at a time with some small tests helps you keep both feet on the ground.  For example, you want to switch from the old protocol of reporting progress with budgeted vs actual to burning down story points.  Some people still need to use the budget vs actual report and it is inefficient to have to maintain both (not to mention not DRY at all).  We need a way of transforming from burn down to budget vs actual.  Think about candidate tests that will shift you towards that goal?  Maybe it&#8217;s &#8220;I should be able to take existing budgeted tasks in a time frame and map it to tasks on the burndown&#8221;.  Perhaps it is &#8220;I should be able to introduce new time frames on the budgeted vs actuals that synchronise with new sprint boundaries&#8221;.</p>
<p>These are just some things that I think and try out.  It comes from me being sick and tired of subjecting people to stressful implementations and being party to messed up implementations too.  It&#8217;s just too easy to blame someone or something else for our own ineptitude.  I don&#8217;t take the high road anymore.  I take the middle road.  It doesn&#8217;t travel straight, and has branches with dead ends too, but it leaves me a lot more content.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Faslamkhan.net%2Fsoftware-development%2Frolling-out-a-methodology-is-about-design%2F&amp;title=Rolling%20out%20a%20methodology%20is%20about%20design" id="wpa2a_2"><img src="http://aslamkhan.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://aslamkhan.net/software-development/rolling-out-a-methodology-is-about-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>You can&#8217;t let Scrum die</title>
		<link>http://aslamkhan.net/software-development/you-cant-let-scrum-die/</link>
		<comments>http://aslamkhan.net/software-development/you-cant-let-scrum-die/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 00:06:36 +0000</pubDate>
		<dc:creator>Aslam</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[intentions]]></category>
		<category><![CDATA[scrum]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[zen]]></category>

		<guid isPermaLink="false">http://aslamkhan.net/?p=481</guid>
		<description><![CDATA[In my last post I said we should let Scrum die.  We can&#8217;t let Scrum die.  It doesn&#8217;t behave like that.  It will only die off its own accord if we die first and then it dies because it has no reason to exist.  So you got to kill it.  Here&#8217;s why (again?). Software development is [...]]]></description>
			<content:encoded><![CDATA[<p>In my last <a href="http://aslamkhan.net/software-development/let-scrum-die/">post</a> I said we should let Scrum die.  We can&#8217;t <em>let</em> Scrum die.  It doesn&#8217;t behave like that.  It will only die off its own accord if we die first and then it dies because it has no reason to exist.  So you got to kill it.  Here&#8217;s why (again?).</p>
<p>Software development is about people and the way people work alone and together.  People create code in software development.  Without that code, these people don&#8217;t exist; they have no purpose.  Code is the creation of the people, and people live off this code.  When the code is good, then life is good.  When the code is poisonous, then people start dying slowly.  When the smell of death is in the air, they look for help.  Some stare into the mirror called Scrum. They see themselves and the way they behave.  It&#8217;s an ugly sight.  They realise that they should behave better.  After all, software is about the way people work alone and together.</p>
<p>Regularly looking into the Scrum mirror, they improve their behavior over time, and everyone is happier than the moment before.  That&#8217;s a nice view.  Just look in the mirror and it looks good.  Very rarely do they also look again through the window into the fields of code that feeds them.  The poison is still coursing through their veins.  They will die, eventually &#8230; by the host that they created that was supposed to nourish them.  The only way to survive is to deal with the fields of code.  Get rid of the toxins.  There are two fundamental ways<em>(*)</em> that you can get rid of toxins: (a) eliminate duplication, and (b) make the code as you wish it to be.</p>
<p>If they just stare into the mirror and hardly ever look out the window, they will just exist on the p<a href="http://aslamkhan.net/software-development/let-scrum-die/">lateau of complacency</a>.  In order to avoid that state of being, they need to focus on the fields of code.  The urge to look in the mirror is strong, and as useful as it was, it becomes a very unbalanced state of existence.</p>
<p>So, look in the mirror, but look through the window too.  Create fields of code without toxins so that you provide nourishment for the next person.  That is <a href="http://programmer.97things.oreilly.com/wiki/index.php/Ubuntu_Coding_for_Your_Friends">ubuntu coding</a>.</p>
<p>Actually, the only mirror you need is the person working next to you.</p>
<p><em><span>(*) Think deeply about these two fundamental things and try it out.  Everything else will fall into place from this. For example, the act of eliminating duplication forces you to consider where to locate a single piece of code, how it should be used and where it can be used, etc.  That is design and architecture.  With duplication, you don&#8217;t need to consider any of those things.  That&#8217;s toxic.</span></em></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Faslamkhan.net%2Fsoftware-development%2Fyou-cant-let-scrum-die%2F&amp;title=You%20can%26%238217%3Bt%20let%20Scrum%20die" id="wpa2a_4"><img src="http://aslamkhan.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://aslamkhan.net/software-development/you-cant-let-scrum-die/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The politics of software delivery</title>
		<link>http://aslamkhan.net/software-development/the-politics-of-software-delivery/</link>
		<comments>http://aslamkhan.net/software-development/the-politics-of-software-delivery/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 20:20:36 +0000</pubDate>
		<dc:creator>Aslam</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://aslamkhan.net/?p=455</guid>
		<description><![CDATA[Software is all about delivering something useful to a customer.  That&#8217;s it &#8211; nothing else.  Politics is about acquisition of power.  Nothing else matters.  Now mix the two together.  How often have you heard a developer say something like &#8220;It&#8217;s not my problem, it&#8217;s just politics&#8221;?   That poor developer doesn&#8217;t stand a chance.  Imagine [...]]]></description>
			<content:encoded><![CDATA[<p>Software is all about delivering something useful to a customer.  That&#8217;s it &#8211; nothing else.  Politics is about acquisition of power.  Nothing else matters.  Now mix the two together.  How often have you heard a developer say something like &#8220;It&#8217;s not my problem, it&#8217;s just politics&#8221;?   That poor developer doesn&#8217;t stand a chance.  Imagine trying to deliver software while there is a raging power battle going on.  I don&#8217;t think software delivery stands any chance of success in that battle.  In fact, software delivery just becomes a tool for the politicians.</p>
<p>When someone is plotting for power, nothing else matters, not in the least software delivery.  <a href="http://aslamkhan.net/software-development/power-oriented-architecture/">I&#8217;ve been there and done that</a>.  It&#8217;s just messy, soul destroying stuff.  These days, I look for the power battle and try to focus on software by raising the delivery stakes to higher than the power battle.  If I can&#8217;t do that, then the software was never the focus in the first place.  Then I recommend pulling the plug.  Regardless, that&#8217;s my cue to leave.  Not because I am a coward, lacking courage, but for the simple fact that those power grabs are completely meaningless, except for the power-hungry.</p>
<p>As long as there is a political game being played, you simply won&#8217;t deliver software on time, on budget and keep customers happy.  BTW you can just forget about collaboration too.  That space will always be filled with contempt.</p>
<p>Let me put it another way: Any attempt at being agile in a political environment will always lead to failure.  While you are trying to learn, others are trying to gain power.  It doesn&#8217;t work!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Faslamkhan.net%2Fsoftware-development%2Fthe-politics-of-software-delivery%2F&amp;title=The%20politics%20of%20software%20delivery" id="wpa2a_6"><img src="http://aslamkhan.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://aslamkhan.net/software-development/the-politics-of-software-delivery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What freedom?</title>
		<link>http://aslamkhan.net/software-development/what-freedom/</link>
		<comments>http://aslamkhan.net/software-development/what-freedom/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 06:23:20 +0000</pubDate>
		<dc:creator>Aslam</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[zen]]></category>

		<guid isPermaLink="false">http://aslamkhan.net/?p=84</guid>
		<description><![CDATA[At the Scrum gathering I had a tiny little conversation with Lorraine Steyn of Khanyisa Real Systems and Henrik Kniberg of Crisp about some of the values in our organisations.  At the top of Henrik&#8217;s value list was Freedom.  It seemed straight forward enough, until I started thinking about what freedom means to me. My [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 238px"><a href="http://www.sahistory.org.za/pages/governence-projects/freedom-charter/01_history.htm"><img src="http://www.sahistory.org.za/pages/governence-projects/freedom-charter/graphics/freedomcharter-big.gif" alt="" width="228" height="281" /></a><p class="wp-caption-text">Sourced from http://www.sahistory.org.za</p></div>
<p>At the Scrum gathering I had a tiny little conversation with Lorraine Steyn of <a href="http://www.krs.co.za/index.aspx">Khanyisa Real Systems</a> and <a href="http://blog.crisp.se/henrikkniberg/">Henrik Kniberg</a> of Crisp about some of the values in our organisations.  At the top of Henrik&#8217;s value list was <em>Freedom</em>.  It seemed straight forward enough, until I started thinking about what freedom means to me.</p>
<p>My early perspective and experience on (the lack of) freedom is based purely on oppression of apartheid.  Ok, that&#8217;s over, so I am now free. Right?</p>
<p>Then John Lennon&#8217;s <a href="http://www.mp3lyrics.org/j/john-lennon/imagine/">Imagine</a> lyrics sang through my head.  If we&#8217;ve nothing to kill or die for, will we have universal freedom?</p>
<p>Hold on, what about when Janis Joplin sang <a href="http://www.bluesforpeace.com/lyrics/bobby-mcgee.htm">Me and Bobby McGee</a> &#8211; &#8220;<em>Freedom&#8217;s just another word for nothing left to lose&#8221;</em>?  That sounds too dreary for a concept that should make me happy.</p>
<p>Tonight I saw a quote by <a href="http://en.wikipedia.org/wiki/Maria_Montessori">Maria Montessori</a> on the wall next to my wife&#8217;s desk at home.  It&#8217;s been there forever and it says:</p>
<blockquote><p><em>&#8220;The  essence of independence  is to be  able to do something for one&#8217;s self.&#8221;</em></p></blockquote>
<p>I like this the most.  Be able to something for yourself and you will gain independence which sets you free.  It also reminds me of the <em>self-organising</em> mantra in Scrum-land.  Self organising implies that the team wants to be able to manage themselves so that they achieve independence (freedom).  But, there is a little spark of conflict in here.  As individuals we also have priorities and values, which is not necessarily aligned with that of the team.  Is it acceptable to compromise just to subscribe to the homogeneity of the team?</p>
<p>I think it&#8217;s <a href="http://www.amazon.com/Long-Walk-Freedom-Autobiography-Mandela/dp/0316548189">a long walk to freedom</a>.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Faslamkhan.net%2Fsoftware-development%2Fwhat-freedom%2F&amp;title=What%20freedom%3F" id="wpa2a_8"><img src="http://aslamkhan.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://aslamkhan.net/software-development/what-freedom/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Resurfacing Diversity Challenges</title>
		<link>http://aslamkhan.net/events/resurfacing-diversity-challenges/</link>
		<comments>http://aslamkhan.net/events/resurfacing-diversity-challenges/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 12:23:54 +0000</pubDate>
		<dc:creator>Aslam</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Published Elsewhere]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[diversity]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://aslamkhan.net/?p=365</guid>
		<description><![CDATA[I got a tweet from Clive Seebregts which pointed me to an InfoQ article that made reference to an old Hanselminutes podcast that I did.  It&#8217;s nice to see that diversity is not being left in the wilderness and that other people are thinking about it again.  It seems like some people are trying to promote diversity and [...]]]></description>
			<content:encoded><![CDATA[<p>I got a tweet from <a href="http://twitter.com/CliveSeebregts/">Clive Seebregts</a> which pointed me to an <a href="http://www.infoq.com/news/2010/07/value-of-diversity">InfoQ article</a> that made reference to an old <a href="http://aslamkhan.net/software-development/digging-into-diversity/">Hanselminutes</a> podcast that I did.  It&#8217;s nice to see that diversity is not being left in the wilderness and that other people are thinking about it again.  It seems like some people are trying to promote diversity and others are trying to manage the challenges of diversity.  Hmmm, somewhere there is point of brutal contact, but it will be for the good.</p>
<p>BTW, digging around on material diversity in agile teams I came across this video.  I didn&#8217;t know it existed at all.  Suddenly, the references to the FIFA 2010 World Cup seem sooooo dated.</p>
<p><object id="viddler_875e3196" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="437" height="314" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.viddler.com/player/875e3196/" /><param name="name" value="viddler_875e3196" /><param name="allowfullscreen" value="true" /><embed id="viddler_875e3196" type="application/x-shockwave-flash" width="437" height="314" src="http://www.viddler.com/player/875e3196/" name="viddler_875e3196" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Faslamkhan.net%2Fevents%2Fresurfacing-diversity-challenges%2F&amp;title=Resurfacing%20Diversity%20Challenges" id="wpa2a_10"><img src="http://aslamkhan.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://aslamkhan.net/events/resurfacing-diversity-challenges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coding for Enlightenment</title>
		<link>http://aslamkhan.net/software-development/coding-for-enlightenment/</link>
		<comments>http://aslamkhan.net/software-development/coding-for-enlightenment/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 10:54:05 +0000</pubDate>
		<dc:creator>Aslam</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[philosophy]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[zen]]></category>

		<guid isPermaLink="false">http://aslamkhan.net/?p=345</guid>
		<description><![CDATA[Jimmy Nilsson asked me in an email a few days ago &#8220;How&#8217;s life?&#8221;.  I&#8217;m sure it was just a regular, friendly question, but I gave him a &#8220;life&#8221; answer.  It was not spontaneous but something that has been brooding in me for a while.   It is about things that I have been trying to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jimmynilsson.com">Jimmy Nilsson</a> asked me in an email a few days ago &#8220;<em>How&#8217;s life?&#8221;</em>.  I&#8217;m sure it was just a regular, friendly question, but I gave him a <em>&#8220;life&#8221;</em> answer.  It was not spontaneous but something that has been brooding in me for a while.   It is about things that I have been trying to do for a long time.</p>
<p>Here&#8217;s a few splintered thoughts from my email exchange.</p>
<ul>
<li>Enlightened, for me, is about happiness that comes from being content; unenlightened is just trying to be happy.</li>
<li>There are many solutions for every problem, whether I am aware of them or not; and the problem has already chosen the best solution, but I have not found it yet.</li>
<li>Code from my heart because I should trust myself first.</li>
<li>Be part of the exploration, not just an observer.</li>
<li>This moment is more important than trying to figure out how it impacts the future, because I can deal with the future in that future moment.</li>
<li>Passion is constant whether I succeed or fail.</li>
<li>Let the project plan me, by bending to suit the situation not and not bending the situation to suit me.</li>
<li>The code I write knows everything, because every line of code has an impact on someone else or some other piece of code.</li>
</ul>
<p>Now I&#8217;ve decided to actively explore why I write code, or why I wish to continue doing what I am doing.  I am not sure what I will uncover in this exploration, but I know that it will be very personal.  I don&#8217;t even know if it will be worth sharing, that&#8217;s why I am sharing so early.  It just felt right.</p>
<p>I think it will be really tough, but I take solace from my 9 year old son who told his 6 year old sister <em>&#8220;Getting hurt is part of playing&#8221;</em>.</p>
<p>PS: I don&#8217;t think Jimmy will ever ask me a <em>&#8220;How&#8217;s life?&#8221;</em> question again <img src='http://aslamkhan.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Faslamkhan.net%2Fsoftware-development%2Fcoding-for-enlightenment%2F&amp;title=Coding%20for%20Enlightenment" id="wpa2a_12"><img src="http://aslamkhan.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://aslamkhan.net/software-development/coding-for-enlightenment/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I wanna hold your ha-a-a-a-a-a-and</title>
		<link>http://aslamkhan.net/software-development/i-wanna-hold-your-ha-a-a-a-a-a-and/</link>
		<comments>http://aslamkhan.net/software-development/i-wanna-hold-your-ha-a-a-a-a-a-and/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 14:57:22 +0000</pubDate>
		<dc:creator>Aslam</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[factor10]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://aslamkhan.net/?p=303</guid>
		<description><![CDATA[Do you remember that catchy Beatles song? Oh yeah, I´ll tell you something I think you'll understand When I say that something I wanna hold your hand I wanna hold your hand I wanna hold your hand So what made me think about this?  That frustrating construction of the new M5/N1 interchange in Cape Town!! [...]]]></description>
			<content:encoded><![CDATA[<p>Do you remember that catchy Beatles song?</p>
<blockquote>
<pre style="font: normal normal normal 11px/normal verdana; line-height: 16px; padding: 10px;">Oh yeah, I´ll tell you something
I think you'll understand
When I say that something
I wanna hold your hand
I wanna hold your hand
I wanna hold your hand</pre>
</blockquote>
<p>So what made me think about this?  That frustrating construction of the new M5/N1 interchange in Cape Town!!  When you&#8217;re sitting in traffic, you can&#8217;t do anything but look and think.  And I&#8217;ve seen this scaffolding get taller and taller and wider and wider and longer and longer and more and more people appear on it each day.</p>
<div id="attachment_311" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-311 " title="Sourced from http://www.capetown.gov.za" src="http://aslamkhan.net/wp-content/uploads/2010/02/KB_3_Jan_10_h.jpg" alt="Sourced from http://www.capetown.gov.za" width="500" height="333" /><p class="wp-caption-text">Sourced from http://www.capetown.gov.za</p></div>
<p>I know that one day, they will remove the scaffolding and the concrete will just hang there in mid air on those massive pillars and walls that they&#8217;re busy building, and I won&#8217;t be sitting in traffic any longer, and it will all just work.</p>
<p>What a shame that software is not like that !!  So many people get turned on by scaffolding.  And The Beatles sang on &#8230;</p>
<blockquote>
<pre style="font: normal normal normal 11px/normal verdana; line-height: 16px; padding: 10px;">And when I touch you i feel happy, inside
It's such a feeling
That my love
I can't hide
I can't hide
I can't hide</pre>
</blockquote>
<p>And just like the M5 construction, so much scaffolding gets built, and so many people climb on.  But then, they don&#8217;t climb down.  And they don&#8217;t tear down the scaffolding.  And it just stays there mashed in with the concrete bits.  And then they ask people to use it.  And it takes strain and then it&#8217;s a performance problem, or a load problem, or it just crashes down.</p>
<p>I do use scaffolding, but most of the time it&#8217;s in a spike and more often it&#8217;s in a test, just to get me over my point of fear.  Deploying software with scaffolding is just dangerous and negligent.  I really don&#8217;t want to drive my car over the M5 interchange while those thin steel pipes are holding up the concrete slabs.</p>
<p>But above all of that, the most important scaffolding is social scaffolding.  It&#8217;s better to provide human scaffolding to support each other on a team that is focused on delivering quality software.  It&#8217;s worse to plug in weak struts in the code base that will just collapse when the next developer builds on top of it.  Very un-ubuntu!</p>
<p style="text-align: center;"><img class="size-full wp-image-312 aligncenter" title="Torch Relay from the Beijing Olympics.  Sourced from http://torchrelay.beijing2008.cn" src="http://aslamkhan.net/wp-content/uploads/2010/02/Img214037659.jpg" alt="Sourced from http://torchrelay.beijing2008.cn" /></p>
<p>So, the Beatles song still holds true, but only for social scaffolding.</p>
<blockquote>
<pre style="font: normal normal normal 11px/normal verdana; line-height: 16px; padding: 10px;">Yeah you, got that something
I think you'll understand
When I say that something
I wanna hold your hand
I wanna hold your hand
I wanna hold your hand
I wanna hold your ha-a-a-a-a-a-and</pre>
</blockquote>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Faslamkhan.net%2Fsoftware-development%2Fi-wanna-hold-your-ha-a-a-a-a-a-and%2F&amp;title=I%20wanna%20hold%20your%20ha-a-a-a-a-a-and" id="wpa2a_14"><img src="http://aslamkhan.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://aslamkhan.net/software-development/i-wanna-hold-your-ha-a-a-a-a-a-and/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mapping Steve&#8217;s Mind and More</title>
		<link>http://aslamkhan.net/software-development/mapping-steves-mind-and-more/</link>
		<comments>http://aslamkhan.net/software-development/mapping-steves-mind-and-more/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 09:01:26 +0000</pubDate>
		<dc:creator>Aslam</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://aslamkhan.net/?p=297</guid>
		<description><![CDATA[If you hate reading lengthy blog posts and dig the mind map view of the world, then add Steve van der Merwe&#8217;s blog to your feed gadget.  What I really like is his short quick observations and great views about software development.  But for me, it&#8217;s even better that I get to speak to him [...]]]></description>
			<content:encoded><![CDATA[<p>If you hate reading lengthy blog posts and dig the mind map view of the world, then add S<a href="http://www.stevevandermerwe.net/blog/">teve van der Merwe&#8217;s blog</a> to your feed gadget.  What I really like is his short quick observations and great views about software development.  But for me, it&#8217;s even better that I get to speak to him regularly, in person.  If you&#8217;re in the Cape Town area, make a point of finding him and chatting to him.  He makes ubuntu real.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Faslamkhan.net%2Fsoftware-development%2Fmapping-steves-mind-and-more%2F&amp;title=Mapping%20Steve%26%238217%3Bs%20Mind%20and%20More" id="wpa2a_16"><img src="http://aslamkhan.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://aslamkhan.net/software-development/mapping-steves-mind-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>97 Things Every Programmer Should Know</title>
		<link>http://aslamkhan.net/events/97-things-every-programmer-should-know/</link>
		<comments>http://aslamkhan.net/events/97-things-every-programmer-should-know/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 08:54:30 +0000</pubDate>
		<dc:creator>Aslam</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://aslamkhan.net/?p=295</guid>
		<description><![CDATA[One of my contributions to 97 Things Every Programmer Should Know will be included in the book.  My good friend and colleague, Niclas Nilsson, also has a contribution which will be in the book as well.  But don&#8217;t just read mine, read all 97 and the amazing contributions that did not make it to the [...]]]></description>
			<content:encoded><![CDATA[<p>One of <a href="http://programmer.97things.oreilly.com/wiki/index.php/Ubuntu_Coding_for_Your_Friends">my contributions</a> to <a href="http://programmer.97things.oreilly.com/wiki/index.php/Contributions_Appearing_in_the_Book">97 Things Every Programmer Should Know</a> will be included in the book.  My good friend and colleague, <a href="http://niclasnilsson.se/">Niclas Nilsso</a>n, also has a <a href="http://programmer.97things.oreilly.com/wiki/index.php/Thinking_in_States">contribution</a> which will be in the book as well.  But don&#8217;t just read mine, read all 97 and the amazing contributions that did not make it to the printed book as well.  I have know idea how Kevlin Henney managed to select these 97 things from so many contributions.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Faslamkhan.net%2Fevents%2F97-things-every-programmer-should-know%2F&amp;title=97%20Things%20Every%20Programmer%20Should%20Know" id="wpa2a_18"><img src="http://aslamkhan.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://aslamkhan.net/events/97-things-every-programmer-should-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forced compliance is an obstruction to discipline</title>
		<link>http://aslamkhan.net/software-development/forced-compliance-is-an-obstruction-to-discipline/</link>
		<comments>http://aslamkhan.net/software-development/forced-compliance-is-an-obstruction-to-discipline/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 21:11:30 +0000</pubDate>
		<dc:creator>Aslam</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[discipline]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://aslamkhan.net/?p=283</guid>
		<description><![CDATA[I am amazed, yet again, that people try to force others to comply to a process, standard, or whatever.  The traditional justification is to &#8221; have governance otherwise everything will fall apart&#8221;. Surely, we have learned enough from spectacular failures that governance that does not give people an opportunity to exercise self discipline.  When you give [...]]]></description>
			<content:encoded><![CDATA[<p>I am amazed, yet again, that people try to force others to comply to a process, standard, or whatever.  The traditional justification is to <em>&#8221; have governance otherwise everything will fall apart&#8221;.</em> Surely, we have learned enough from spectacular failures that governance that does not give people an opportunity to exercise self discipline.  When you give a person a chance to develop personal discipline, then forced compliance is unnecessary.  With forced compliance, we force people into ignoring their own discipline because the system will <em>&#8220;sort&#8221;</em> it out for you.  It breeds an attitude of <em>&#8220;the system failed me and it&#8217;s not my fault&#8221;</em>.</p>
<p>This discipline I am talking about is a personal attitude to everything.  Some things may be the discipline to</p>
<ul>
<li>not check in code that is broken</li>
<li>fix your own or someone else&#8217;s broken code</li>
<li>find options for looming failure</li>
<li>be accountable when you&#8217;ve accepted responsibility</li>
<li>admit error when you make a bad judgement</li>
<li>commit to learn in the face of ignorance</li>
<li>share because you just should anyway</li>
</ul>
<p>Of course, I am being deliberately idealistic.  But wouldn&#8217;t it be really nice if everyone just accepted discipline as something that needs to be developed personally.  Imagine it for a moment &#8230; so many XP values and principles seem a lot easier to adopt.  Just imagine it.</p>
<p>A forced compliance style of governance is a lot about trying to compensate for lack of trust and admitting that we are more likely to fail than succeed.  On the other hand, discipline is not pain, suffering and anguish.  It&#8217;s only sadistic if you implement discipline for nothing.</p>
<p>In ubuntu coding, discipline is a necessary quality.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Faslamkhan.net%2Fsoftware-development%2Fforced-compliance-is-an-obstruction-to-discipline%2F&amp;title=Forced%20compliance%20is%20an%20obstruction%20to%20discipline" id="wpa2a_20"><img src="http://aslamkhan.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://aslamkhan.net/software-development/forced-compliance-is-an-obstruction-to-discipline/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

