GameOfLife: Difference between revisions
From charlesreid1
(→Flags) |
No edit summary |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
{{Main|D3/Life}} | |||
Conway's Game of Life | Conway's Game of Life | ||
| Line 10: | Line 12: | ||
List implementation of Life: http://dotat.at/prog/life/life.html | List implementation of Life: http://dotat.at/prog/life/life.html | ||
Bitwise operators in Javascript: | |||
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators | |||
=Flags= | =Flags= | ||
| Line 16: | Line 21: | ||
[[Category:Puzzles]] | [[Category:Puzzles]] | ||
[[Category:Combinatorics]] | [[Category:Combinatorics]] | ||
[[Category:D3]] | |||
[[Category:Javascript]] | [[Category:Javascript]] | ||
[[Category:Python]] | [[Category:Python]] | ||
[[Category:C]] | [[Category:C]] | ||
[[Category:2018]] | |||
[[Category:February 2018]] | |||
Latest revision as of 00:11, 16 February 2018
Main article: D3/Life
Conway's Game of Life
Links
Fast Javascript implementation: http://pmav.eu/stuff/javascript-game-of-life-v3.1.1/
The core javascript code: view-source:http://pmav.eu/stuff/javascript-game-of-life-v3.1.1/assets/js/game-of-life-v3.1.1.js
C implementation (from same author) of Life: http://dotat.at/cgi/cvsweb/things/life.c?rev=1.8
List implementation of Life: http://dotat.at/prog/life/life.html
Bitwise operators in Javascript: