-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
160 lines (158 loc) · 4.06 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset = "UTF-8">
<meta name = "viewport" content = "width = device-width">
<!-- Use the title from a page's frontmatter if it has one -->
<title>Index</title>
<link rel = "stylesheet" href = "stylesheets/highlighting.css">
<link rel = "stylesheet" href = "stylesheets/styles.css">
</head>
<body>
<div class = "page">
<div class = "content title">
<h1>A blog of sorts</h1>
</div>
<header>
<nav class = "links">
<ul>
<li>
<p>
<a href="itDoesWhatYouTellItTo.html">It does what you tell it to do</a>
</p>
<p class = "date">
2024/08/05
</p>
</li>
<li>
<p>
<a href="doesCrimePay.html">Does crime pay? (in D&D)</a>
</p>
<p class = "date">
2023/11/25
</p>
</li>
<li>
<p>
<a href="manifestVersionThree.html">Manifest Version 3</a>
</p>
<p class = "date">
2023/11/1
</p>
</li>
<li>
<p>
<a href="buildingABridge.html">Getting Rust and the JVM to talk to each other without JNI</a>
</p>
<p class = "date">
2022/12/11
</p>
</li>
<li>
<p>
<a href="handle.html">My username</a>
</p>
<p class = "date">
2022/06/26
</p>
</li>
<li>
<p>
<a href="rustImmatureLibraries.html">Working with immature libraries in Rust</a>
</p>
<p class = "date">
2021/07/14
</p>
</li>
<li>
<p>
<a href="serviceWorkers.html">Avoiding corrupted content errors with Service Workers</a>
</p>
<p class = "date">
2020/03/03
</p>
</li>
<li>
<p>
<a href="risky2.html">Risky Conquest 1.2 [Game]</a>
</p>
<p class = "date">
2020/01/05
</p>
</li>
<li>
<p>
<a href="mvvm.html">Model-View-ViewModel what?</a>
</p>
<p class = "date">
2019/12/17
</p>
</li>
<li>
<p>
<a href="multipleWifiSources.html">Multiple WiFi sources</a>
</p>
<p class = "date">
2019/01/24
</p>
</li>
<li>
<p>
<a href="cWithClasses.html">C with Classes</a>
</p>
<p class = "date">
2018/11/04
</p>
</li>
<li>
<p>
<a href="oddlyFamiliar.html">This is oddly familiar; FFI and JSON messaging</a>
</p>
<p class = "date">
2018/10/06
</p>
</li>
<li>
<p>
<a href="risky.html">Risky Conquest 1.1 [Game]</a>
</p>
<p class = "date">
2018/06/24
</p>
</li>
<li>
<p>
<a href="multipleInheritance.html">Multiple inheritance in Lua</a>
</p>
<p class = "date">
2018/04/04
</p>
</li>
<li>
<p>
<a href="duplicateTab.html">Duplicate Tab</a>
</p>
<p class = "date">
2017/12/28
</p>
</li>
<li>
<p>
<a href="building.html">Building this site</a>
</p>
<p class = "date">
2017/09/04
</p>
</li>
</ul>
</nav>
</header>
</div>
<footer>
<div class = "footer">
<p>My content on this site is licensed under Creative Commons By Attribution <a href="https://creativecommons.org/licenses/by/4.0/">https://creativecommons.org/licenses/by/4.0/</a></p>
<p>This site's source code is licensed under the MIT license <a href="https://github.com/Skeletonxf/Skeletonxf.github.io/tree/code">https://github.com/Skeletonxf/Skeletonxf.github.io/tree/code</a></p>
</div>
</footer>
</body>
</html>