top of page

The First Step of the Journey

Kata Level: 1

Kata: FizzBuzz

1° Focus: Kata Intro

This is where it all begins. Started with a new team, six people, who have never done katas, TDD or even pairing. First session went well. I went through the principles of Kata Culture:

What is a code kata? It's time we deliberately take to learn and expand our development skills and knowledge. We use a code problem as a medium with which we explore and learn.

What is Kata Culture? We approach the kata with the mindset of using three philosophies: Learning/Performing Distinction, Deliberate Practice and turning objects into tools.

What are the Kata Rules? Four simple rules...

  1. One primary focus point

  2. Simplest solution (think quick and dirty)

  3. Anything goes, as long as you are following 1 and 2

  4. Working software wins...prove it

Once we'd gone over the ground rules, I gave them 45 minutes and FizzBuzz to work on. They immediately went their individual ways and started coding. Four out of the six started console applications, two went with unit test projects.

Observations:

  • Along the way a couple of them were struggling with coding the problem so I paired them up.

  • For the couple people who were successfully writing console applications to solve the problem, I would come up and ask them to prove to me their solution worked and they'd run their program for me. I'd ask, show me 3, 25, show me 45. What if I added divisible by 7, show me...prove to me that adding that didn't break 3, 25 and 45.

At the end of the 45 minutes we had a quick retro about how things went.

Team Revelations:

  • A console app is not sustainable with me modifying requirements and constantly asking them to prove that the code works.

  • The unit test framework helped shut me up. The tests were a simple way to prove that all the cases worked, even when adding new functionality.

  • The two people who were struggling independently, when paired up actually shot forward and were surprisingly productive.


Featured Posts
Recent Posts
Archive
Search By Tags
No tags yet.
Follow Us
  • Facebook Basic Square
  • Twitter Basic Square
  • Google+ Basic Square
bottom of page