Skip to content

Commit 1fdf05d

Browse files
committed
Added buggy version of AoCTiles
1 parent 4633ac8 commit 1fdf05d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+9716
-3
lines changed
Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
<!DOCTYPE html>
2+
<html lang="en-us">
3+
<head>
4+
<meta charset="utf-8"/>
5+
<title>Leaderboard - Advent of Code 2019</title>
6+
<!--[if lt IE 9]><script src="/static/html5.js"></script><![endif]-->
7+
<link href='//fonts.googleapis.com/css?family=Source+Code+Pro:300&subset=latin,latin-ext' rel='stylesheet' type='text/css'/>
8+
<link rel="stylesheet" type="text/css" href="/static/style.css?30"/>
9+
<link rel="stylesheet alternate" type="text/css" href="/static/highcontrast.css?0" title="High Contrast"/>
10+
<link rel="shortcut icon" href="/favicon.png"/>
11+
<script>window.addEventListener('click', function(e,s,r){if(e.target.nodeName==='CODE'&&e.detail===3){s=window.getSelection();s.removeAllRanges();r=document.createRange();r.selectNodeContents(e.target);s.addRange(r);}});</script>
12+
</head><!--
13+
14+
15+
16+
17+
Oh, hello! Funny seeing you here.
18+
19+
I appreciate your enthusiasm, but you aren't going to find much down here.
20+
There certainly aren't clues to any of the puzzles. The best surprises don't
21+
even appear in the source until you unlock them for real.
22+
23+
Please be careful with automated requests; I'm not a massive company, and I can
24+
only take so much traffic. Please be considerate so that everyone gets to play.
25+
26+
If you're curious about how Advent of Code works, it's running on some custom
27+
Perl code. Other than a few integrations (auth, analytics, social media), I
28+
built the whole thing myself, including the design, animations, prose, and all
29+
of the puzzles.
30+
31+
The puzzles are most of the work; preparing a new calendar and a new set of
32+
puzzles each year takes all of my free time for 4-5 months. A lot of effort
33+
went into building this thing - I hope you're enjoying playing it as much as I
34+
enjoyed making it for you!
35+
36+
If you'd like to hang out, I'm @ericwastl on Twitter.
37+
38+
- Eric Wastl
39+
40+
41+
42+
43+
44+
45+
46+
47+
48+
49+
50+
51+
52+
53+
54+
55+
56+
57+
58+
59+
60+
61+
62+
63+
64+
65+
66+
67+
68+
69+
70+
71+
72+
73+
74+
75+
76+
77+
78+
79+
80+
81+
82+
83+
84+
85+
86+
87+
88+
89+
-->
90+
<body>
91+
<header><div><h1 class="title-global"><a href="/">Advent of Code</a></h1><nav><ul><li><a href="/2019/about">[About]</a></li><li><a href="/2019/events">[Events]</a></li><li><a href="https://teespring.com/stores/advent-of-code" target="_blank">[Shop]</a></li><li><a href="/2019/settings">[Settings]</a></li><li><a href="/2019/auth/logout">[Log Out]</a></li></ul></nav><div class="user">vaeng <span class="star-count">1*</span></div></div><div><h1 class="title-event">&nbsp;&nbsp;&nbsp;<span class="title-event-wrap">&lt;y&gt;</span><a href="/2019">2019</a><span class="title-event-wrap">&lt;/y&gt;</span></h1><nav><ul><li><a href="/2019">[Calendar]</a></li><li><a href="/2019/support">[AoC++]</a></li><li><a href="/2019/sponsors">[Sponsors]</a></li><li><a href="/2019/leaderboard">[Leaderboard]</a></li><li><a href="/2019/stats">[Stats]</a></li></ul></nav></div></header>
92+
93+
<div id="sidebar">
94+
<div id="sponsor"><div class="quiet">Our <a href="/2019/sponsors">sponsors</a> help make Advent of Code possible:</div><div class="sponsor"><a href="https://www.twilio.com/quest" target="_blank" onclick="if(ga)ga('send','event','sponsor','sidebar',this.href);" rel="noopener">TwilioQuest</a> - Play Advent of Code and earn rad loot in TwilioQuest, a developer RPG for Mac, Windows, and Linux. Learn JavaScript, Python, git, APIs for SMS, VoIP, or WhatsApp, and much more.</div></div>
95+
</div><!--/sidebar-->
96+
97+
<main>
98+
<article><p>These are your personal leaderboard statistics. <em>Rank</em> is your position on that leaderboard: 1 means you were the first person to get that star, 2 means the second, 100 means the 100th, etc. <em>Score</em> is the number of points you got for that rank: 100 for 1st, 99 for 2nd, ..., 1 for 100th, and 0 otherwise.</p><pre> <span class="leaderboard-daydesc-first">--------Part 1---------</span> <span class="leaderboard-daydesc-both">-------Part 2--------</span>
99+
Day <span class="leaderboard-daydesc-first"> Time Rank Score</span> <span class="leaderboard-daydesc-both"> Time Rank Score</span>
100+
1 &gt;24h 107888 0 - - -
101+
</pre>
102+
</article>
103+
</main>
104+
105+
<!-- ga -->
106+
<script>
107+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
108+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
109+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
110+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
111+
ga('create', 'UA-69522494-1', 'auto');
112+
ga('set', 'anonymizeIp', true);
113+
ga('send', 'pageview');
114+
</script>
115+
<!-- /ga -->
116+
</body>
117+
</html>
Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
<!DOCTYPE html>
2+
<html lang="en-us">
3+
<head>
4+
<meta charset="utf-8"/>
5+
<title>Leaderboard - Advent of Code 2020</title>
6+
<!--[if lt IE 9]><script src="/static/html5.js"></script><![endif]-->
7+
<link href='//fonts.googleapis.com/css?family=Source+Code+Pro:300&subset=latin,latin-ext' rel='stylesheet' type='text/css'/>
8+
<link rel="stylesheet" type="text/css" href="/static/style.css?30"/>
9+
<link rel="stylesheet alternate" type="text/css" href="/static/highcontrast.css?0" title="High Contrast"/>
10+
<link rel="shortcut icon" href="/favicon.png"/>
11+
<script>window.addEventListener('click', function(e,s,r){if(e.target.nodeName==='CODE'&&e.detail===3){s=window.getSelection();s.removeAllRanges();r=document.createRange();r.selectNodeContents(e.target);s.addRange(r);}});</script>
12+
</head><!--
13+
14+
15+
16+
17+
Oh, hello! Funny seeing you here.
18+
19+
I appreciate your enthusiasm, but you aren't going to find much down here.
20+
There certainly aren't clues to any of the puzzles. The best surprises don't
21+
even appear in the source until you unlock them for real.
22+
23+
Please be careful with automated requests; I'm not a massive company, and I can
24+
only take so much traffic. Please be considerate so that everyone gets to play.
25+
26+
If you're curious about how Advent of Code works, it's running on some custom
27+
Perl code. Other than a few integrations (auth, analytics, social media), I
28+
built the whole thing myself, including the design, animations, prose, and all
29+
of the puzzles.
30+
31+
The puzzles are most of the work; preparing a new calendar and a new set of
32+
puzzles each year takes all of my free time for 4-5 months. A lot of effort
33+
went into building this thing - I hope you're enjoying playing it as much as I
34+
enjoyed making it for you!
35+
36+
If you'd like to hang out, I'm @ericwastl on Twitter.
37+
38+
- Eric Wastl
39+
40+
41+
42+
43+
44+
45+
46+
47+
48+
49+
50+
51+
52+
53+
54+
55+
56+
57+
58+
59+
60+
61+
62+
63+
64+
65+
66+
67+
68+
69+
70+
71+
72+
73+
74+
75+
76+
77+
78+
79+
80+
81+
82+
83+
84+
85+
86+
87+
88+
89+
-->
90+
<body>
91+
<header><div><h1 class="title-global"><a href="/">Advent of Code</a></h1><nav><ul><li><a href="/2020/about">[About]</a></li><li><a href="/2020/events">[Events]</a></li><li><a href="https://teespring.com/stores/advent-of-code" target="_blank">[Shop]</a></li><li><a href="/2020/settings">[Settings]</a></li><li><a href="/2020/auth/logout">[Log Out]</a></li></ul></nav><div class="user">vaeng <span class="star-count">25*</span></div></div><div><h1 class="title-event">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="title-event-wrap"></span><a href="/2020">2020</a><span class="title-event-wrap"></span></h1><nav><ul><li><a href="/2020">[Calendar]</a></li><li><a href="/2020/support">[AoC++]</a></li><li><a href="/2020/sponsors">[Sponsors]</a></li><li><a href="/2020/leaderboard">[Leaderboard]</a></li><li><a href="/2020/stats">[Stats]</a></li></ul></nav></div></header>
92+
93+
<div id="sidebar">
94+
<div id="sponsor"><div class="quiet">Our <a href="/2020/sponsors">sponsors</a> help make Advent of Code possible:</div><div class="sponsor"><a href="https://careers.bolt.eu/positions?team=engineering&amp;utm_source=adventofcode&amp;utm_medium=banner&amp;utm_campaign=adventofcode_traffic" target="_blank" onclick="if(ga)ga('send','event','sponsor','sidebar',this.href);" rel="noopener">Bolt</a> - Fastest growing mobility startup in Europe: distributed systems, microservices, ML, complex algorithms for demand prediction, and much more!</div></div>
95+
</div><!--/sidebar-->
96+
97+
<main>
98+
<article><p>These are your personal leaderboard statistics. <em>Rank</em> is your position on that leaderboard: 1 means you were the first person to get that star, 2 means the second, 100 means the 100th, etc. <em>Score</em> is the number of points you got for that rank: 100 for 1st, 99 for 2nd, ..., 1 for 100th, and 0 otherwise.</p><pre> <span class="leaderboard-daydesc-first">--------Part 1---------</span> <span class="leaderboard-daydesc-both">--------Part 2---------</span>
99+
Day <span class="leaderboard-daydesc-first"> Time Rank Score</span> <span class="leaderboard-daydesc-both"> Time Rank Score</span>
100+
13 &gt;24h 42360 0 &gt;24h 32747 0
101+
12 &gt;24h 43990 0 &gt;24h 40744 0
102+
11 &gt;24h 46082 0 &gt;24h 41717 0
103+
10 &gt;24h 55802 0 - - -
104+
9 &gt;24h 58946 0 &gt;24h 57591 0
105+
8 &gt;24h 63683 0 &gt;24h 59083 0
106+
7 &gt;24h 64419 0 &gt;24h 58711 0
107+
6 &gt;24h 78724 0 &gt;24h 76636 0
108+
5 &gt;24h 82936 0 &gt;24h 81224 0
109+
4 &gt;24h 96056 0 &gt;24h 85520 0
110+
3 &gt;24h 106408 0 &gt;24h 103271 0
111+
2 &gt;24h 126380 0 &gt;24h 122620 0
112+
1 &gt;24h 154298 0 &gt;24h 144099 0
113+
</pre>
114+
</article>
115+
</main>
116+
117+
<!-- ga -->
118+
<script>
119+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
120+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
121+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
122+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
123+
ga('create', 'UA-69522494-1', 'auto');
124+
ga('set', 'anonymizeIp', true);
125+
ga('send', 'pageview');
126+
</script>
127+
<!-- /ga -->
128+
</body>
129+
</html>
Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
<!DOCTYPE html>
2+
<html lang="en-us">
3+
<head>
4+
<meta charset="utf-8"/>
5+
<title>Leaderboard - Advent of Code 2021</title>
6+
<!--[if lt IE 9]><script src="/static/html5.js"></script><![endif]-->
7+
<link href='//fonts.googleapis.com/css?family=Source+Code+Pro:300&subset=latin,latin-ext' rel='stylesheet' type='text/css'/>
8+
<link rel="stylesheet" type="text/css" href="/static/style.css?30"/>
9+
<link rel="stylesheet alternate" type="text/css" href="/static/highcontrast.css?0" title="High Contrast"/>
10+
<link rel="shortcut icon" href="/favicon.png"/>
11+
<script>window.addEventListener('click', function(e,s,r){if(e.target.nodeName==='CODE'&&e.detail===3){s=window.getSelection();s.removeAllRanges();r=document.createRange();r.selectNodeContents(e.target);s.addRange(r);}});</script>
12+
</head><!--
13+
14+
15+
16+
17+
Oh, hello! Funny seeing you here.
18+
19+
I appreciate your enthusiasm, but you aren't going to find much down here.
20+
There certainly aren't clues to any of the puzzles. The best surprises don't
21+
even appear in the source until you unlock them for real.
22+
23+
Please be careful with automated requests; I'm not a massive company, and I can
24+
only take so much traffic. Please be considerate so that everyone gets to play.
25+
26+
If you're curious about how Advent of Code works, it's running on some custom
27+
Perl code. Other than a few integrations (auth, analytics, social media), I
28+
built the whole thing myself, including the design, animations, prose, and all
29+
of the puzzles.
30+
31+
The puzzles are most of the work; preparing a new calendar and a new set of
32+
puzzles each year takes all of my free time for 4-5 months. A lot of effort
33+
went into building this thing - I hope you're enjoying playing it as much as I
34+
enjoyed making it for you!
35+
36+
If you'd like to hang out, I'm @ericwastl on Twitter.
37+
38+
- Eric Wastl
39+
40+
41+
42+
43+
44+
45+
46+
47+
48+
49+
50+
51+
52+
53+
54+
55+
56+
57+
58+
59+
60+
61+
62+
63+
64+
65+
66+
67+
68+
69+
70+
71+
72+
73+
74+
75+
76+
77+
78+
79+
80+
81+
82+
83+
84+
85+
86+
87+
88+
89+
-->
90+
<body>
91+
<header><div><h1 class="title-global"><a href="/">Advent of Code</a></h1><nav><ul><li><a href="/2021/about">[About]</a></li><li><a href="/2021/events">[Events]</a></li><li><a href="https://teespring.com/stores/advent-of-code" target="_blank">[Shop]</a></li><li><a href="/2021/settings">[Settings]</a></li><li><a href="/2021/auth/logout">[Log Out]</a></li></ul></nav><div class="user">vaeng <span class="star-count">44*</span></div></div><div><h1 class="title-event">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="title-event-wrap">λy.</span><a href="/2021">2021</a><span class="title-event-wrap"></span></h1><nav><ul><li><a href="/2021">[Calendar]</a></li><li><a href="/2021/support">[AoC++]</a></li><li><a href="/2021/sponsors">[Sponsors]</a></li><li><a href="/2021/leaderboard">[Leaderboard]</a></li><li><a href="/2021/stats">[Stats]</a></li></ul></nav></div></header>
92+
93+
<div id="sidebar">
94+
<div id="sponsor"><div class="quiet">Our <a href="/2021/sponsors">sponsors</a> help make Advent of Code possible:</div><div class="sponsor"><a href="https://shopify.engineering/?utm_campaign=advent_of_code&amp;utm_medium=cpc" target="_blank" onclick="if(ga)ga('send','event','sponsor','sidebar',this.href);" rel="noopener">Shopify</a> - Check out our engineering blog and learn how Yule be able to solve commerce problems at scale by joining Shopify. Happy Holidays!</div></div>
95+
</div><!--/sidebar-->
96+
97+
<main>
98+
<article><p>These are your personal leaderboard statistics. <em>Rank</em> is your position on that leaderboard: 1 means you were the first person to get that star, 2 means the second, 100 means the 100th, etc. <em>Score</em> is the number of points you got for that rank: 100 for 1st, 99 for 2nd, ..., 1 for 100th, and 0 otherwise.</p><pre> <span class="leaderboard-daydesc-first">--------Part 1--------</span> <span class="leaderboard-daydesc-both">--------Part 2--------</span>
99+
Day <span class="leaderboard-daydesc-first"> Time Rank Score</span> <span class="leaderboard-daydesc-both"> Time Rank Score</span>
100+
22 04:27:12 7776 0 16:08:38 7312 0
101+
21 04:27:39 9889 0 14:11:54 10425 0
102+
20 13:50:33 12374 0 13:52:20 11962 0
103+
19 12:14:37 5015 0 12:39:34 4905 0
104+
18 16:26:52 10715 0 17:13:20 10828 0
105+
17 12:09:11 17337 0 16:27:02 18337 0
106+
16 09:52:24 12324 0 11:30:11 12061 0
107+
15 04:30:23 10825 0 05:04:24 8299 0
108+
14 04:12:44 17593 0 04:13:21 10105 0
109+
13 03:47:31 13922 0 04:05:31 13460 0
110+
12 04:35:35 12066 0 09:05:08 17743 0
111+
11 00:55:19 5098 0 01:02:08 5175 0
112+
10 03:31:58 18065 0 05:36:27 21676 0
113+
9 04:42:06 23845 0 06:26:21 18814 0
114+
8 03:51:29 23190 0 06:19:09 16127 0
115+
7 02:45:21 20907 0 05:09:59 28565 0
116+
6 03:59:15 24262 0 04:00:05 17636 0
117+
5 08:04:50 28800 0 08:17:51 25659 0
118+
4 01:40:15 8806 0 02:03:28 8485 0
119+
3 02:06:13 21024 0 05:40:21 26615 0
120+
2 04:04:47 37333 0 04:09:45 34731 0
121+
1 14:25:36 79128 0 14:49:11 70192 0
122+
</pre>
123+
</article>
124+
</main>
125+
126+
<!-- ga -->
127+
<script>
128+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
129+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
130+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
131+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
132+
ga('create', 'UA-69522494-1', 'auto');
133+
ga('set', 'anonymizeIp', true);
134+
ga('send', 'pageview');
135+
</script>
136+
<!-- /ga -->
137+
</body>
138+
</html>

0 commit comments

Comments
 (0)