Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/caranea/gameoflife2


https://github.com/caranea/gameoflife2

Last synced: 3 days ago
JSON representation

Awesome Lists containing this project

README

        

# GameOfLife2

JavaScript implementation of Life.

[Online](https://caranea.github.io/GameOfLife2/)

## How to use

Choose one of the patterns, or make your own by clicking single cells.

## Rules

1) Live cell with two or less live neighbors dies (underpopulation).
2) Live cell with more than three live neighbors dies (overcrowding).
3) Live cell with two or three live neighbors lives on.
4) Dead cell with exactly three live neighbors becomes a live cell.

## Why is it interesting?

Life is a great example of how very complex and elaborate patterns can emerge from simple set of rules.

Read more about cellular automata at [Wikipedia](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life)