├── .eslintrc.cjs ├── .gitignore ├── README.md ├── blog ├── demo.mp4 ├── doodles.png ├── huggingchat.png ├── icon.png ├── mobilevit.png ├── quickdraw-dataset.png ├── skateboard.png ├── thumbnail-wide.png ├── thumbnail.png └── training.ipynb ├── index.html ├── package.json ├── postcss.config.js ├── public └── icon.png ├── src ├── App.css ├── App.jsx ├── assets │ └── react.svg ├── components │ ├── Countdown.jsx │ ├── GameOver.jsx │ ├── Menu.jsx │ └── SketchCanvas.jsx ├── constants.js ├── index.css ├── main.jsx ├── utils.js └── worker.js ├── tailwind.config.js └── vite.config.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/README.md -------------------------------------------------------------------------------- /blog/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/blog/demo.mp4 -------------------------------------------------------------------------------- /blog/doodles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/blog/doodles.png -------------------------------------------------------------------------------- /blog/huggingchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/blog/huggingchat.png -------------------------------------------------------------------------------- /blog/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/blog/icon.png -------------------------------------------------------------------------------- /blog/mobilevit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/blog/mobilevit.png -------------------------------------------------------------------------------- /blog/quickdraw-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/blog/quickdraw-dataset.png -------------------------------------------------------------------------------- /blog/skateboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/blog/skateboard.png -------------------------------------------------------------------------------- /blog/thumbnail-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/blog/thumbnail-wide.png -------------------------------------------------------------------------------- /blog/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/blog/thumbnail.png -------------------------------------------------------------------------------- /blog/training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/blog/training.ipynb -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/public/icon.png -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/Countdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/src/components/Countdown.jsx -------------------------------------------------------------------------------- /src/components/GameOver.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/src/components/GameOver.jsx -------------------------------------------------------------------------------- /src/components/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/src/components/Menu.jsx -------------------------------------------------------------------------------- /src/components/SketchCanvas.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/src/components/SketchCanvas.jsx -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/src/utils.js -------------------------------------------------------------------------------- /src/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/src/worker.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenova/doodle-dash/HEAD/vite.config.js --------------------------------------------------------------------------------