-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfragments.html
47 lines (46 loc) · 1.16 KB
/
fragments.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
<!DOCTYPE html>
<html>
<head>
<title>Di Jin's Personal Page</title>
<style>
body {
max-width: 800px;
margin: auto;
padding: 10px;
}
.photo {
width: 200px;
}
code {
max-width: 800px;
background-color: #eeeeee;
overflow: auto;
}
pre {
padding-top: 5px;
padding-bottom: 5px;
padding: 5px;
max-width: 800px;
background-color: #eeeeee;
overflow: auto;
}
</style>
</head>
<body>
<h1>Di Jin's Personal Page</h1>
<nav><ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/publications.html">Publications & Projects</a></li>
<li><a href="/random_things.html">Random Things</a></li>
<li>Fragments of my Life</li>
</ul></nav>
<hr />
<p>
Here are something that I needed to do but not being immediately
online. I've spent hours trying to figured out, hence the name
of the section.
</p>
<p><a href="fragments/guide_mac_qemu.html">Create a Debian VM on MacOS Apple Silicon with Qemu</a></p>
<p><a href="fragments/understanding_refcell.html">A Way to Understand RefCell in Rust</a></p>
</body>
</html>