-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 2.22 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
<!doctype html>
<head>
<meta charset="utf-8">
<title>lolcats & loldogs</title>
<style>
body {
margin: 0;
padding: 4em;
font: 14px/25px Georgia;
color: #555;
}
a {
color: #2B9AD1;
}
a:visited {
color: #79BFE2;
}
</style>
</head>
<body>
<a href="/experiments/snake/looong/">Snake game that plays itself</a><br>
<a href="/experiments/longest-path/">Greedy longest path search</a> for the snake<br>
<a href="/experiments/linear-regression/">Linear regression by gradient descent</a><br>
<a href="/experiments/map/">Explored areas overlay for Google Maps</a><br>
<a href="/experiments/pythagoras-tree/3d.html">Pythagoras tree</a><br>
<a href="/experiments/pythagoras-tree/wobble.html">Morphing tree</a><br>
<a href="/experiments/strange-attractors/">Strange attractors</a><br>
<a href="/experiments/orbits/">Orbits</a> & <a href="/experiments/orbits/small-multiples.html">All sorts of them</a><br>
<a href="/experiments/dragon-curve/">Heighway dragon fractal</a><br>
<br>
Visualizations for Peter Norvig's CS212 course<br>
<a href="/experiments/parking/">Car parking puzzle</a> & <a href="/experiments/parking/unzipping.html">Unzipping</a><br>
<a href="/experiments/palindrome/">Longest palindromic substring</a><br>
<br>
Simple graphic algorithms<br>
<a href="/experiments/loops/sphere.html">Wobbling sphere</a><br>
<a href="/experiments/loops/abyss.html">Abyss</a><br>
<a href="/experiments/moire-patterns/">Patterns</a><br>
<br>
<a href="https://twitter.com/alisey">@alisey</a> on Twitter<br>
<br>
<img src="rabbits.gif"><img src="rabbits.gif"><img src="rabbits.gif">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45179375-1', 'explord.com');
ga('send', 'pageview');
</script>
</body>