2015-04-09 17:40:03 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>The Credits</title>
|
2015-04-20 12:08:21 -06:00
|
|
|
<meta name="viewport" content="width=device-width">
|
2015-04-19 23:14:31 -06:00
|
|
|
<link rel="stylesheet" href="style.css" type="text/css">
|
2015-04-15 15:05:40 -06:00
|
|
|
<script>
|
|
|
|
function shuf (ul) {
|
|
|
|
var lists = document.getElementsByClassName("shuf");
|
|
|
|
for (var l = 0; l < lists.length; l += 1) {
|
|
|
|
var ul = lists[l];
|
2015-06-04 00:02:51 -06:00
|
|
|
|
2015-04-15 15:05:40 -06:00
|
|
|
for (var i = ul.children.length; i >= 0; i--) {
|
|
|
|
ul.appendChild(ul.children[Math.random() * i | 0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function init() {
|
|
|
|
shuf();
|
|
|
|
setInterval(shuf, 2000);
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener("load", init);
|
|
|
|
|
|
|
|
</script>
|
2015-04-09 17:40:03 -06:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Credits</h1>
|
2015-06-04 00:02:51 -06:00
|
|
|
|
2015-04-09 17:40:03 -06:00
|
|
|
<section>
|
2015-04-10 16:37:21 -06:00
|
|
|
<h2>Created By</h2>
|
2015-06-04 00:02:51 -06:00
|
|
|
|
2015-04-15 15:05:40 -06:00
|
|
|
<ul class="shuf">
|
|
|
|
<!-- Added in order of date -->
|
2015-04-09 17:40:03 -06:00
|
|
|
<li>Neale Pickett</li>
|
|
|
|
<li>Aaron McPhall</li>
|
2015-04-15 14:36:52 -06:00
|
|
|
<li>Ken S</li>
|
2015-04-09 17:40:03 -06:00
|
|
|
<li>Russel Nolen</li>
|
|
|
|
<li>Patrick Avery</li>
|
|
|
|
<li>Kate Vajda</li>
|
|
|
|
<li>Alex Brugh</li>
|
|
|
|
<li>Paul Ferrell</li>
|
|
|
|
<li>Jeremy Scott</li>
|
|
|
|
<li>Danny Quist</li>
|
|
|
|
<li>Adam Glasgall</li>
|
|
|
|
<li>Curtis Hash</li>
|
|
|
|
<li>Erin Ochoa</li>
|
|
|
|
<li>William Phillips</li>
|
2015-04-15 15:05:40 -06:00
|
|
|
<li>Jeremy Hefner</li>
|
2015-06-04 00:02:51 -06:00
|
|
|
<li>James Wernicke</li>
|
2015-04-09 17:40:03 -06:00
|
|
|
</ul>
|
2015-06-04 00:02:51 -06:00
|
|
|
|
2015-04-15 15:05:40 -06:00
|
|
|
<p>
|
|
|
|
Should your name be here? Please remind me!
|
|
|
|
</p>
|
2015-04-10 16:37:21 -06:00
|
|
|
</section>
|
2015-06-04 00:02:51 -06:00
|
|
|
|
2015-04-10 16:37:21 -06:00
|
|
|
<section>
|
|
|
|
<h2>Inspiration</h2>
|
2015-04-15 15:05:40 -06:00
|
|
|
<ul class="shuf">
|
2015-04-09 17:40:03 -06:00
|
|
|
<li>DC949</li>
|
|
|
|
<li>Tube Warriors</li>
|
|
|
|
<li>Sandia National Laboratories</li>
|
|
|
|
</ul>
|
2015-04-10 16:37:21 -06:00
|
|
|
</section>
|
2015-06-04 00:02:51 -06:00
|
|
|
|
2015-04-10 16:37:21 -06:00
|
|
|
<section>
|
|
|
|
<h2>Thanks</h2>
|
2015-04-09 17:40:03 -06:00
|
|
|
<p>
|
2015-04-10 16:37:21 -06:00
|
|
|
This contest would not exist were it not for hundreds of
|
|
|
|
thousands of lines of code from free software authors around the
|
|
|
|
world, including:
|
2015-04-09 17:40:03 -06:00
|
|
|
</p>
|
2015-04-15 15:05:40 -06:00
|
|
|
<ul class="shuf">
|
2015-04-09 17:40:03 -06:00
|
|
|
<li>Busybox</li>
|
|
|
|
<li>Linux</li>
|
|
|
|
<li>dnsmasq</li>
|
|
|
|
<li>ngircd</li>
|
|
|
|
<li>lua</li>
|
|
|
|
</ul>
|
|
|
|
</section>
|
2015-04-12 09:16:48 -06:00
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
<li><a href="register.html">Register</a></li>
|
|
|
|
<li><a href="puzzles.html">Puzzles</a></li>
|
|
|
|
<li><a href="scoreboard.html">Scoreboard</a></li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
2015-04-15 15:58:46 -06:00
|
|
|
<section id="sponsors">
|
2017-11-03 13:41:39 -06:00
|
|
|
<img src="images/logo0.png" alt="">
|
|
|
|
<img src="images/logo1.png" alt="">
|
|
|
|
<img src="images/logo2.png" alt="">
|
|
|
|
<img src="images/logo3.png" alt="">
|
2018-05-10 10:54:36 -06:00
|
|
|
<img src="images/logo4.png" alt="">
|
2015-04-15 15:58:46 -06:00
|
|
|
</section>
|
2015-04-09 17:40:03 -06:00
|
|
|
</body>
|
|
|
|
</html>
|