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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects — 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; }
dl { margin: 0; }
dt { font-weight: bold; margin-top: 0.5em; }
dd { margin-left: 0; margin-top: 0.25em; }
</style>
</head>
<body>
<h1>Projects</h1>
<hr>
<dl>
<dt><a href="https://flohmarkt.fyi/">flohmarkt</a></dt>
<dd>A decentralized small-ads platform built on ActivityPub</dd>
<dt><a href="https://github.com/nix-community/lorri">lorri</a></dt>
<dd><code>nix-shell</code> replacement for projects</dd>
<dt><a href="https://sources.profpatsch.de/netencode/">netencode</a></dt>
<dd>A human-readable nested data exchange format inspired by <a href="https://en.wikipedia.org/wiki/Netstring">netstrings</a> and <a href="https://en.wikipedia.org/wiki/Bencode">bencode</a>.</dd>
<dt><a href="https://sources.profpatsch.de/Profpatsch/">sources.profpatsch.de/Profpatsch</a></dt>
<dd>Everything else</dd>
</dl>
</body>
</html>
|