├── .gitignore ├── README.md ├── archived ├── DCGAN_Train │ ├── .gitignore │ ├── README.md │ ├── chainer_dcgan.py │ └── datatool.py └── Rainbow-Unsplash │ ├── .gitignore │ ├── index.js │ ├── package-lock.json │ └── package.json ├── blank-starter-code ├── celebrate.js ├── data │ ├── background.jpg │ ├── player0.png │ ├── player1.png │ ├── player2.png │ └── player3.png ├── index.html ├── player.js └── sketch.js ├── p5-select-camera ├── index.html └── sketch.js ├── summary.png ├── test-runway-p5 ├── index.html └── sketch.js ├── test-teachable-machine-ml5 ├── index.html └── sketch.js ├── the-unicorn-race ├── celebrate.js ├── data │ ├── background.jpg │ ├── player0.png │ ├── player1.png │ ├── player2.png │ ├── player3.png │ └── sky_small.png ├── index.html ├── player.js └── sketch.js └── twitter-server ├── index.js ├── package-lock.json ├── package.json └── rainbows ├── rainbow1.jpeg ├── rainbow2.jpeg ├── rainbow3.jpeg ├── rainbow4.jpeg ├── rainbow5.jpeg ├── rainbow6.jpeg ├── rainbow7.jpeg ├── rainbow8.jpeg └── rainbow9.jpeg /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/README.md -------------------------------------------------------------------------------- /archived/DCGAN_Train/.gitignore: -------------------------------------------------------------------------------- 1 | eyeo* 2 | ganshowcase* 3 | images/ 4 | npzdata 5 | out_chainer_dcgan64 -------------------------------------------------------------------------------- /archived/DCGAN_Train/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/archived/DCGAN_Train/README.md -------------------------------------------------------------------------------- /archived/DCGAN_Train/chainer_dcgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/archived/DCGAN_Train/chainer_dcgan.py -------------------------------------------------------------------------------- /archived/DCGAN_Train/datatool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/archived/DCGAN_Train/datatool.py -------------------------------------------------------------------------------- /archived/Rainbow-Unsplash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/archived/Rainbow-Unsplash/.gitignore -------------------------------------------------------------------------------- /archived/Rainbow-Unsplash/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/archived/Rainbow-Unsplash/index.js -------------------------------------------------------------------------------- /archived/Rainbow-Unsplash/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/archived/Rainbow-Unsplash/package-lock.json -------------------------------------------------------------------------------- /archived/Rainbow-Unsplash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/archived/Rainbow-Unsplash/package.json -------------------------------------------------------------------------------- /blank-starter-code/celebrate.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blank-starter-code/data/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/blank-starter-code/data/background.jpg -------------------------------------------------------------------------------- /blank-starter-code/data/player0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/blank-starter-code/data/player0.png -------------------------------------------------------------------------------- /blank-starter-code/data/player1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/blank-starter-code/data/player1.png -------------------------------------------------------------------------------- /blank-starter-code/data/player2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/blank-starter-code/data/player2.png -------------------------------------------------------------------------------- /blank-starter-code/data/player3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/blank-starter-code/data/player3.png -------------------------------------------------------------------------------- /blank-starter-code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/blank-starter-code/index.html -------------------------------------------------------------------------------- /blank-starter-code/player.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blank-starter-code/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/blank-starter-code/sketch.js -------------------------------------------------------------------------------- /p5-select-camera/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/p5-select-camera/index.html -------------------------------------------------------------------------------- /p5-select-camera/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/p5-select-camera/sketch.js -------------------------------------------------------------------------------- /summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/summary.png -------------------------------------------------------------------------------- /test-runway-p5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/test-runway-p5/index.html -------------------------------------------------------------------------------- /test-runway-p5/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/test-runway-p5/sketch.js -------------------------------------------------------------------------------- /test-teachable-machine-ml5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/test-teachable-machine-ml5/index.html -------------------------------------------------------------------------------- /test-teachable-machine-ml5/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/test-teachable-machine-ml5/sketch.js -------------------------------------------------------------------------------- /the-unicorn-race/celebrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/the-unicorn-race/celebrate.js -------------------------------------------------------------------------------- /the-unicorn-race/data/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/the-unicorn-race/data/background.jpg -------------------------------------------------------------------------------- /the-unicorn-race/data/player0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/the-unicorn-race/data/player0.png -------------------------------------------------------------------------------- /the-unicorn-race/data/player1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/the-unicorn-race/data/player1.png -------------------------------------------------------------------------------- /the-unicorn-race/data/player2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/the-unicorn-race/data/player2.png -------------------------------------------------------------------------------- /the-unicorn-race/data/player3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/the-unicorn-race/data/player3.png -------------------------------------------------------------------------------- /the-unicorn-race/data/sky_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/the-unicorn-race/data/sky_small.png -------------------------------------------------------------------------------- /the-unicorn-race/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/the-unicorn-race/index.html -------------------------------------------------------------------------------- /the-unicorn-race/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/the-unicorn-race/player.js -------------------------------------------------------------------------------- /the-unicorn-race/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/the-unicorn-race/sketch.js -------------------------------------------------------------------------------- /twitter-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/twitter-server/index.js -------------------------------------------------------------------------------- /twitter-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/twitter-server/package-lock.json -------------------------------------------------------------------------------- /twitter-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/twitter-server/package.json -------------------------------------------------------------------------------- /twitter-server/rainbows/rainbow1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/twitter-server/rainbows/rainbow1.jpeg -------------------------------------------------------------------------------- /twitter-server/rainbows/rainbow2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/twitter-server/rainbows/rainbow2.jpeg -------------------------------------------------------------------------------- /twitter-server/rainbows/rainbow3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/twitter-server/rainbows/rainbow3.jpeg -------------------------------------------------------------------------------- /twitter-server/rainbows/rainbow4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/twitter-server/rainbows/rainbow4.jpeg -------------------------------------------------------------------------------- /twitter-server/rainbows/rainbow5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/twitter-server/rainbows/rainbow5.jpeg -------------------------------------------------------------------------------- /twitter-server/rainbows/rainbow6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/twitter-server/rainbows/rainbow6.jpeg -------------------------------------------------------------------------------- /twitter-server/rainbows/rainbow7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/twitter-server/rainbows/rainbow7.jpeg -------------------------------------------------------------------------------- /twitter-server/rainbows/rainbow8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/twitter-server/rainbows/rainbow8.jpeg -------------------------------------------------------------------------------- /twitter-server/rainbows/rainbow9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/Eyeo-Festival-2019/HEAD/twitter-server/rainbows/rainbow9.jpeg --------------------------------------------------------------------------------