Simple implementation of Conway's Game of Life in AngularJs. http://en.wikipedia.org/wiki/Conway's_Game_of_Life
github.com/alanrsoares
A Pen by Alan R. Soares on CodePen.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <div id="test-out"></div> | |
| <script id="jsbin-javascript"> | |
| /* |
Simple implementation of Conway's Game of Life in AngularJs. http://en.wikipedia.org/wiki/Conway's_Game_of_Life
github.com/alanrsoares
A Pen by Alan R. Soares on CodePen.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="http://static.jsbin.com/js/vendor/traceur.js"></script> | |
| <meta charset="utf-8" | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <script id="jsbin-javascript"> |
| #!/usr/bin/env node | |
| (function() { | |
| 'use strict'; | |
| var _ = require('lodash'); | |
| var Questions = (function() { | |
| var low = require('lowdb'); | |
| var db = low('db.json'); |
A Pen by Alan R. Soares on CodePen.