404 Error!
21 | 22 |
24 | ├── .gitignore ├── .gitattributes ├── src ├── images │ ├── minus.png │ ├── plus.png │ ├── favicon.ico │ ├── forked.jpg │ ├── board_pieces.jpg │ ├── chessboardbg.jpg │ ├── screenshot1.png │ ├── screenshot2.png │ ├── screenshot3.png │ ├── screenshot4.jpg │ ├── circle_300x300.png │ ├── square_300x300.png │ ├── triangle_300x300.png │ ├── favicon.svg │ ├── wK.svg │ └── bK.svg ├── audio │ ├── beep-06.mp3 │ ├── click-button-2-soundbible.com-911295385.mp3 │ └── time-bomb-short-soundbible.com-1562499525.mp3 ├── fonts │ ├── DroidSansMono.ttf │ └── Apache License.txt ├── 404.html ├── about.html ├── index.html ├── links.html ├── quotes.html ├── index.js └── css │ └── style.css ├── .babelrc ├── readme.md ├── package.json ├── webpack.prod.js ├── webpack.dev.js └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | src/*.html linguist-vendored 2 | src/css/*.css linguist-vendored 3 | -------------------------------------------------------------------------------- /src/images/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/images/minus.png -------------------------------------------------------------------------------- /src/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/images/plus.png -------------------------------------------------------------------------------- /src/audio/beep-06.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/audio/beep-06.mp3 -------------------------------------------------------------------------------- /src/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/images/favicon.ico -------------------------------------------------------------------------------- /src/images/forked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/images/forked.jpg -------------------------------------------------------------------------------- /src/fonts/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/fonts/DroidSansMono.ttf -------------------------------------------------------------------------------- /src/images/board_pieces.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/images/board_pieces.jpg -------------------------------------------------------------------------------- /src/images/chessboardbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/images/chessboardbg.jpg -------------------------------------------------------------------------------- /src/images/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/images/screenshot1.png -------------------------------------------------------------------------------- /src/images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/images/screenshot2.png -------------------------------------------------------------------------------- /src/images/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/images/screenshot3.png -------------------------------------------------------------------------------- /src/images/screenshot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/images/screenshot4.jpg -------------------------------------------------------------------------------- /src/images/circle_300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/images/circle_300x300.png -------------------------------------------------------------------------------- /src/images/square_300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/images/square_300x300.png -------------------------------------------------------------------------------- /src/images/triangle_300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/images/triangle_300x300.png -------------------------------------------------------------------------------- /src/audio/click-button-2-soundbible.com-911295385.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/audio/click-button-2-soundbible.com-911295385.mp3 -------------------------------------------------------------------------------- /src/audio/time-bomb-short-soundbible.com-1562499525.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-wallace/chess_clock/HEAD/src/audio/time-bomb-short-soundbible.com-1562499525.mp3 -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "env", 5 | { 6 | "targets": { 7 | "browsers": ["last 5 versions"] 8 | } 9 | } 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /src/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 |
24 |
53 |
54 |
107 |
108 |
109 |
110 |
111 |
112 | “You must take your opponent into a deep dark forest where 58 | 2 + 2 = 5, and the path leading out is only wide enough for 59 | one” 60 |
61 |Mikhail Tal
65 |“I used to attack because it was the only thing I knew. Now I attack 78 | because I know it works best.” 79 |
80 | 81 |Garry Kasparov
85 |“When you see a good move, look for a better one.”
97 |Emanuel Lasker
101 |“Help your pieces so they can help you”
113 |Paul Morphy
117 |“There are no take-backs - just as in life. You must think 130 | before you move." 131 |
132 | 133 |Susan Polgar
137 |“Even a poor plan is better than no plan at all.”
149 |Mikhail Chigorin
153 |“A bad day of chess is better than any good day at work”
165 |Unknown
169 |