Tezos Living Things

When I first discovered the Game of Life, I was immediately intrigued and decided to create my first generative art project based on it. The ability to create lifelike creatures using just a few pixels and simple rules was both fascinating and peculiar. As I started to tweak the rules, the project became even more captivating.
Header image
The Game of Life, also known as Conway's Game of Life, is a cellular automaton that simulates the evolution of a population of cells over time. Each cell follows a set of rules based on the state of its neighboring cells. In the simplest version of the game, a cell is either alive or dead, and the following rules apply:

- Any live cell with two or three live neighbors survives to the next generation.
- Any dead cell with exactly three live neighbors becomes a live cell.
- All other live cells die in the next generation, and all other dead cells remain dead.

One of the aspects of the game that I found particularly interesting was the concept of overpopulation and underpopulation. Overpopulation occurs when a living cell has more than three live neighbors, causing it to die off due to lack of resources. Underpopulation, on the other hand, happens when a living cell has fewer than two live neighbors, leading to its demise.
Tezos Living Things NFT project
In my project, I decided to alter the rules of overpopulation and underpopulation to create unique movements and patterns. I found that allowing users to customize these rules themselves using keyboard buttons made the project even more engaging. The primary living cells and their colors were determined by the chosen rules, resulting in a diverse array of visual outcomes.
Dashboard mockup
In order to publish the project on Hicetnunc.xyz, I had to save the HTML, CSS, and JavaScript files in a zip file. To simplify this process, I wrote a Python code that randomly generated the primary living cells within a 640 by 640 cell grid and produced the necessary files. The project was then minted on Sine Hicetnunc.xyz using the same minter robot that I had created for my previous NFT People project.

While the Hicetnunc website is currently unavailable, my collection can still be viewed on . Overall, I am proud of the unique generative art project I created based on the Game of Life, and I look forward to exploring similar concepts in the future.