<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>8th Light Blog: Category Process</title>
    <link>http://blog.8thlight.com/articles/category/process</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>In the minds of the craftsmen...</description>
    <item>
      <title>Some Thoughts On Software Defects</title>
      <description>&lt;p&gt;Software defects are a part of software.  This is a negative subject, but I don&amp;#8217;t want to seem like the software I write is full of defects and bugs.  This blog is addressing how I have seen teams turn a roadblock into a success.  I have read and heard at conferences about teams who take small failures and create a culture of failure around it.  Following are some examples of small failures I have seen and great successes built around them.  Sometimes I see small failures as a path to larger positive culture changes.   &lt;/p&gt;

&lt;p&gt;I think it is safe to say all software that is used and sufficiently complex has defects.  There are many reasons for the defects.  Here are a few of the defect situations I have been in and how our team solved them.  &lt;/p&gt;

&lt;p&gt;I think the important part I learned after evaluating these is that resolution of these situation needs to be fast and high quality.  They need to make the project better off at the end of their resolution.  Success for the customer is the only true result of a project, and defects may not be the most ideal path, but they must lead there.&lt;/p&gt;

&lt;p&gt;The speed is important, but it doesn&amp;#8217;t mean I should rush a solution and throw it in as soon as possible.  To me it means giving the defect the red carpet treatment.  I am trying to capture craftsmanship in the face of adversity.  Every project has its ups and its downs, and a craftsman will take pride in success through any obstacles.  Instead of making defects a slippery slope downhill, they are one step back and we take two steps forward.  &lt;/p&gt;

&lt;h3&gt;Bugs&lt;/h3&gt;

&lt;p&gt;Bugs are a part of every piece of software I have written.  That statement sounds a lot worse than it is.  I have worked on systems where the requirements are dramatically changed week to week (which can be pretty exciting).  There are situations I didn&amp;#8217;t take into account, or some behavior I didn&amp;#8217;t imagine until a real user started hitting the system.  Now, as a developer, I do more mental exercises and think thoroughly through my solutions as I get more experience. This has never made my code bug free.  For that reason, my team needs to know how to deal with bugs (I am fairly certain I am not the only creator of bugs).&lt;/p&gt;

&lt;p&gt;Here is a line from the Pragmatic Programmer  book, &amp;#8220;It doesn&amp;#8217;t matter whether the bug is your fault or someone else&amp;#8217;s.  It is still your problem.&amp;#8221; &lt;/p&gt;

&lt;p&gt;So, the team has a bug list.  We list out the bugs as a todo list in basecamp, so they are not so formal they can be forgotten about.  Then we try to address them and work on new stories.  This worked well enough until there was a big release coming up and our customer came back to us with a big list of bugs.  We put them on the list and continued to fix them, as well as work on stories.  They were getting completed, but there was never an empty bug list.  Then, the customer (who can directly add/edit the bug list) started writing priorities to the bugs.  This one is HIGH priority.  This one is CRITICAL.  This one is IMMEDIATE.  I make the suggestion &amp;#8220;We need some real tool to manage our bug list,&amp;#8221; because I can&amp;#8217;t fit all this in my head.  There isn&amp;#8217;t that much room up there and I need to use it wisely.  One of my team members suggested maybe it wasn&amp;#8217;t the craftsmanship way to have ANY bugs shipped.  I was trying to solve the wrong end of the equation.  So, the team lead put forth a no bugs policy that we all agreed with.&lt;/p&gt;

&lt;p&gt;You can not pick up a new story unless the bug list is empty.&lt;/p&gt;

&lt;p&gt;This made sense to me, but I had reservations about a small/insignificant bug taking priority over a story that is important.  To date, this has not happened, and the bug list has stayed near no bugs.  That doesn&amp;#8217;t mean less bugs are found, it just means they are fixed, and the code is refactored to prevent a future occurrence.  Most importantly, some tool to track bugs never made it into our system.  That was an idea which would have desensitized the team mentality to bugs, whereas with our policy now we are very sensitive to the issue of bugs.  Challenging the craftsmanship of the team members that buggy code is something you should take personally was the right choice.  Bugs got a first class ticket to termination in our system.&lt;/p&gt;

&lt;p&gt;Now, the definition of a bug versus a small feature enhancement is a fine line.  I know I have failed to define it well, and that might contribute to what gets called a &amp;#8220;bug&amp;#8221;.  Often times, the urgency in the customer takes up more mental space than me thinking through it, looking up the acceptance criteria for the story where it was implemented, and going back to  the customer and saying, &amp;#8220;No, that was clearly not a defined scenario, we are going to need a story to turn that button green.&amp;#8221;  Now the next time, it is more than turning a button green, but the precedent has already been set.  All I have been able to do is to strike a balance based upon how much effort it would take to make the bug/feature enhancement work.  If it is a lot of effort, I will double check the bug to make sure it is a bug.  If it is, I fix it.  If not, I will push back to the customer to write a story card.&lt;/p&gt;

&lt;h3&gt;Production Support&lt;/h3&gt;

&lt;p&gt;Once a system goes into production, support begins.  Following along with one of Paul Graham&amp;#8217;s ideas, we have the developers doing the production support.  We are the ones who wrote the system and know the system the best.  When I look at a production support request, I can not only solve it, but make sure it doesn&amp;#8217;t happen again.  Or if it does, make sure it is easy to correct.&lt;/p&gt;

&lt;p&gt;So, during our first deployment of a system, a single team member stepped up as the &amp;#8220;production support&amp;#8221; developer.  I don&amp;#8217;t know if he embraced it or was cornered to it, but as a craftsman, he took the responsibility and ran with it.  As further systems were released, he would sometimes be doing an entire day of production support.  Production support can be a lot of debugging and fixing data, which can be fun, but more times than not is tedious and rhythmic.  Often times when I saw a production support email, I would look to the &amp;#8220;production support guy,&amp;#8221; who could fix it in about half the time I could.  This seems a lot like a silo to me.  Everyone should be able to do production support on any system.  I should have to, because it is a perspective of the system that is important to have.&lt;/p&gt;

&lt;p&gt;In response to this, we came up with a system of triage.  Each day of the week is assigned to a specific developer.  If a support item comes up, it is the job of the triage developer to respond to the client/customer we are working on it.  If it addressed to a specific person, they will inform them. Otherwise it is on the triage developer&amp;#8217;s shoulders to fix the support request before they continue their work for the day.  This ensures the client always has an open line of communication with a developer.  An email never slips through and doesn&amp;#8217;t get addressed.  There is clear responsibility to who should be addressing the support item.  I know the &amp;#8220;production support&amp;#8221; developer is in favor of this system.  As well as the customer, they ask who the triage is for the day and have no qualms about interrupting their work, as they should.&lt;/p&gt;

&lt;h3&gt;Communication and Managing Expectations&lt;/h3&gt;

&lt;p&gt;Recently, I did some integration work with a third party vendor.  They were developing their side of the integration at the same time as us. Not wanting to slow development and wait for their functionality, we decided to write a mock server and integrate with the host according to the spec from the third party vendor.  We received a story from the customer for that and proceeded to make the client for the third party system calls.  We finished our story.  In the demo portion of the iteration planning meeting, we could only demo against our mock server.  This caused some nervousness in the customer (rightly so). I replied, &amp;#8220;Once their side of the system is done, we should be able to send our calls across.&amp;#8221;  Then we received three more similar stories, but different system calls.  We did them, removed the duplication and felt really good about the job we did.  The came their test server.&lt;/p&gt;

&lt;p&gt;Nothing worked!  There were all sorts of communication problems, questions about who implemented the system to what spec, and political questions.  Despite us thinking we were in the right, the stories were signed and the customer said, &amp;#8220;Well, you said this would work.&amp;#8221;  At first, I tried to communicate the reason why it didn&amp;#8217;t work, and how we can move forward.  We came to spend a lot of time on this, and the team felt the integration should be its own story.  The customer pushed back, &amp;#8220;Well, you said this would work.&amp;#8221;  There was some tension, because both sides were right.  We didn&amp;#8217;t believe it was our fault it didn&amp;#8217;t work (neither did the customer), but we told them it would.  Rather than let out the righteous indignation I was feeling, one of the team members mentioned.&lt;/p&gt;

&lt;p&gt;&amp;#8220;We should not have assured you it would work.&amp;#8221;&lt;/p&gt;

&lt;p&gt;That one line brought the real problem to the front for both sides.  We didn&amp;#8217;t know whether it would work or not, just that we wrote the right code to the specification we had at the time.  That code by itself has no value to the customer without it working, though.  Once that line was said, everyone in the room sat for a second, then understood.  The expectation over defect versus behavior was out of sync.  A little ownership over the defect was all we needed to ease the tension and move forward.  It is unproductive to get stuck in a stalemate of expectations.  When in doubt, the customer is always right.&lt;/p&gt;</description>
      <pubDate>Tue, 24 Jun 2008 06:13:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:cb09b310-eb94-4da9-9200-f289d8416d74</guid>
      <author>Paul Pagel</author>
      <link>http://blog.8thlight.com/articles/2008/06/24/some-thoughts-on-software-defects</link>
      <category>Craftsmanship</category>
      <category>Process</category>
      <category>Paul</category>
      <category>Bugs</category>
    </item>
    <item>
      <title>Agile Production Support: Final brush strokes</title>
      <description>&lt;p&gt;There is no perfect software.  At least I have never seen it.  Bugs and minor feature changes are indications people are using your software.  Real users hit a system in ways that no control group can, and on non-critical applications, this is the best way to test your software.  Let people use it and see what happens.  This is goes in line with the agile philosophy of release early and often.  Get your application out there as fast as you can, so you can mold the finishing touches around the real users experience rather than a faux-environment.&lt;/p&gt;

&lt;p&gt;There is some conversation about what is and what is not a &#8220;bug&#8221; in the software world.  That is not a conversation I would like to partake in here, so lets call both bugs, integration items,  minor feature enhancements, and things that fall through the cracks of development tweaks.  It doesn&amp;#8217;t matter what the nature of origin is, these are all things that MUST get done.&lt;/p&gt;

&lt;p&gt;After the release of one of our products, a load of tweaks came in from the customer.  As proud craftsman, we decided tweaks were our responsibility, and we would take them on in addition to our normal iteration.  So we started to do them, to the detriment of our iteration.  We accomplished only about half of our iteration&amp;#8217;s velocity.  &lt;/p&gt;

&lt;p&gt;The next iteration, much to our surprise, we were twice as busy with production support.  This is about the time that a developer looses a little faith.  What did we miss?  Is this high quality software we are writing?  So we lost even more velocity when it came to iteration 2 after the release. Also, the customers were now unable to accurately plan new features moving forward due to an unstable velocity.&lt;/p&gt;

&lt;p&gt;It is so hard to predict or estimate production support and tweaks.  However, we needed to be able to so that the production support didn&amp;#8217;t leave such a footprint in the project.  It felt and looked like we were not getting very much done, even though we were working harder than usual.  It was the time being put into a vacuum and being unaccounted for that was troubling the project.  It also had a negative effect on the morale of the team.&lt;/p&gt;

&lt;p&gt;We came up with a card, we call the &#8220;Production Support Card.&#8221;  The amount of the iteration&amp;#8217;s velocity this card took up was calculated by the amount of time we spent on production support the previous iteration averaged with the amount of time allocated for that iteration(sound like a familiar formula?).  It is added as a card to the next iteration.  If the developers only spend 6 of the 10 points on production support, it is expected that they will complete 4 points worth of stories, which are automatically entered in the iteration.  For the first iteration where it becomes apparent that we need a production support card, we set the point value of the card at 0 and track how much time we spend, bumping out of the iteration the least important stories if needed.&lt;/p&gt;

&lt;p&gt;So, what does this tracking buy you, if you have to spend the same amount of time on tweaks?  First, it allows transparency to the customer about what you are working on that week.  When they see your normal velocity of 20 points turn into 5 points, they have a right to be worried.  When you say, in a defeated voice &#8220;we were fixing bugs,&#8221; they also have a right to worry about the stability of the code you have been writing, even though this spike in minor changes to the application is a part of the normal process.&lt;/p&gt;

&lt;p&gt;Second, it raises the moral of the team, because they are working towards a specific goal, to remove the production support cards from the iteration.  Also, we get the satisfaction of maintaining a velocity in points, which is something we know so well it is hard to work without.&lt;/p&gt;

&lt;p&gt;It takes a few iterations, and the team squeezes the life out of the production support card, putting you back on track.  After those iterations, the footprint goes from sasquatch to mini-me.&lt;/p&gt;

&lt;p&gt;It also helps the customer plan around production support.  Their time lines and release dates are made from a projection of feature difficulty to development&amp;#8217;s velocity.  Over a long period of time, the velocity normalizes, and it hurts the projections to have hiccups.  If you have production support data, you can predict about how much time around a release you will loose on the initial release of brand new development.&lt;/p&gt;</description>
      <pubDate>Mon, 18 Feb 2008 14:39:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:b81e3e34-826b-4e54-bc8b-71f9acbc891a</guid>
      <author>Paul Pagel</author>
      <link>http://blog.8thlight.com/articles/2008/02/18/agile-production-support-squashing-release-bugs</link>
      <category>Craftsmanship</category>
      <category>Coding</category>
      <category>Process</category>
    </item>
    <item>
      <title>Emotional Iterations</title>
      <description>&lt;p&gt;After all the cards are written and estimated, it is time for the customers to pick the first iteration, for which they need a velocity and a length of time.  Usually after a creatively exhausting meeting, both are chosen arbitrarily , or with minimal stimulus.&lt;/p&gt;

&lt;p&gt;I have been on projects with one week iterations and one month iterations, all with varied success.  The formula for the length seems to have different inputs for success, involving customer participation, speed of changing requirements, and physical location.  All of these factors are prescriptive, attempting to plan the needs of the team based upon known constraints, something software craftsman are very familiar with.  The most successful iteration length for the teams I have been on is one week, regardless of other constraints.  Thanks to an excerpt from Donald Norman&amp;#8217;s new book, &lt;a href="http://www.amazon.com/Emotional-Design-Love-Everyday-Things/dp/0465051367/ref=pd_bbs_sr_3?ie=UTF8&amp;amp;s=books&amp;amp;qid=1202420238&amp;amp;sr=8-3"&gt;Emotional Design&lt;/a&gt;, I think I understand why environmental constraints do not affect iterations ideal length.&lt;/p&gt;

&lt;p&gt;&#8220;&amp;#8230;being happy broadens the thought process and facilitates creative thinking.  [Alice] Isen discovered that when people were asked to solve difficult problems, ones that required unusual &#8220;out of the box&#8221; thinking, they did much better when they had just been given a gift &#8211; not much of a gift, but just enough to make them feel good.&#8221;&lt;/p&gt;

&lt;p&gt;One week iterations are the perfect length for all of these emotions to be useful.  At the begging of an iteration is when you solve the tougher problems, not worried about a deadline.  Your creativity can know no boundaries, everything is possible.  A refactoring spanning a few days seems manageable, a large story looks like it can get done without sweating.  Really, as a developer, the day after the iteration meeting is often the happiest day you have, especially if you hit your velocity.  You are ready to spread your wings and impress the customers at the next iteration meeting. &lt;/p&gt;

&lt;p&gt;The book goes on to say, &#8220;&amp;#8230;when people are anxious they tend to narrow their thought process, concentrating upon aspects directly relevant to a problem.&#8221;&lt;/p&gt;

&lt;p&gt;As the iteration progresses, you start to feel the meeting.  You think &#8220;I can&amp;#8217;t get all of my ideas done by the meeting&#8221; and &#8220;I can&amp;#8217;t show up empty handed&#8221;.  This is when some of the more grandiose ideas get cut and you start to concentrate more on the acceptance of stories.  As it gets closer to iteration day, you become more granular, focusing all of your energy on acceptance of stories.  This blocks out the bigger designs and system solutions from your frame of reference.  &lt;/p&gt;

&lt;p&gt;Even within a solution, I have banged my head against a solution for hours, without thinking to sidestep it.  It is always harder to think of an alternative solution to a problem on the last day of an iteration than on the first.&lt;/p&gt;

&lt;p&gt;This is good for iterations, you cycle through all of these emotions, not staying on any of them too long.  Too many days at the beginning of an iteration leaves developers wide eyed about refactorings or experiments.  Sprinting at the end of an iteration for too long leaves a team stressed and under productive.  However, all those emotions in small doses, on a continuum is good for the project and good for the developer.  You get to flex your developer muscles and try out something cool, but by the end of the iteration, you are focussed on finishing the features the customer needs.&lt;/p&gt;</description>
      <pubDate>Thu, 07 Feb 2008 21:36:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:fe914a9b-b7a6-42f7-a51d-442a633a3600</guid>
      <author>Paul Pagel</author>
      <link>http://blog.8thlight.com/articles/2008/02/07/emotional-iterations</link>
      <category>Process</category>
    </item>
    <item>
      <title>Lending a Hand</title>
      <description>&lt;p&gt;At &lt;a href="http://agile2007.com"&gt;Agile 2007&lt;/a&gt;, we put on a workshop called RailsFest.  The original intent was to provide a one-day session that conference attendees could visit to get an opportunity to work on a Ruby on Rails project.  What that project was to be, we didn&amp;#8217;t really know.  In the way that things sometimes work out, we ended up with the opportunity to work all week with a non-profit organization that has touched more lives than most of us ever will.&lt;/p&gt;

&lt;p&gt;The organization that we were working with is called &lt;a href="http://manoamano.org"&gt;Mano a Mano&lt;/a&gt;.  Their mission is to &amp;#8220;improve the health and well-being of impoverished Bolivians.&amp;#8221;  Segundo Velasquez, president of Mano a Mano, was our on-site customer, and I was lucky enough to work with him for part of the week.  At first, he was a little unsure of his role in the process, but by the end of the first afternoon he had become comfortable in expressing what he wanted the software to be.  It was a lot of fun watching Segundo learn about and adapt to the approach that we were taking in creating software for his organization.&lt;/p&gt;

&lt;p&gt;Mano a Mano works in a very different way than most other charity organizations.  Though they provide aid to the economic poor in Bolivia, it is not a free handout.  The intent of the whole process is to bootstrap poor communities.  Segundo told me of a specific project where they were able to increase the per capita income by 100% (from $150 to $300) the first year.  By helping to provide the basic necessities that we often take for granted (e.g. potable water, roads to allow for the transportation of goods and people, etc.), the citizens were able to stop worrying about these basic things and concentrate on improving the lives of themselves, their families and their community.&lt;/p&gt;

&lt;p&gt;Though RailsFest ended last Friday, there is still work to be done.  If you are interested in giving back a little bit through your craft, please drop me a line at jim@8thlight.com.&lt;/p&gt;</description>
      <pubDate>Tue, 21 Aug 2007 22:25:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:dfdaf90e-8568-4480-871d-8b353cc35c91</guid>
      <author>Jim</author>
      <link>http://blog.8thlight.com/articles/2007/08/21/lending-a-hand</link>
      <category>Process</category>
    </item>
    <item>
      <title>That's Not Agile! </title>
      <description>&lt;p&gt;&lt;em&gt;Removing the religion from software development&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I had feared those words.  I&amp;#8217;d often been tempted to use them myself, but something told me I shouldn&amp;#8217;t.  As I sat in a planning game on a previous job, I heard the words.  They still make me cringe.  &#226;&#8364;&#339;We can&amp;#8217;t do it that way.  That&amp;#8217;s not Agile.&#226;&#8364;&#157;&lt;/p&gt;

&lt;p&gt;I&amp;#8217;m a big fan of agile.  I&amp;#8217;ve long been convinced that the agile movement truly is uncovering ways to do software better.  It&amp;#8217;s revolutionizing the way that companies approach software.  At 8th Light we&amp;#8217;re using Agile to help us deliver the highest quality software possible to our clients.  I wonder though, how exactly something can be classified as un-agile?&lt;/p&gt;

&lt;p&gt;What is Agile anyway?  Can it be measured?  Can one thing really be more agile than another?  If I had a yardstick and I was going to measure Agile,  what would the markings be along the stick?  What units would I use?  &amp;#8216;Points&amp;#8217; has already been taken, so maybe I should invent a new unit.  I&amp;#8217;ll call it the &lt;em&gt;Agl&lt;/em&gt;.  For every hour of pair programming an organization does it gets 10 &lt;em&gt;Agls&lt;/em&gt;.  Unit tests are worth 1 &lt;em&gt;Agl&lt;/em&gt; each.  Acceptance tests get 100 &lt;em&gt;Agls&lt;/em&gt;.  I&amp;#8217;d use negative values too.  For every page of documentation written, an organization looses 40 &lt;em&gt;Agls&lt;/em&gt;, but the group running in iterations gets 1000 &lt;em&gt;Agls&lt;/em&gt;.  One week iterations are worth 2000.&lt;/p&gt;

&lt;p&gt;The problem is that as a development organization adopts Agile and buys into various processes and practices, the temptation quickly grows to covert that development process into religion.  &#226;&#8364;&#339;We can&amp;#8217;t do code reviews, that&amp;#8217;s not Agile!&#226;&#8364;&#157;  &#226;&#8364;&#339;We don&amp;#8217;t write documents, that not Agile!&#226;&#8364;&#157;  What may start as genuine excitement and passion can quickly become religious dogma when those involved in the process lose sight of why they do what they do.  Let me say that while I am a religious guy, I hate religion.  Religion, to me, means action without thought:  doing or saying something because that is the thing that you are supposed to say or do.  I&amp;#8217;d rather call what I have faith.  Faith comes from beliefs or values held and turned into day-to-day living.&lt;/p&gt;

&lt;p&gt;Since we are talking about religion, I thought I story from the Bible might be appropriate.  Jesus and some friends were sitting down to eat when some super-religious folks showed up and started berating Jesus for letting his friends eat with dirty hands.  These religious-types had established an elaborate ceremony for washing hands that had very little to do with removing bacteria.  Jesus comes down hard on these guys for exchanging true principles for religious dogma.  He responds by handing them the principle that does really matter.  &#226;&#8364;&#339;Nothing outside a man can make him &amp;#8216;unclean&amp;#8217; by going into him. Rather, it is what comes out of a man that makes him &amp;#8216;unclean.&amp;#8217; &amp;#8221; (1)  Here one of the most well-known religious leaders of all time shows his followers that it is the true principles that matter, not the religious practices or rules.&lt;/p&gt;

&lt;p&gt;In software planning situations and day to day development we are faced with hundreds of little decisions about how to do our work.  Should we throw this code out and start building the whole thing from scratch?  Should we iteratively improve the code and slowly arrive at a better design?  Do I write a test for this code?  Should I pair with someone or just write this myself?  When making these decisions we need guidance, something to help us understand if one thing is better than another.  &#226;&#8364;&#339;Agile&#226;&#8364;&#157; is not that thing.  Agile is just the label put on a whole spectrum of practices.  Those guiding lights we need are principles.  Principles are the domain-specific set of beliefs that an organization has adopted.  They reflect what the organization values.  I think it&amp;#8217;s possible that many organizations get swept up in the excitement and freedom of agile practices that they skip this critical step of establishing the their principles.  Kent Beck lays out a set of principles for extreme programming.  Baby Steps, Failure, Quality, Redundancy, Opportunity, Flow, Reflections, Diversity, Improvement, Self-Similarity, Mutual Benefit, Economics, and Humanity(2) help direct an organization when it is trying to figure out the how of software development.  Whenever I&amp;#8217;ve heard Kent speak, he always comes back to the principles and values behind the practices in extreme programming.  UncleBob has established a great set of principles that help us discuss and qualify designs.  The Single Responsibility Principle, the Open-Closed Principle, the Don&amp;#8217;t Repeat Yourself Principle(3), and others are guiding lights for design decisions.  These give teams concrete evaluators that keep design discussions productive and prevent them from deteriorating into contests of dogma.  Alistair Cockburn writes about 7 properties in Crystal Clear that can be translated into principles:  Frequent Delivery, Reflective Improvement, Osmotic Communication, Personal Safety, Focus, East Access to Expert Users, Automated Tests, Configuration Management, and Frequent Integration (4).  I don&amp;#8217;t want to delve too deeply into these principles here, but an organization in the process of adopting agile should.  Each of these &lt;a href="http://agilemanifesto.org/" target="_new"&gt;manifesto&lt;/a&gt;-signing authors have explained these principles wonderfully in their books.&lt;/p&gt;

&lt;p&gt;At issue in my planning meeting was whether or not to require a certain feature in a third party library for which we are shopping.  At the time, we didn&amp;#8217;t have a need for this feature, but we anticipated that it may show up an upcoming story.  The person who spoke up saying &#226;&#8364;&#339;That&amp;#8217;s Not Agile&#226;&#8364;&#157; was really referencing the XP value of simplicity.  &#226;&#8364;&#339;Solve today&amp;#8217;s problems today and tomorrow&amp;#8217;s problems tomorrow.&#226;&#8364;&#157;(2)  This would suggest that one shouldn&amp;#8217;t take on additional complexity until it is needed.  However, when purchasing a third party library, perhaps the principle of Economics might suggest that paying a little more for this library today will save a lot of time and money later and potentially avoid purchasing the library twice.  Which is the right decision?  I don&amp;#8217;t know, but after having agreed on the principles that guide our decisions, we can have the conversations around those principles and pick a way forward.&lt;/p&gt;

&lt;p&gt;An organization transitioning to some flavor of agile ought to first clarify what its organization&amp;#8217;s principles are.  Read Beck or Martin or Cockburn or your favorite Agile author and choose the principles that you want to live by.  Second, make the principles visible.  Put them up on a wall.  Have meetings where team members present a principle.  Refer to them as you pair.  Write about them, read about them, explore them.  At 8th Light, we&amp;#8217;ve put them on our &lt;a href="http://www.8thlight.com/main/about"&gt;website&lt;/a&gt;.  Revisit them when starting a new project.  If you are working with a consultant, ask them to take you through a values and principles exercise.  If you are a consultant, please don&amp;#8217;t miss this critical part of transitioning to Agile.  Making your principles part of the every day vernacular of your organization will take you to a place where design and planning discussions stay productive and you&amp;#8217;ll hopefully never hear &#226;&#8364;&#339;That&amp;#8217;s not Agile!&#226;&#8364;&#157; again.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;End Notes:&lt;/strong&gt;&lt;br&gt;
1) &lt;a href="http://www.biblegateway.com/passage/?search=Mark%207:1-23;&amp;amp;version=31" target="_new"&gt;Mark 7:1-16&lt;/a&gt;&lt;br&gt;
2) Beck, Kent. &lt;u&gt;Extreme Programming Explained: Embrace Change (2nd Edition).&lt;/u&gt; Addison-Wesley Professional.  2004.&lt;br&gt;
3) Martin, Robert C. &lt;u&gt;Agile Software Development, Principles, Patterns, and Practices.&lt;/u&gt; Prentice Hall. 2002.&lt;br&gt;
4) Cockburn, Alistar.  &lt;u&gt;Crystal Clear: A Human-Powered Methodology for Small Teams&lt;/u&gt; Addison-Wesley Professional.  2004.&lt;br&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 05 Aug 2007 11:51:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:63e97027-6a49-4d5b-adae-b5de8903dd75</guid>
      <author>Doug Bradbury</author>
      <link>http://blog.8thlight.com/articles/2007/08/05/thats-not-agile</link>
      <category>Craftsmanship</category>
      <category>Process</category>
      <category>doug</category>
      <category>bradbury</category>
      <category>agile</category>
      <category>principle</category>
      <category>value</category>
      <category>religion</category>
      <category>development</category>
    </item>
    <item>
      <title>Shake Things Up</title>
      <description>&lt;p&gt;The most widespread and common greeting in the American culture is the handshake.  Handshakes are shared between anyone meeting for the first time, to finalize a business deal, and to end a conversation.  I spend a good deal of time around 2nd and 3rd generation Korean-Americans.  In Korean culture, like many Asian cultures, the handshake is replaced by bowing.  In these transitional immigrant generations, the bow and the handshake have been merged into one awkward action.  I was recently walking through the reception line at the wedding of 2 second generation Korean-Americans and I went to greet the 1st generation parents.  I was going to try to be respectful and offer a bow instead of a handshake, but just as I began to bend, a large hand was thrust out in front of me.  I felt myself lucky that I didn&amp;#8217;t end up with the guys finger in my nose.&lt;/p&gt;

&lt;p&gt;One of the things I immediately noticed as I began working with the craftsmen at 8th Light is that everyday I walked into the office, every member of the team shook my hand.  As each team member left for the day, he shook the hand of everyone who was left.  I expect this on the first day, as you always shake hands with everyone on your first day.   On the second day, I thought maybe they had all forgotten that they met me yesterday. As I realized that this would continue, It really made me start thinking.  &lt;/p&gt;

&lt;p&gt;As I went to work with another team for a little while I came to really miss the handshakes.  I&amp;#8217;d walk in the morning and maybe get an eyebrow flash from my teammates.  A &#226;&#8364;&#339;Hello&#226;&#8364;&#157; would come if I was really lucky.  I decided enough was enough, so I just started shaking hands.  At first, I got some really weird looks and was left hanging a few times.  The looks seem to ask &#226;&#8364;&#339;Why are you shaking my hand, we see each other every day.&#226;&#8364;&#157;  But slowly it started to catch on.  My  teammates began to expect a handshake from me at the start and end of each day.&lt;/p&gt;

&lt;p&gt;Here&amp;#8217;s what I think these bookend handshakes do for a team.
First, believe it or not, a handshake becomes an intimate gesture.  It communicates genuine care and concern for each other.  To me it&amp;#8217;s a physical expression of the XP value of Humanity.&lt;/p&gt;

&lt;p&gt;Second, it communicates respect.  Sometimes design and project discussion can get very heated, especially if you are working with a passionate group of people.  If your days begin and end with a handshake, everyday is bookended by a statement of mutual respect.  There is a proverb that exhorts people to &#226;&#8364;&#339;Not let the sun go down on your anger.&#226;&#8364;&#157;  That handshake is a way to let go any residual anger from the day and commit the next to dealing with each other with respect.&lt;/p&gt;

&lt;p&gt;Third, It&amp;#8217;s an honest statement about the hours you are working and the time you are putting in on the project.  In a handshake-free environment, if I&amp;#8217;ve had to leave the office early, I&amp;#8217;d usually try to sneak out without anyone noticing.  At the time I was in an office culture that promoted flexible hours, but you always felt like people were watching you to make sure you were still putting in your hours.   I always put my time in, but because I sometimes played with my schedule quite a bit, I was always afraid that someone would perceive my time poorly.  When an handshake begins and ends your day, you are being direct and up front about your time.  You are communicating at the start of the day &#226;&#8364;&#339;I&amp;#8217;m here, I&amp;#8217;m ready to work&#226;&#8364;&#157; and at the end of the day &#226;&#8364;&#339;I&amp;#8217;m gone, my day is over.&#226;&#8364;&#157;  There are no apologies, no sneaking in or out, and no elaborate time-tracking system.  Your teammates trust that you are working as much as you should be and you are not likely to try and cheat you company or your team out of your time week-to-week. &lt;/p&gt;

&lt;p&gt;Try it in your team.  It&amp;#8217;s a morale boosting behavior that will cost a team nothing to implement, but will be one baby step to improving the strength and productivity of the team.&lt;/p&gt;</description>
      <pubDate>Thu, 19 Jul 2007 18:55:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:e51b03d9-144a-4ce0-85a8-ab3a3e4b74c7</guid>
      <author>Doug Bradbury</author>
      <link>http://blog.8thlight.com/articles/2007/07/19/shake-things-up</link>
      <category>Craftsmanship</category>
      <category>Process</category>
      <category>Etiquette</category>
      <category>doug</category>
      <category>bradbury</category>
      <category>handshake</category>
      <category>team</category>
      <category>value</category>
      <category>etiquette</category>
    </item>
    <item>
      <title>Pair Me Up</title>
      <description>&lt;p&gt;I am a better pair than solo developer.  For me, software is a collaborative art from the start to the end.  Starting from the beginning of a project, where the developers need to collaborate with the customer s and stakeholders of the project to learn about the business domain.  Then working with the project manager for sorting priorities and deadlines to make the business goals realizable in the fastest amount of time.  Also development is collaboration, via pair programming, to produce a dialog between the developers on their vision of the implementation of this code.  The last part, pair programming, is what I would like to focus on.&lt;/p&gt;

&lt;p&gt;Having a pair has the traditional advantages of keeping disciplined and sharing the knowledge base.  That is a starting point, but pairing is quintessentially important to my process due to the diversity it provides.  A diversity of approach and implementation provide me with enough to perform at a highly creative and expressive manner.&lt;/p&gt;

&lt;p&gt;Since you are not driving the keyboard and control of the computer, there is more time for contemplating code you wrote and direction you are moving.  Most of my good ideas come from the time when someone else is typing.  Since I was just working on the practical, I have my head wrapped around the code, and since I am not responsible for typing, I can reflect in the abstract.  &lt;/p&gt;

&lt;p&gt;I have heard many places that a benefit of test driven development is that the tests force you to design the API of the objects you are using as someone would use them.  Well, pair programming, in compliment with &lt;a href="http://www.stickyminds.com/sitewide.asp?Function=WEEKLYCOLUMN&amp;amp;ObjectId=9101&amp;amp;ObjectType=ARTCOL&amp;amp;btntopic=artcol"&gt;programming ping-pong&lt;/a&gt;, forces your code to be clean.  When you write a test, it isn&amp;#8217;t you that makes it pass, so you have to think with expression and intent in mind.  So, you end up writing the test FOR your pair.  It becomes a form of writing, not just coding.  &lt;/p&gt;

&lt;p&gt;Sometimes, the test needs to be explained.  While explaining something to a pair, your test must hold up your own arguments.  Often times when I come to explain something I just wrote, I think of a better way to do it.  Explanation is the best form of validating you understand where you are going well.&lt;/p&gt;

&lt;p&gt;Also, pairing is how I learned most of my developer personality.  Taking bits and pieces of the traits of my pairs through years of pairing.  My style is a composite of pairing with various mentors and peers of mine.  It has shown me how people approach this craft.&lt;/p&gt;</description>
      <pubDate>Thu, 14 Jun 2007 08:08:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:89c538c1-ddb0-430d-ba14-49ee401b91e6</guid>
      <author>Paul Pagel</author>
      <link>http://blog.8thlight.com/articles/2007/06/14/pair-me-up</link>
      <category>Craftsmanship</category>
      <category>Coding</category>
      <category>Process</category>
      <category>Testing</category>
    </item>
    <item>
      <title>Three Reasons to Use FitNesse</title>
      <description>&lt;p&gt;&lt;strong&gt;1.  You find your self delivering software to your customer who says &amp;#8220;That&amp;#8217;s not what I asked for.&amp;#8221;&lt;/strong&gt;  &lt;/p&gt;

&lt;p&gt;Using &lt;A href="http://fitnesse.org" target="new"&gt;FitNesse&lt;/a&gt; allows you to communicate with the customer up front.  Before a line of code is written, you can have all the behavior expressed in an executable format.  Make sure the customer  helps to write these tests.  Once your FitNesse test is in place, all you need to do it make it pass. Due to the cut-and-dry aspect of executable specifications (FitNesse test), one the spec is passing, you have delivered precisely what your customer asked for.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.  Bugs sneak into your system as development progresses and these bugs takes weeks to find and remove.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;FitNesse is a tools to help you drive development with tests.  When practices with discipline, test driven development will insure that you have a FitNesse test for each and every feature in your system.  The moment a bug is introduced, you will know about it because a FitNesse test will fail.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3.  It is difficult to create documentation for your system and it is constantly out of date because the system is changing.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;FitNesse offers a unique documentation solution.  When ever you write a FitNesse test, you are in fact describing how the system works.  In other words you&amp;#8217;re documenting it.  The web/wiki based nature of FitNesse makes documentation simple and convenient.  The best part is that the documentation in FitNesse  can never go out of date.  Since you&amp;#8217;re keeping your test passing, and your tests are documentation, it&amp;#8217;s impossible for them to lie.
&lt;hr width="100"/&gt;
There is an article I wrote about FitNesse for &lt;a target="new" href="http://www.amazon.com/Windows-Developer-Power-Tools-Turbocharge/dp/0596527543/sr=8-1/qid=1169220593/ref=pd_bbs_sr_1/102-9322374-5606501?ie=UTF8&amp;amp;s=books"&gt;Windows Developer Power Tools&lt;/a&gt;.  This book, just released today, includes articles on dozens of free tools that .NET developers might benefit from.  If you write .NET code, check it out.  If not, keep in mind that FitNesse will work for almost any language.&lt;/p&gt;</description>
      <pubDate>Fri, 19 Jan 2007 15:50:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:5dd97bb6-6763-4299-89cf-ec5f0cb8e16a</guid>
      <author>Micah</author>
      <link>http://blog.8thlight.com/articles/2007/01/19/three-reasons-to-use-fitnesse</link>
      <category>Process</category>
      <category>Testing</category>
      <category>Micah</category>
    </item>
    <item>
      <title>Got Real?</title>
      <description>&lt;p&gt;I heard about the Getting Real workshop from a good friend who is a web designer/developer.  We used to talk some time ago about using the UI as a tool to drive the development and he told me I should go to the workshop if I could.  I have to be honest, I didn&amp;#8217;t know that much about 37signals and (you&amp;#8217;re welcome to laugh) I didn&amp;#8217;t know that one of the speakers was actually the creator of RubyOnRails.  &lt;/p&gt;

&lt;p&gt;A bit skeptic, I read a blog from somebody that participated in one of the workshops last year and my interest kept growing and growing.  I told one of the company&amp;#8217;s partners to give it a try and to my surprise he registered everybody for it.  &amp;#8220;The workshop better be good!&amp;#8221; I said to myself.&lt;/p&gt;

&lt;p&gt;So there we were, sitting down and waiting to see what these 37signals guys had to say.  Right at the beginning of the presentation I learned that a businessman (Jason), a programmer (David) and a UI designer (Ryan) would be the speakers.  It sounded like a success formula to me:  it would not be about some nerds talking about adding the digit 2 in the 0-1 binary language; it would be about REAL-world professionals talking about REAL web/product development approached from diverse angles beyond the plain and traditional &amp;#8220;bit-and-bytes&amp;#8221; speech I am used to hear in  that kind of activities.&lt;/p&gt;

&lt;p&gt;What a way to start!&lt;/p&gt;

&lt;p&gt;The speakers did a good job on keeping people interested while sharing without any hesitation the fruits of several years of pragmatic experience.  Their advice was rich and wide:  from how to integrate organically the layout and usability design with the programming endeavor using the application itself as a real &amp;#8220;wireframe&amp;#8221;; to business-oriented tips like how to hire the right people effectively.  As an architect (on the traditional sense - building design!) it was refreshing to see Christopher Alexander &amp;#8220;in-action&amp;#8221; on some of their slides while talking about design patterns; and to hear about 37signals&amp;#8217; approach to Mies Van Der Rohe&amp;#8217;s aphorism &amp;#8220;less is more&amp;#8221; applied to all aspects of the product development.&lt;/p&gt;

&lt;p&gt;The workshop was great, definitely worth the time and investment and I have no hesitation recommending it to everyone that wants a more &amp;#8220;holistic&amp;#8221; and practical exposition to what software development should really be (if you want to Get Real!).  A sincere &amp;#8220;thank you&amp;#8221; to the 37signals guys and to everyone there that helped to enrich the workshop with questions and comments.&lt;/p&gt;</description>
      <pubDate>Tue, 24 Oct 2006 04:56:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:f1e855da-df06-4734-9bc4-98a94414745f</guid>
      <author>Gilberto Medrano</author>
      <link>http://blog.8thlight.com/articles/2006/10/24/got-real</link>
      <category>Process</category>
      <category>Gilberto</category>
    </item>
    <item>
      <title>Getting Real Review</title>
      <description>&lt;p&gt;This Monday my colleagues and I went to 37 Signals&amp;#8217; &lt;a href="https://workshopnew.37signals.com"&gt;Getting Real&lt;/a&gt; workshop.  Overall I give the workshop a thumbs up.  They seem to be a good groups of guys.&lt;/p&gt;

&lt;div style="float: right; width: 200px;"&gt;
&lt;img width="200" src="http://8thlight.com/images/getting_real_group.jpg"/&gt;&lt;br&gt;
&lt;span style="color: grey;"&gt;from left to right: DHH, Gilberto Medrano, Paul Pagel, Jason Fried, Me&lt;/span&gt;
&lt;/div&gt;

&lt;p&gt;I&amp;#8217;ll summarize by saying that the workshop is about how 37 Signals works.  How they make decisions, how they build software, how they design software, and how they sell it.  They were very candid about everything and that was refreshing.  &lt;/p&gt;

&lt;p&gt;At the end of it all, my colleagues and I begged the question: what did we learn?  We all agreed that we didn&amp;#8217;t really learn anything except that our philosophy is very similar theirs.  However, there were a few points of contentions.&lt;/p&gt;

&lt;p&gt;37 Signals builds their own software and they have a system that suits their purpose perfectly.  8th Light develops software for clients and that means we have to do things differently.  One difference was acceptance tests.  During the workshop, Gilberto asked what 37 Signals&amp;#8217; opinion was on FIT and acceptance tests.  David (DHH) responded by saying that they don&amp;#8217;t use or need acceptance tests because acceptance tests can&amp;#8217;t capture the design and usability aspects of their software.  I actually had this conversation with DHH a year back or so at a Ruby gathering in Chicago and he was of the same opinion.  I agreed with him then and agree with him now.  If I was building my own software and was essentially my own customer, I wouldn&amp;#8217;t use acceptance tests either.  But when building software for clients, acceptance tests become a critical tools for communication.  Clients have expectations and no matter how many words they use or gestures they make, their intent does not become concrete until you put it down in an executable format.  I would not dare to engage in a contract development arrangement with out acceptance tests.&lt;/p&gt;

&lt;p&gt;There were a few other strategies that work for 37 Signals but wont work for 8th Light, such as hiring strategies and distributed workforce.  Mostly this is based on 8th Light&amp;#8217;s apprenticeship model.  &lt;/p&gt;

&lt;p&gt;If you get the chance to go to their workshop, check it out.  And keep your eye on these guys.    Their tools are pretty sharp and I trust they&amp;#8217;ll impress us plenty more.&lt;/p&gt;</description>
      <pubDate>Fri, 13 Oct 2006 05:02:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:ca3ec924-2373-4397-8286-103a2d3b00ef</guid>
      <author>Micah</author>
      <link>http://blog.8thlight.com/articles/2006/10/13/getting-real-review</link>
      <category>Process</category>
      <category>Micah</category>
    </item>
  </channel>
</rss>
