D3/Life: Difference between revisions
From charlesreid1
(Created page with "Game of Life using D3/Javascript") |
No edit summary |
||
| Line 1: | Line 1: | ||
Game of Life using D3/Javascript | Game of Life using D3/Javascript | ||
==Notes== | |||
Outline: | |||
* What is the game of life | |||
* Implementation in Javascript | |||
What is it | |||
* Rules | |||
* Computational biology/population dynamics problem | |||
* Implementation and interest as toy problem for computer science | |||
Implementation | |||
* How to implement using Javascript | |||
* Integer list implementation | |||
* Use Javascript to draw grid | |||
* Updates and etc. | |||
==Flags== | |||
[[Category:Javascript]] | |||
[[Category:D3]] | |||
[[Category:2018]] | |||
[[Category:February 2018]] | |||
Latest revision as of 00:14, 16 February 2018
Game of Life using D3/Javascript
Notes
Outline:
- What is the game of life
- Implementation in Javascript
What is it
- Rules
- Computational biology/population dynamics problem
- Implementation and interest as toy problem for computer science
Implementation
- How to implement using Javascript
- Integer list implementation
- Use Javascript to draw grid
- Updates and etc.