├── .gitignore ├── LICENSE ├── README.md ├── module00-intro └── README.md ├── module01-vectors └── README.md ├── module02-forces └── README.md ├── module03-osc └── README.md ├── module04-systems └── README.md ├── module05-agents └── README.md ├── module06-fractals-ca └── README.md ├── module07-ga ├── README.md └── ga_design.md ├── module08-neuro └── README.md ├── noc-examples.md └── projects ├── README.md ├── final └── README.md └── simulation └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/README.md -------------------------------------------------------------------------------- /module00-intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/module00-intro/README.md -------------------------------------------------------------------------------- /module01-vectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/module01-vectors/README.md -------------------------------------------------------------------------------- /module02-forces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/module02-forces/README.md -------------------------------------------------------------------------------- /module03-osc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/module03-osc/README.md -------------------------------------------------------------------------------- /module04-systems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/module04-systems/README.md -------------------------------------------------------------------------------- /module05-agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/module05-agents/README.md -------------------------------------------------------------------------------- /module06-fractals-ca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/module06-fractals-ca/README.md -------------------------------------------------------------------------------- /module07-ga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/module07-ga/README.md -------------------------------------------------------------------------------- /module07-ga/ga_design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/module07-ga/ga_design.md -------------------------------------------------------------------------------- /module08-neuro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/module08-neuro/README.md -------------------------------------------------------------------------------- /noc-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/noc-examples.md -------------------------------------------------------------------------------- /projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/projects/README.md -------------------------------------------------------------------------------- /projects/final/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/projects/final/README.md -------------------------------------------------------------------------------- /projects/simulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature-of-code/noc-syllabus-S21/HEAD/projects/simulation/README.md --------------------------------------------------------------------------------