The maze book for programmers!
mazesforprogrammers.com
Algorithms, circle mazes, hex grids, masking, weaving, braiding, 3D and 4D grids, spheres, and more!
A week or so ago I posted a throw-away tweet with an idea that (I’m sure) is neither original, nor worthy of actually spending time on:
Party game idea. Each person randomly kills processes on their laptop. Last person standing wins.
— Jamis Buck (@jamis) December 13, 2016
However, once posted, I couldn’t stop thinking about it, and so here we are, a week and a half later, and I’m announcing the initial release of “Process Roulette”. It gave me a chance to experiment with the atom editor, as well as to try and finally learn the pros and cons of rubocop. (I’ll try and do a separate post for each of those in the near future.)
But right now, we’re here because of process roulette. The premise is just what I said in my tweet: each player whacks random processes on their machine until their player process goes away. Whoever lasts the longest, wins.
There are three parts to this game:
Want to give it a try? It’s easy! First, install the gem:
You’ll need to install it on every computer that will be involved.
Then, fire up the croupier. Just tell it which port to listen on, and what password the controllers should use to authenticate:
Once the croupier is running, start up at least one controller. Tell it where the croupier is running, and give the password as well:
This will give you a command prompt–for now, just leave it be. We’ll talk about what you can do as the controller in a moment.
Optionally, you can also start up multiple spectators, to watch the game. (This is useful for people who are starting up the player processes, since otherwise they won’t know who won the game!) The spectators are just controllers, minus the password.
Lastly, on each virtual machine (or otherwise despised host), fire up a player process. Make sure and run it as a superuser, otherwise it won’t be able to kill the really important processes! Tell it where the croupier is, and what username should identify the player.
The player will then display “connecting”, and will wait for the signal from the croupier. As each player connects, the controllers should display the username of the player, along with the total number of registered players.
When everyone has joined and the game is ready, one of the controllers should type “GO” at their prompt, and press return:
At this point, the players will all begin whacking processes, and the controllers (and spectators) will indicate the beginning of each subsequent round. As players die, the controllers will show that as well. When the last player dies, the controllers will summarize the bout with a scoreboard, and then return to the command prompt, ready to start a new game when players (re)join.
The controller itself may be terminated by typing “QUIT” (or ^D). Typing “EXIT” will tell the croupier process itself to terminate.
Give it a try and let me know what you think! If you want to tinker with it a bit yourself, check out the source code on GitHub.