├── demo.gif
├── .jshintrc
├── README.md
├── main.css
├── LICENSE
├── index.html
└── main.js
/demo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marcolussetti/adventofcode-percenter/HEAD/demo.gif
--------------------------------------------------------------------------------
/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "camelcase": true,
3 | "quotmark": "double",
4 | "asi": true,
5 | "esversion": 8
6 | }
7 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # adventofcode-percenter
2 |
3 | Generate some basic graphs & find how you're doing overall (Top X%) for each day and solution. This is super basic honestly.
4 |
5 | You can use it from https://aocstats.marcolussetti.com
6 |
7 | ## Demo
8 |
9 | 
10 |
11 | ## Contributing
12 | If for any reason you feel compelled to contribute, pull requests are of course very welcome. For major changes, please open an issue first to discuss what you would like to change.
13 |
14 | When merged in, changes get autodeployed from master via Netlify.
15 |
16 | ## License
17 | [MIT](https://choosealicense.com/licenses/mit/)
18 |
--------------------------------------------------------------------------------
/main.css:
--------------------------------------------------------------------------------
1 | .container {
2 | padding: 1rem;
3 | }
4 |
5 | .center-container {
6 | display: flex;
7 | align-items: center;
8 | justify-content: center;
9 | }
10 |
11 | .container > div {
12 | padding: 0.5rem;
13 | }
14 |
15 | #results-container {
16 | display: none;
17 | }
18 |
19 | footer.footer {
20 | padding: 0.25rem;
21 | width: 100%;
22 | }
23 |
24 | body {
25 | display: flex;
26 | min-height: 100vh;
27 | flex-direction: column;
28 | }
29 |
30 | #wrapper {
31 | flex: 1;
32 | }
33 |
34 |
35 | .section {
36 | padding: 0;
37 | }
38 |
39 |
40 | td {
41 | text-align: right !important;
42 | }
43 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 Marco Lussetti.
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |