Do you want to harness the powers of life and death? Do you see beauty in suffering? Do you think pretty flashing pixels are the best thing ever? In this repro, you can combine all those loves/complexes with software development.
For this repro, I've followed a FreeCodeCamp tutorial on Conway's Game of Life. However, I'm going to try and further componentise the code and style it further.
- React
- JavaScript
- HTML
- SASS
Based on John Horton Conway's game of the same name, this is a zero-player game that abides by the following rules:
- Any live cell with fewer than two live neighbours dies, as if by underpopulation.
- Any live cell with two or three live neighbours lives on to the next generation.
- Any live cell with more than three live neighbours dies, as if by overpopulation.
- Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.
This creates a simulation of a population of 'things' (ants, lemmings, humans, whatever). After a while, you get lovely repetitive patterns as the population stablises.