how do I use cyber-dojo?

cyber-dojo's main use-case is described below.
I recommend two iterations. For example, if you have 2 hours, a schedule might be:
  • 5 minutes initial setup - you need to agree an exercise and language+testFramework
  • 30 minutes coding - display the dashboard during this time
  • 25 minutes review - everyone sees what everyone did!
  • 5 minute break
  • 30 minutes coding - everyone chooses what they'd like to practice improving
  • 25 minutes review - how did we all do?

1. creating your new group-exercise

From the home page one person connects their laptop to a projector...
  • click
    we're in a group
  • click
    create a new exercise
  • click your chosen [exercise?]
  • click your choosen [language, tests?]
  • click
    ok
  • your group-exercise ID will be displayed, eg
    3aF65A
  • leave it displayed so the pairs can join...(see step 2)
  • when everyone has joined, click
    ok
    to open an exercise dashboard (see step 4)

2. joining your group-exercise

Each pair now joins the group-exercise. Each pair, from the home page...
  • click
    we're in a group
  • click
    join an exercise
  • type in the cyber-dojo's id, eg,
    3aF65A
  • wait until your animal is displayed (eg panda)
  • click
    ok
  • each pair is now in their own test environment

3. doing your group-exercise

From their test environment everyone programs for 30 minutes
  • write tests, click
    test
    to see if they fail
  • write code, click
    test
    to see if they pass
  • each
    test
    click creates a new traffic-light :
    • red if one or more tests failed
    • amber if the tests could not be run (eg syntax error)
    • green if all the tests passed
  • remember, cyber-dojo is not a personal development environment
  • remember, cyber-dojo is a shared learning environment
  • the aim is not to finish, the aim is to improve
  • when time is up everyone stops

4. reviewing your group-exercise

The dashboard (from step 1) displays all the animals and their traffic-lights...
  • encourage everyone to note down anything they see in the review they'd like to try.
  • review each animal's work by clicking on a traffic-light and stepping through their history
  • thank each animal for their work.
  • when the review is done, ask everyone to form new pairs.
  • ask each new pair to compare notes and choose a few things they'd like to try.
  • start the second iteration! Goto 1 and create a new group-exercise.


list of donators

  • Companies.
    Schlumberger Beijing Geoscience Center have found cyber-dojo an invaluable tool for training and development of our software community and believe the project has a bright future. Thank for you contribution to our training efforts. We are delighted to sponsor the cyber-dojo project by contributing $1000.

  • Individuals.
    Olve Maudal, Mike Long, Mathieu Baron, Steve Coates, Johannes van Tonder, Santeri Vesalainen, Alexander Ottesen, Anders Schau Knatten, Mike Sutton, James Grenning, Allan Kelly, Randall White, Lucas Videla, Mark Sargent, Jason Jolly, Mark Grimes, Pedro Gimenez, Marc Kannegiesser, Oliver Baylis, Brian Porter, Jamie Toolin, Alejandro Perez Garcia, Pavol Rovensky, Wojciech Kozlowski, Dan Grassi, Juan Alday, Damian Crawford, Seb Rose, Emily Bache, Michael Coxeter, Fernando Sola Ortiz, Sean Moir, Michael Aderskog, Daniel Aquino, Emyr Williams, Clayton Hunt, Tallapaneni HariBabu, Eric Lefevre, Thomas Rytz, Robert Senkbeil, Charles Armitage, Tobias Froberg, Michael Hilton, David Whittaker, Owen Phelps, Elliot Blackburn, Robert Pitchford, Kevlin Henney, Magnus Lassi, Amitai Schlair.

  • Thank you.

frequently asked questions

Why don't you add auto refactoring?

No. Listen.
Stop trying to go faster; start trying to go slower.
Don't think about finishing; think about improving.
Think about practising as a team.
That's what cyber-dojo is built for.

Why don't you add ...?

No. Listen.
Stop trying to go faster; start trying to go slower.
Don't think about finishing; think about improving.
Think about practising as a team.
That's what cyber-dojo is built for.

cyber-dojo is not an individual development environment
cyber-dojo is a shared practice environment
cyber-dojo is a shared learning environment
cyber-dojo gently provokes; provocation encourages learning

how do I create and share a cyber-dojo customized practice session?

Suppose you want to create your own tailored starting point. For example, you might want to create a practice exercise where the tests are already written. Or some legacy code to practice refactoring.

Without Automation

Prepare your files in a practice session. When you think you have your files how you want them, click the [test] button. If everything is as expected make a note of...
  • the 6 character id (from the URL); suppose it is k5ZTk0
  • the last traffic light's number; in this case 10


Click on the latest (right-most) traffic light. This will switch to review/diff mode. By the big [resume] button there is a smaller [fork] button.


Click the [fork] button. This will open a dialog box asking if you want to create a new group-exercise or a new individual-exercise.


Click the [group] button. This will open the group practice session landing page, displaying its id. In this example rZf7z6 is a new group practice session id which is good for one practice session only.



With Automation

The following HTML will create a submit button which forks from the 10th traffic light of k5ZTk0, creating a brand new group exercise with its own unique id, each time it is clicked:
  <form action="https://cyber-dojo.org/forker/fork_group?id=k5ZTk0&index=10" method="POST">
    <input type="submit" value="Fork a new Group Exercise from id=k5ZTk0 index=10">
  </form>

The following HTML will create a link which forks from the 10th traffic light of k5ZTk0, creating a brand new individual exercise with its own unique id, each time it is clicked:
  <form action="https://cyber-dojo.org/forker/fork_individual?id=k5ZTk0&index=10" method="POST">
    <input type="submit" value="Fork a new Individual Exercise from id=k5ZTk0 index=10">
  </form>

Note that you can also use index=-1 to specify the most recent traffic-light.

analyzing traffic-light transitions

I've written a short ruby script to extract some measurements from a sample of about 500 practice sessions. I looked at transitions between red, amber, and green traffic-lights:
  • red means one or more tests failed
  • amber means the tests did not run (eg syntax error)
  • green means the tests ran and all passed
The first column is average number of lines added/deleted.
The second column is colour → colour transition.
The third column is sample size.

3.94ambergreen447
4.65amberred379
4.67amberamber1462
5.39redgreen607
6.01redred604
7.52greenred420
13.65greenamber436
17.67redamber432
22.18greengreen598

Here's how I interpret the results:
  • If you're at red or green and you make a small change (5.39,6.01,7.52) you're likely to stay at red or green.
  • If you're at red or green and you make a large change (13.65,17.67) you're likely to transition to amber.
  • There is a big spike in the number of amberamber transitions (1462). I speculate that long sequences of these transitions are occuring after a large 13.65 greenamber or 17.67 redamber transition.
  • I think the greengreen value of 22.18 is larger than it should be because it's including renaming a file.