This is an HTML5 rendering of Conway's Game of Life.
There are a few ways to run this. First, clone the repository.
If you have Python, running it is as simple as navigating to the directory you cloned, and then doing the following:
If on Python 2:
python -m SimpleHTTPServer
If on Python 3:
python -m http.server
Navigate to http://localhost:8000/ and you're good to go!
If you have PHP 5.4 or newer installed, you can navigate to the directory you cloned into and type
php -S localhost:8000
Navigate to http://localhost:8000/ and you're good to go!
If have PHP 5.3 or older, you'll need a web server (see Apache section)
Clone the repository (or copy the cloned repository) into a subfolder of your web apps directory (usually called 'htdocs', within the installation directory of Apache), like "conway-life" (my example will assume you called it this) and navigate to http://localhost/conway-life!