Last Week I was for two days at the XP-Days Germany. A great fun conference. Highly recommended. Especially if you prefer highly interactive sessions over somebody telling you how to do your day job right.

One of the highlights for me was the session Taking Baby Steps by Adrian Bolboaca. It was a hands on sessions and worked like this:

We got a little programming task (Tic-Tac-Toe, actually it didn't matter what we implemented as long as it was done in Pairs and using TDD). Nothing special so far.

But there was more: We used git and a timer (dual core with a touch screen, also known as smartphone). The timer got set to 2 minutes. You are allowed to commit when all the tests are green. If you commit you are also reset the timer to 2 minutes. But when the timer goes off you have to revert to your latest commit. You can also do some refactoring and commit when all tests are green again.

So what are the effects of this crazy approach?

  • You'll learn that two minutes are really short and there is very little you can get done in two minutes.
  • You'll learn to refactor really aggressively in the areas you work on, because its the only way to get anything done at all.
  • After some getting used to it, you actually get into some nice steady flow: Think about the next test you want to write; Think about the refactoring you need BEFORE you write the test in order to squeeze the test and the implementation into the time slot; You discuss it with your pairing partner and then you go for it.
  • It took us some time to realize that we can think and discuss without rushing, as long as we do it BEFORE we write some code, since to rollback 0 changes doesn't hurt.
  • We came up with something that I call 'Reverse Refactorings': Refactorings most of the time reduce duplication or other code smells in order to make working with the code easier. Due to the extreme time constraint, we actually introduced duplicated or dead code into the code base, in order to make the implementation for the next test fast and easy. For example at some stage we had the logic in place to put an X on the playing field and to get the information if a spot was empty or taken by an X. The source code looked somewhat like this:

        def token(x : Int, y : Int) =
    if (xPositions((x,y))
    Some(X)
    else
    None

    We decided we want to have Os on the field as well. So the obvious next test was to make two moves and check that at the position of the second move we get a Y token. Implementing that behavior would mean: adding knowledge of the current player to the application, implement switching between the players on every move (or at least after the first), adding another condition to the method above. There was no chance for us to get this done in two minutes! So what we did was: We added a currentPlayer to the game and gave it a fixed value -- commit -- same for oPositions -- commit -- we duplicated also all the places where xPositions where used -- commit. For example the method above looked like this, after that change:

        def token(x : Int, y : Int) =
    if (xPositions((x,y))
    Some(X)
    else if (xPositions((x,y))
    Some(X)
    else
    None

    And only then did we create the test and created the actual new behavior by changing about half of the Xs to Os.


All this was amazingly interesting. Don't get me wrong. I don't suggest to work like this at your normal work, but I think I will commit way more often in the future. Also I am not sure what to think of this reverse refactoring thing. I certainly see the risc of introducing structure that you end up not needing and forgetting it in your code, but it find it intriguing option to have: Introduce some structure to stay green and to ease an otherwise difficult change. This might be helpful especially with these annoyingly large refactorings that tend to take hours or even days and tend to end in a nightmare.

I find it also strange that this looks like stuff happening in the DNA, where (if I got it right) a lot of more or less unused or duplicated pieces hang around, ready to become useful by some random mutation. Although I hope there isn't to much random involved in your development process, at least not on the code level.

Talks

Wan't to meet me in person to tell me how stupid I am? You can find me at the following events: