-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
61 lines (61 loc) · 2.95 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<title>My site</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Stuff I made</h2><p>Not really, I definitely copied some code.</p>
<div class="list-group">
<a href="https://bejofo.github.io/mice/dogo.html" class="list-group-item">
<h4 class="list-group-item-heading">DOGO interpreter</h4>
<p class="list-group-item-text">Puppy graphics not included</p>
</a>
<a href="https://bejofo.github.io/mice/music/music.html" class="list-group-item">
<h4 class="list-group-item-heading">Bad music generator</h4>
<p class="list-group-item-text">I don't know what to say</p>
</a>
<a href="https://bejofo.github.io/mice/fc.html" class="list-group-item">
<h4 class="list-group-item-heading">Temperature converter</h4>
<p class="list-group-item-text">With Felsius</p>
</a>
<a href="https://bejofo.github.io/mice/synth/index.html" class="list-group-item">
<h4 class="list-group-item-heading">Synth</h4>
<p class="list-group-item-text"></p>
</a>
<a href="https://bejofo.github.io/mice/progress/" class="list-group-item">
<h4 class="list-group-item-heading">Progress bar</h4>
<p class="list-group-item-text">Shows how long till class ends.</p>
</a>
<a href="https://bejofo.github.io/mice/wb.html" class="list-group-item">
<h4 class="list-group-item-heading">White board</h4>
<p class="list-group-item-text">I consider this my greatest achievement in life.</p>
</a>
<a href="https://bejofo.github.io/mice/cal/" class="list-group-item">
<h4 class="list-group-item-heading">Calculator</h4>
<p class="list-group-item-text">It even plays music.</p>
</a>
<a href="https://bejofo.github.io/mice/rl/" class="list-group-item">
<h4 class="list-group-item-heading">WIP rouge-like</h4>
<p class="list-group-item-text">Something I threw together in rot.js</p>
</a>
<a href="https://bejofo.github.io/mice/spaceWar/" class="list-group-item">
<h4 class="list-group-item-heading">Space Game</h4>
<p class="list-group-item-text">2 player game</p>
</a>
</div>
</div>
<script>
var splash = atob('ZG9udF9jdXRfdGhlX3JlZF93aXJlfGp1c3RfZG9faXR8dW5kZXJfY29uc3RydWN0aW9ufGNvbWluZ19zb29ufGluc2VydF9zcGxhc2hfdGV4dF9oZXJlfG51bGx8dW5kZ\
WZpbmVkfFNPTUVCT0RZX09OQ0VfVE9MRF9NRXxvb29mfEVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRXxZRUVFRUVFVHxGfHVzc3IucG5nfFlBTExfTkVFRF9KRVNVU3xtaXN0YWtlc19oYXZlX2\
JlZW5fbWFkZXxTT1lVWl9ORVJVU0hJTVk').split('|');
location.hash = splash[Math.floor(Math.random() * splash.length)];
var splash = null;
</script>
</body>
</html>