├── .gitignore ├── LICENSE ├── README.md ├── huwaa.mp3 ├── index.css ├── index.html ├── index.js ├── screenshot.png └── vendor ├── Chart.bundle.min.js ├── Chart.min.js ├── bootstrap ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── jquery.min.js ├── jquery.playSound.js └── moment.min.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/README.md -------------------------------------------------------------------------------- /huwaa.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/huwaa.mp3 -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/index.js -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/screenshot.png -------------------------------------------------------------------------------- /vendor/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/Chart.bundle.min.js -------------------------------------------------------------------------------- /vendor/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/Chart.min.js -------------------------------------------------------------------------------- /vendor/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /vendor/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /vendor/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /vendor/bootstrap/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /vendor/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/bootstrap/js/npm.js -------------------------------------------------------------------------------- /vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/jquery.min.js -------------------------------------------------------------------------------- /vendor/jquery.playSound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/jquery.playSound.js -------------------------------------------------------------------------------- /vendor/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrist/ballmer-peak/HEAD/vendor/moment.min.js --------------------------------------------------------------------------------