-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (59 loc) · 1.67 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
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: black;
}
a {
color: rgb(200,200,200);
}
a:visited {
color: rgb(200,200,200);
}
.plot {
margin-right: 50px;
margin-top: 10px;
}
.plots {
margin: auto;
display: flex;
flex-direction: row;
justify-content: flex-start;
flex-wrap: wrap;
}
.label {
font-family: monospace;
color: rgb(200,200,200);
margin-bottom: 20px;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-106762820-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments)};
gtag('js', new Date());
gtag('config', 'UA-106762820-1');
</script>
</head>
<body>
<div class="label">
<span><a href="https://github.com/ceberly/ssmm">https://github.com/ceberly/ssmm</a>
</div>
<div class="label">
<span>tree node count:</span>
<span id="tree-node-count">0</span>
</div>
<div class="plots">
<div class="plot">
<div class="label">DOOM zone alloctor (<a href="https://github.com/id-Software/DOOM/blob/master/linuxdoom-1.10/z_zone.c">https://github.com/id-Software/DOOM/blob/master/linuxdoom-1.10/z_zone.c</a>)</div>
<canvas id="doom-plot" width="512" height="512"></canvas>
</div>
<div class="plot">
<div class="label">K&R C example storage allocator</div>
<canvas id="kandr-plot" width="512" height="512"></canvas>
</div>
</div>
<script src="index.js"></script>
</body>
</html>