├── .gitignore ├── README.md ├── mobile-examples ├── 01_first │ ├── index.html │ ├── libraries │ │ ├── p5.dom.js │ │ ├── p5.js │ │ └── p5.sound.js │ └── sketch.js ├── 02_touchIsDown │ ├── index.html │ ├── libraries │ │ ├── p5.dom.js │ │ ├── p5.js │ │ └── p5.sound.js │ └── sketch.js ├── 03_touch_coords │ ├── index.html │ ├── libraries │ │ ├── p5.dom.js │ │ ├── p5.js │ │ └── p5.sound.js │ └── sketch.js ├── 04_touch_callbacks │ ├── index.html │ ├── libraries │ │ ├── p5.dom.js │ │ ├── p5.js │ │ └── p5.sound.js │ └── sketch.js ├── 05_multitouch │ ├── index.html │ ├── libraries │ │ ├── p5.dom.js │ │ ├── p5.js │ │ └── p5.sound.js │ └── sketch.js └── 06_rotation │ ├── index.html │ ├── libraries │ ├── p5.dom.js │ ├── p5.js │ └── p5.sound.js │ └── sketch.js └── node-examples ├── aleph.js ├── genesis.txt ├── hello.js ├── markov-bot.js ├── markov-server.js ├── markov.js ├── package.json └── word-count.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/README.md -------------------------------------------------------------------------------- /mobile-examples/01_first/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/01_first/index.html -------------------------------------------------------------------------------- /mobile-examples/01_first/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/01_first/libraries/p5.dom.js -------------------------------------------------------------------------------- /mobile-examples/01_first/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/01_first/libraries/p5.js -------------------------------------------------------------------------------- /mobile-examples/01_first/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/01_first/libraries/p5.sound.js -------------------------------------------------------------------------------- /mobile-examples/01_first/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/01_first/sketch.js -------------------------------------------------------------------------------- /mobile-examples/02_touchIsDown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/02_touchIsDown/index.html -------------------------------------------------------------------------------- /mobile-examples/02_touchIsDown/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/02_touchIsDown/libraries/p5.dom.js -------------------------------------------------------------------------------- /mobile-examples/02_touchIsDown/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/02_touchIsDown/libraries/p5.js -------------------------------------------------------------------------------- /mobile-examples/02_touchIsDown/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/02_touchIsDown/libraries/p5.sound.js -------------------------------------------------------------------------------- /mobile-examples/02_touchIsDown/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/02_touchIsDown/sketch.js -------------------------------------------------------------------------------- /mobile-examples/03_touch_coords/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/03_touch_coords/index.html -------------------------------------------------------------------------------- /mobile-examples/03_touch_coords/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/03_touch_coords/libraries/p5.dom.js -------------------------------------------------------------------------------- /mobile-examples/03_touch_coords/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/03_touch_coords/libraries/p5.js -------------------------------------------------------------------------------- /mobile-examples/03_touch_coords/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/03_touch_coords/libraries/p5.sound.js -------------------------------------------------------------------------------- /mobile-examples/03_touch_coords/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/03_touch_coords/sketch.js -------------------------------------------------------------------------------- /mobile-examples/04_touch_callbacks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/04_touch_callbacks/index.html -------------------------------------------------------------------------------- /mobile-examples/04_touch_callbacks/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/04_touch_callbacks/libraries/p5.dom.js -------------------------------------------------------------------------------- /mobile-examples/04_touch_callbacks/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/04_touch_callbacks/libraries/p5.js -------------------------------------------------------------------------------- /mobile-examples/04_touch_callbacks/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/04_touch_callbacks/libraries/p5.sound.js -------------------------------------------------------------------------------- /mobile-examples/04_touch_callbacks/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/04_touch_callbacks/sketch.js -------------------------------------------------------------------------------- /mobile-examples/05_multitouch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/05_multitouch/index.html -------------------------------------------------------------------------------- /mobile-examples/05_multitouch/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/05_multitouch/libraries/p5.dom.js -------------------------------------------------------------------------------- /mobile-examples/05_multitouch/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/05_multitouch/libraries/p5.js -------------------------------------------------------------------------------- /mobile-examples/05_multitouch/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/05_multitouch/libraries/p5.sound.js -------------------------------------------------------------------------------- /mobile-examples/05_multitouch/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/05_multitouch/sketch.js -------------------------------------------------------------------------------- /mobile-examples/06_rotation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/06_rotation/index.html -------------------------------------------------------------------------------- /mobile-examples/06_rotation/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/06_rotation/libraries/p5.dom.js -------------------------------------------------------------------------------- /mobile-examples/06_rotation/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/06_rotation/libraries/p5.js -------------------------------------------------------------------------------- /mobile-examples/06_rotation/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/06_rotation/libraries/p5.sound.js -------------------------------------------------------------------------------- /mobile-examples/06_rotation/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/mobile-examples/06_rotation/sketch.js -------------------------------------------------------------------------------- /node-examples/aleph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/node-examples/aleph.js -------------------------------------------------------------------------------- /node-examples/genesis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/node-examples/genesis.txt -------------------------------------------------------------------------------- /node-examples/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/node-examples/hello.js -------------------------------------------------------------------------------- /node-examples/markov-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/node-examples/markov-bot.js -------------------------------------------------------------------------------- /node-examples/markov-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/node-examples/markov-server.js -------------------------------------------------------------------------------- /node-examples/markov.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/node-examples/markov.js -------------------------------------------------------------------------------- /node-examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/node-examples/package.json -------------------------------------------------------------------------------- /node-examples/word-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDMNYU/DM-GY-6063B-Creative-Coding/HEAD/node-examples/word-count.js --------------------------------------------------------------------------------