├── LICENSE.md ├── _config.yml ├── day1 ├── assets │ ├── readme.md │ └── start_of_day │ │ └── readme.md ├── end_of_day │ └── day1.eod.toe ├── readme.md ├── reference_networks │ ├── base_presets_and_cues.tox │ └── readme.md └── start_of_day │ └── day1.sod.toe ├── day2 ├── assets │ └── readme.md ├── end_of_day │ ├── day2.eod.37.toe │ └── day2.eod.toe ├── readme.md ├── reference_networks │ └── readme.md └── start_of_day │ └── day2.sod.toe ├── docs ├── index.md └── readme.md └── readme.md /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/LICENSE.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/_config.yml -------------------------------------------------------------------------------- /day1/assets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/day1/assets/readme.md -------------------------------------------------------------------------------- /day1/assets/start_of_day/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/day1/assets/start_of_day/readme.md -------------------------------------------------------------------------------- /day1/end_of_day/day1.eod.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/day1/end_of_day/day1.eod.toe -------------------------------------------------------------------------------- /day1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/day1/readme.md -------------------------------------------------------------------------------- /day1/reference_networks/base_presets_and_cues.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/day1/reference_networks/base_presets_and_cues.tox -------------------------------------------------------------------------------- /day1/reference_networks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/day1/reference_networks/readme.md -------------------------------------------------------------------------------- /day1/start_of_day/day1.sod.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/day1/start_of_day/day1.sod.toe -------------------------------------------------------------------------------- /day2/assets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/day2/assets/readme.md -------------------------------------------------------------------------------- /day2/end_of_day/day2.eod.37.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/day2/end_of_day/day2.eod.37.toe -------------------------------------------------------------------------------- /day2/end_of_day/day2.eod.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/day2/end_of_day/day2.eod.toe -------------------------------------------------------------------------------- /day2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/day2/readme.md -------------------------------------------------------------------------------- /day2/reference_networks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/day2/reference_networks/readme.md -------------------------------------------------------------------------------- /day2/start_of_day/day2.sod.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/day2/start_of_day/day2.sod.toe -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: Blogging Like a Hacker 4 | --- 5 | -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- 1 | This is just a test -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raganmd/touchdesigner_yale_workshop_2017/HEAD/readme.md --------------------------------------------------------------------------------