Making Conway's Game of Life Playable
blog.unsupervision.com·10h·
Discuss: Hacker News
Flag this post
  • 05 Nov, 2025 *

Conway’s Game of Life is often described as a “zero-player game.” You set up an initial pattern, press start, and watch it evolve forever under four simple rules. It’s fascinating but it’s more a simulation than a game. This begs the question though: what would it take to actually play Conway’s Game of Life? I decided to experiment and this post is the result.

For some added context before diving in, the original Game of Life runs on four update rules for each cell:

  1. Any live cell with fewer than two neighbors dies (underpopulation).
  2. Any live cell with two or three neighbors survives.
  3. Any live cell with more than three neighbors dies (overpopulation).
  4. Any dead cell with exactly three neighb…

Similar Posts

Loading similar posts...