Python program that simulates and displays Conway’s game of life on a pixelated version of today’s date. The program uses Numpy to create a 2D array that tracks which squares in the game are ‘alive’ or ‘dead’ and displays the grid using pygame. By default, the program will simulate the game on a pixelized version of today’s date but arbitrary other dates can be passed to it.

Full code available on GitHub.