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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notes — Profpatsch</title>
<style>
@font-face {
font-family: 'Quattrocento';
font-weight: 400;
src: url(/fonts/quattrocento-latin.woff2) format('woff2');
font-display: swap;
}
@font-face {
font-family: 'Open Sans';
font-weight: 300;
src: url(/fonts/open-sans-latin.woff2) format('woff2');
font-display: swap;
}
body {
font-family: 'Quattrocento', serif;
font-size: 20px;
line-height: 1.5em;
margin: 0 auto;
max-width: 60ch;
padding: 1em 0.5em;
background: #fff;
color: #111;
}
@media (min-width: 40em) { body { padding: 1em 2em; } }
@media (prefers-color-scheme: dark) {
body { background: #1a1a1a; color: #ddd; }
a { color: #adf; }
a:visited { color: #c9a0ff; }
hr { border-top-color: #444; }
}
h1 { font-family: 'Open Sans', sans-serif; font-weight: 300; }
hr { border: none; border-top: 1px solid #ccc; margin: 2em 0; }
ul { padding-left: 1.2em; }
li { margin-bottom: 0.5em; }
.date { font-size: 0.8em; color: #666; }
@media (prefers-color-scheme: dark) { .date { color: #999; } }
</style>
</head>
<body>
<h1>Notes</h1>
<hr>
<ul>
<li>
<a href="/notes/text-llm">Accept: text/llm</a>
<span class="date">· 2026-08-26</span>
</li>
<li>
<a href="https://sfttime.softwaregardening.org">sfttime(7) — a hexadecimal time system based on fractional days</a>
<span class="date">· 2026-04-23</span>
</li>
<li>
<a href="/notes/an-idealized-conflang">An idealized Configuration Language</a>
<span class="date">· 2022-03-31</span>
</li>
<li>
<a href="/notes/preventing-oom">Preventing out-of-memory (OOM) errors on Linux</a>
<span class="date">· 2020-01-25</span>
</li>
<li>
<a href="/notes/private-trackers-are-markets">Private bittorrent trackers are markets</a>
</li>
<li>
<a href="/notes/rust-string-conversions">Converting between different String types in Rust</a>
</li>
</ul>
</body>
</html>
|