Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 575 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 575 Bytes

django-game-of-life

A django project to simulate conways game of life

About

Conways Game of Life has long been a fascinating but simple idea.

  • Any cell with more than three neighbors dies from overpopulation
  • Any cell with less than two neighbors dies of boredom
  • Any empty cell with exactly three neigbors comes to life

The rules are so simple, yet the outcome is so incredibly complex.

Why

I've needed a good reason to learn my way around Backbone for a while, and here is the excuse.