├── .gitattributes ├── .gitignore ├── .jshintrc ├── README.md ├── beep.mp3 ├── favicon ├── blue.ico ├── favicon.ico ├── green.ico ├── orange.ico ├── purple.ico ├── red.ico └── yellow.ico ├── final_clicks.csv ├── index.html ├── react-components ├── button-snitch.js ├── chart-selector.js ├── histogram-chart.js ├── log-chart.js ├── rainbow-distribution.js ├── settings.js ├── stats-display.js ├── tick.js ├── time-chart.js └── timer-display.js ├── screenshot.png ├── style.css ├── update-websocket.sh └── websocket-url.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | react-components/* linguist-vendored=false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/.jshintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/README.md -------------------------------------------------------------------------------- /beep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/beep.mp3 -------------------------------------------------------------------------------- /favicon/blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/favicon/blue.ico -------------------------------------------------------------------------------- /favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/favicon/favicon.ico -------------------------------------------------------------------------------- /favicon/green.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/favicon/green.ico -------------------------------------------------------------------------------- /favicon/orange.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/favicon/orange.ico -------------------------------------------------------------------------------- /favicon/purple.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/favicon/purple.ico -------------------------------------------------------------------------------- /favicon/red.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/favicon/red.ico -------------------------------------------------------------------------------- /favicon/yellow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/favicon/yellow.ico -------------------------------------------------------------------------------- /final_clicks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/final_clicks.csv -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/index.html -------------------------------------------------------------------------------- /react-components/button-snitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/react-components/button-snitch.js -------------------------------------------------------------------------------- /react-components/chart-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/react-components/chart-selector.js -------------------------------------------------------------------------------- /react-components/histogram-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/react-components/histogram-chart.js -------------------------------------------------------------------------------- /react-components/log-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/react-components/log-chart.js -------------------------------------------------------------------------------- /react-components/rainbow-distribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/react-components/rainbow-distribution.js -------------------------------------------------------------------------------- /react-components/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/react-components/settings.js -------------------------------------------------------------------------------- /react-components/stats-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/react-components/stats-display.js -------------------------------------------------------------------------------- /react-components/tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/react-components/tick.js -------------------------------------------------------------------------------- /react-components/time-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/react-components/time-chart.js -------------------------------------------------------------------------------- /react-components/timer-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/react-components/timer-display.js -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/screenshot.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/style.css -------------------------------------------------------------------------------- /update-websocket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/update-websocket.sh -------------------------------------------------------------------------------- /websocket-url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treyp/thebutton/HEAD/websocket-url.txt --------------------------------------------------------------------------------