Game of Life
A cellular automaton devised by the British mathematician John Horton Conway in 1970. It is Turing complete and can simulate a universal constructor or any other Turing machine. One interacts with the Game of Life by creating an initial configuration and observing how it evolves.
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.
Minesweeper
A logic puzzle video game. The game features a grid of clickable squares, with hidden mines scattered throughout the board. The objective is to clear the board without detonating any mines, with help from clues about the number of neighboring mines in each field.
Snake
The all-time classic arcade game. The objective of the game is to eat as many apples as possible, without colliding with the surroundings or the growing body of the snake.