-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
64 lines (64 loc) · 1.28 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
62
63
64
<body></body>
<script>
const directory = {
2024: [
'tetris-scrabble',
'bell-sequences',
'json-json',
'physics-of-life',
'asteroids',
'huffman-compression',
'animate-hex-lines',
'edit-distance',
'radix-sort',
'image-compositing',
'translucent-triangle',
'ollama-chat',
'orbits',
'transparent-pixelation-rendering',
'gravity-veils',
'ga-expander',
'interpolate-points',
'julia-ship',
],
2023: [
'grid-transform',
'ember',
'sudobiks-kube',
'tic-tac-doku',
'ga-quaternions',
'2048-rotate',
'animate-hex-lines',
'draw-hex-lines',
'spirals',
'webgl-example',
'bomber-hex-lines',
'html-input-event',
'u32-to-f32-webgl',
'hex-lines-webgl',
'rotor',
'bomber',
'frame-edit-ui',
'hex-lines-wgpu',
'runes',
'pet-language',
'wgpu-merge-sort',
'wgpu-example',
'spinny-ground',
'fill-tool',
'2d-matrix-transforms',
],
};
document.body.innerHTML =
Object.entries(directory)
.sort((a, b) => b[0] - a[0])
.map(([year, experiments]) => `
${year}<br>
<ul>
${experiments.map(experiment => `
<li><a href="${year}/${experiment}">${experiment}</a></li>
`).join('')}
</ul>
`)
.join('');
</script>