-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (55 loc) · 1.21 KB
/
index.html
File metadata and controls
55 lines (55 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ryan Riddle</title>
<style>
li {
list-style: none;
margin: 1em 0;
}
.date {
margin: 0 1em;
}
</style>
</head>
<body>
<ul>
<li>
<span class="date">2017-06-06</span>
<a href="how-to-write-a-database.html">How to Write a Database - Part 1</a>
</li>
<li>
<span class="date">2017-06-01</span>
<a href="twelve-weeks.html">Twelve Weeks at the Recurse Center</a>
</li>
<li>
<span class="date">2017-04-04</span>
<a href="atomicity.html">Database Transactions and Atomicity</a>
</li>
<li>
<span class="date">2017-03-27</span>
<a href="six-weeks.html">Six Weeks at the Recurse Center</a>
</li>
<li>
<span class="date">2017-03-23</span>
<a href="haskell-huffman.html">Huffman Encoding in Haskell</a>
</li>
<li>
<span class="date">2017-03-14</span>
<a href="subway.html">The Subway</a>
</li>
<li>
<span class="date">2017-02-28</span>
<a href="btree.html">Implementing a B-Tree</a>
</li>
<li>
<span class="date">2017-02-21</span>
<a href="ruby-db.html">Ruby DB</a>
</li>
<li>
<span class="date">2017-02-14</span>
<a href="high-five.html">High Five!</a>
</li>
</ul>
</body>
</html>