├── .gitattributes ├── .gitmodules ├── LICENSE ├── README.md ├── doc ├── arc.md ├── core.md ├── grid.md ├── norns.md └── txt.md ├── study ├── img │ ├── docs.ai │ ├── nest_.png │ └── study3-01.png ├── study1.md ├── study2.md ├── study3.md └── study4.md ├── study1.lua ├── study2.lua ├── study3.lua └── study4.lua /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/README.md -------------------------------------------------------------------------------- /doc/arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/doc/arc.md -------------------------------------------------------------------------------- /doc/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/doc/core.md -------------------------------------------------------------------------------- /doc/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/doc/grid.md -------------------------------------------------------------------------------- /doc/norns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/doc/norns.md -------------------------------------------------------------------------------- /doc/txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/doc/txt.md -------------------------------------------------------------------------------- /study/img/docs.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/study/img/docs.ai -------------------------------------------------------------------------------- /study/img/nest_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/study/img/nest_.png -------------------------------------------------------------------------------- /study/img/study3-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/study/img/study3-01.png -------------------------------------------------------------------------------- /study/study1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/study/study1.md -------------------------------------------------------------------------------- /study/study2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/study/study2.md -------------------------------------------------------------------------------- /study/study3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/study/study3.md -------------------------------------------------------------------------------- /study/study4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/study/study4.md -------------------------------------------------------------------------------- /study1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/study1.lua -------------------------------------------------------------------------------- /study2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/study2.lua -------------------------------------------------------------------------------- /study3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/study3.lua -------------------------------------------------------------------------------- /study4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr-ew/nest_/HEAD/study4.lua --------------------------------------------------------------------------------