Global Day of Coderetreat 2022 - London Retrospective

Where can you get a load of programmers together in the same room to practise pair programming and Test-driven development TDD, all over the world?

Yes, the Global Day of Coderetreat. 

This annual in-person event takes place in numerous cities across the globe.

Each event has the same purpose: You get to learn from and teach people, practise programming patterns you haven't tried before, and network with your peers from across the industry. 

This year I facilitated the London event with the London Software Craftsmanship Community (LSCC). Jetbrains sponsored the event with a free licence to any Jetbrains IDE, and Codurance sponsored the location and food.

## The Code

Coderetreat focuses on one particular programming challenge: Conway's Game of Life.

 

Game of Life is a fun little simulation to implement, it can be confusing at first to people that haven't studied it before, but if you know the problem well, you can easily implement it in under an hour.

However, the point is not to code Game of Life. Completing the challenge is not the aim. The goal is the experience and learnings from pairing with your peers and trying new things. In particular, practising or learning (it was a first for most of our attendees!) TDD and pair programming.

## The Structure

The day consists of five sessions of pairing with someone new each time, for about an hour each.

Coderetreat room 1

In each session you spend 45 minutes programming and 15 minutes on a retrospective discussing what you learned or what you found interesting in that session, or simply showing off a particular implementation that you are proud of.

After each session you delete your code (Because again, coding is not the point - the experience is!). You may be surprised how many different ways the simple rules of Conway's Game of Life can be implemented. And pairing with someone different each time enables you to get out of your own typical ways of coding and see how other people outside of your bubble look at a problem.

But if you get bored of doing the same problem repeatedly, you can switch it up with constraints.

Constraints throw a wrench in your usual way of coding to see if you can learn something by doing things differently. Some of them are quite funny ones like not using an IDE or even writing all your code on paper. Others are interesting ways of working together such as ping-ponging, in which you switch which one person writes the tests, then you switch and the other makes the test pass. There are also a lot of interesting software design constraints that I think one can really learn a lot from such as never using primitives, or only having one level of indentation, never using mutable variables.

## The Day

The day itself went very smoothly. Quite a few people were new to TDD and pair programming so it was really interesting to see their experience and their reactions. It led to a lot of thought-provoking conversations about their experiences and the value of these practices. It was really interesting to see people getting up to speed throughout the day, too: In the first two sessions a lot of people struggled to pass through the test, but by the end of the day most pairs were getting substantially far through the challenge in just 45 minutes and we had several pairs that managed to complete it.

 

Coderetreat room 3

For those struggling to get the hang of it, I shared an example of a solution written in Rust that some friends and I had made and going through that during one of the retrospectives seemed to help. We also found that many people were finding it difficult to get started due to difficulty with setting up new projects, installing and configuring the right test framework or getting tests to run. This is something everyone got better at as the day went on but we also suggested Coderetreat's starter repo as a faster way to get started, and that seemed to help some pairs.

We asked some of the attendees to share their experiences of the day. 

“[It was] Not my first time, and probably [won’t be] the last one. As usual, I enjoyed seeing how the same problem can be solved in so many different ways. Especially, as I could share my experience. It It was great to see that so many people are still happy to meet and learn something new”

Robert Firek

“I paired with five different people each with a varied level of experience. Four of the attempts I used Elixir and one in Python. It's a great way to work with a range of people that you would not normally meet. I would recommend this to anyone getting into TDD (or if you are already into TDD and want to share).”

Chris Eyre from Prima

## The End

So, that was Global Day of Coderetreat 2022 in a nutshell. If you think this sounds awesome, join us at Coderetreat 2023 next year! But you don't have to wait until then, London Software Craftsmanship will be hosting lots of other regular events in-person in London before then.

Want to have a go at coding the Game of Life yourself?  Then check out our kata.