├── .gitignore ├── LICENSE ├── README.md ├── backend ├── data.php ├── problems.txt └── problems_importer.php ├── css ├── main.css └── utility.css ├── favicon.png ├── frontend ├── about.html ├── contribute.html ├── faq.html ├── recovery.html └── vote.html ├── index.html ├── js ├── cookieIO.js ├── index.js ├── localIO.js ├── utility.js └── vote.js ├── scraper.py └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | mysql_info.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/README.md -------------------------------------------------------------------------------- /backend/data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/backend/data.php -------------------------------------------------------------------------------- /backend/problems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/backend/problems.txt -------------------------------------------------------------------------------- /backend/problems_importer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/backend/problems_importer.php -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/css/main.css -------------------------------------------------------------------------------- /css/utility.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/css/utility.css -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/favicon.png -------------------------------------------------------------------------------- /frontend/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/frontend/about.html -------------------------------------------------------------------------------- /frontend/contribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/frontend/contribute.html -------------------------------------------------------------------------------- /frontend/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/frontend/faq.html -------------------------------------------------------------------------------- /frontend/recovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/frontend/recovery.html -------------------------------------------------------------------------------- /frontend/vote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/frontend/vote.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/index.html -------------------------------------------------------------------------------- /js/cookieIO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/js/cookieIO.js -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/js/index.js -------------------------------------------------------------------------------- /js/localIO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/js/localIO.js -------------------------------------------------------------------------------- /js/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/js/utility.js -------------------------------------------------------------------------------- /js/vote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/js/vote.js -------------------------------------------------------------------------------- /scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/scraper.py -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTiger927/USACO-Rating/HEAD/screenshot.png --------------------------------------------------------------------------------