-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperiments.html
More file actions
65 lines (65 loc) · 1.55 KB
/
experiments.html
File metadata and controls
65 lines (65 loc) · 1.55 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Experiments • Diego Rodríguez Atencia</title>
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Source+Code+Pro:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Source Code Pro', 'Courier New', monospace;
background: #000000;
color: #00ff00;
line-height: 1.6;
padding: 40px 20px;
max-width: 800px;
margin: 0 auto;
}
h1 {
color: #00ff00;
border-bottom: 2px solid #00ff00;
padding-bottom: 10px;
}
p {
color: #00aa00;
font-size: 1.1rem;
}
ul {
list-style: none;
padding-left: 0;
}
li {
margin: 15px 0;
padding-left: 20px;
position: relative;
}
li:before {
content: ">";
position: absolute;
left: 0;
color: #00ff00;
}
a {
color: #00ff00;
text-decoration: none;
border-bottom: 1px solid transparent;
transition: border-color 0.2s;
}
a:hover {
border-bottom-color: #00ff00;
}
</style>
</head>
<body>
<h1>Experiments</h1>
<p>Some experiments</p>
<ul>
<li>Neural network from scratch in C</li>
<li><a href="./weird_imp_nn.html">Weird implementations of neural networks</a></li>
<li>Consensus algorithm</li>
<li>Convolutional network from scratch in C</li>
<li>Bottle experiment</li>
</ul>
</body>
</html>