├── .github └── FUNDING.yml ├── LICENSE ├── README.md └── cellular-automata ├── 60fps ├── habitat-embed.js ├── index.html ├── script.js └── show.js ├── CableWorld ├── habitat-embed.js ├── index.html ├── script.js └── show.js ├── GameOfLiving ├── habitat-embed.js ├── index.html ├── script.js └── show.js ├── LNCA Engine ├── habitat-embed.js ├── index.html ├── notes.txt ├── script.js └── show.js ├── LNCA Rewrite ├── habitat-embed.js ├── index.html ├── rules.txt ├── script.js └── show.js ├── LNCA Visualiser ├── habitat-embed.js ├── index.html ├── notes.txt ├── script.js └── show.js ├── Luke's Ant ├── habitat-embed.js ├── index.html ├── script.js └── show.js ├── RedGreenBluegene ├── habitat-embed.js ├── index.html ├── script.js └── show.js ├── WilsonCode ├── habitat-embed.js ├── index.html ├── script.js └── show.js ├── WilsonCode3 ├── habitat-embed.js ├── index.html ├── script.js └── show.js ├── WilsonCodeSingle ├── habitat-embed.js ├── index.html ├── script.js └── show.js └── workspace.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/README.md -------------------------------------------------------------------------------- /cellular-automata/60fps/habitat-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/60fps/habitat-embed.js -------------------------------------------------------------------------------- /cellular-automata/60fps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/60fps/index.html -------------------------------------------------------------------------------- /cellular-automata/60fps/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/60fps/script.js -------------------------------------------------------------------------------- /cellular-automata/60fps/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/60fps/show.js -------------------------------------------------------------------------------- /cellular-automata/CableWorld/habitat-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/CableWorld/habitat-embed.js -------------------------------------------------------------------------------- /cellular-automata/CableWorld/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/CableWorld/index.html -------------------------------------------------------------------------------- /cellular-automata/CableWorld/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/CableWorld/script.js -------------------------------------------------------------------------------- /cellular-automata/CableWorld/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/CableWorld/show.js -------------------------------------------------------------------------------- /cellular-automata/GameOfLiving/habitat-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/GameOfLiving/habitat-embed.js -------------------------------------------------------------------------------- /cellular-automata/GameOfLiving/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/GameOfLiving/index.html -------------------------------------------------------------------------------- /cellular-automata/GameOfLiving/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/GameOfLiving/script.js -------------------------------------------------------------------------------- /cellular-automata/GameOfLiving/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/GameOfLiving/show.js -------------------------------------------------------------------------------- /cellular-automata/LNCA Engine/habitat-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Engine/habitat-embed.js -------------------------------------------------------------------------------- /cellular-automata/LNCA Engine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Engine/index.html -------------------------------------------------------------------------------- /cellular-automata/LNCA Engine/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Engine/notes.txt -------------------------------------------------------------------------------- /cellular-automata/LNCA Engine/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Engine/script.js -------------------------------------------------------------------------------- /cellular-automata/LNCA Engine/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Engine/show.js -------------------------------------------------------------------------------- /cellular-automata/LNCA Rewrite/habitat-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Rewrite/habitat-embed.js -------------------------------------------------------------------------------- /cellular-automata/LNCA Rewrite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Rewrite/index.html -------------------------------------------------------------------------------- /cellular-automata/LNCA Rewrite/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Rewrite/rules.txt -------------------------------------------------------------------------------- /cellular-automata/LNCA Rewrite/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Rewrite/script.js -------------------------------------------------------------------------------- /cellular-automata/LNCA Rewrite/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Rewrite/show.js -------------------------------------------------------------------------------- /cellular-automata/LNCA Visualiser/habitat-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Visualiser/habitat-embed.js -------------------------------------------------------------------------------- /cellular-automata/LNCA Visualiser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Visualiser/index.html -------------------------------------------------------------------------------- /cellular-automata/LNCA Visualiser/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Visualiser/notes.txt -------------------------------------------------------------------------------- /cellular-automata/LNCA Visualiser/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Visualiser/script.js -------------------------------------------------------------------------------- /cellular-automata/LNCA Visualiser/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/LNCA Visualiser/show.js -------------------------------------------------------------------------------- /cellular-automata/Luke's Ant/habitat-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/Luke's Ant/habitat-embed.js -------------------------------------------------------------------------------- /cellular-automata/Luke's Ant/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/Luke's Ant/index.html -------------------------------------------------------------------------------- /cellular-automata/Luke's Ant/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/Luke's Ant/script.js -------------------------------------------------------------------------------- /cellular-automata/Luke's Ant/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/Luke's Ant/show.js -------------------------------------------------------------------------------- /cellular-automata/RedGreenBluegene/habitat-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/RedGreenBluegene/habitat-embed.js -------------------------------------------------------------------------------- /cellular-automata/RedGreenBluegene/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/RedGreenBluegene/index.html -------------------------------------------------------------------------------- /cellular-automata/RedGreenBluegene/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/RedGreenBluegene/script.js -------------------------------------------------------------------------------- /cellular-automata/RedGreenBluegene/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/RedGreenBluegene/show.js -------------------------------------------------------------------------------- /cellular-automata/WilsonCode/habitat-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/WilsonCode/habitat-embed.js -------------------------------------------------------------------------------- /cellular-automata/WilsonCode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/WilsonCode/index.html -------------------------------------------------------------------------------- /cellular-automata/WilsonCode/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/WilsonCode/script.js -------------------------------------------------------------------------------- /cellular-automata/WilsonCode/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/WilsonCode/show.js -------------------------------------------------------------------------------- /cellular-automata/WilsonCode3/habitat-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/WilsonCode3/habitat-embed.js -------------------------------------------------------------------------------- /cellular-automata/WilsonCode3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/WilsonCode3/index.html -------------------------------------------------------------------------------- /cellular-automata/WilsonCode3/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/WilsonCode3/script.js -------------------------------------------------------------------------------- /cellular-automata/WilsonCode3/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/WilsonCode3/show.js -------------------------------------------------------------------------------- /cellular-automata/WilsonCodeSingle/habitat-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/WilsonCodeSingle/habitat-embed.js -------------------------------------------------------------------------------- /cellular-automata/WilsonCodeSingle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/WilsonCodeSingle/index.html -------------------------------------------------------------------------------- /cellular-automata/WilsonCodeSingle/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/WilsonCodeSingle/script.js -------------------------------------------------------------------------------- /cellular-automata/WilsonCodeSingle/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/WilsonCodeSingle/show.js -------------------------------------------------------------------------------- /cellular-automata/workspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TodePond/NewPond/HEAD/cellular-automata/workspace.sh --------------------------------------------------------------------------------