Upgrade to Pro — share decks privately, control downloads, hide ads and more …

You Don't Know Hack - Intro to Mob Programming

You Don't Know Hack - Intro to Mob Programming

Hacker Culture and test-driven mob-programming of Game of Life.

Bruno Cunha

October 28, 2015
Tweet

More Decks by Bruno Cunha

Other Decks in Technology

Transcript

  1. Conway’s Game of Life • The universe is represented by

    a two-dimensional grid of square cells, each of which is either alive or dead. • Any live cell with fewer than two live neighbors dies, as if caused by under-population. • Any live cell with two or three live neighbors lives on to the next generation. • Any live cell with more than three live neighbors dies, as if by over-population. • Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.
  2. Mob Programming • Whole team works on the same task,

    at the same time, in the same space, and on the same computer. • Drivers sit at the keyboard and code. • Navigators discuss ideas and guide the current driver. • Ideas must travel through the hands of others. • Drivers randomly rotates every 5 minutes.