blob: 658b962a3c71c68ecaa4dc5c7c9d1b0b82593583 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>subh.space</title>
<style>
:root {
--bg0: #282828;
--bg1: #3c3836;
--fg: #ebdbb2;
--gray: #928374;
--yellow: #fabd2f;
--aqua: #8ec07c;
--orange: #fe8019;
}
body {
font-family: 'Iosevka Nerd Font Propo';
line-height: 1.6;
color: var(--fg);
background-color: var(--bg0);
max-width: 650px;
margin: 60px auto;
padding: 0 20px;
-webkit-font-smoothing: antialiased;
}
header {
margin-bottom: 40px;
}
h1 {
font-size: 1.8em;
color: var(--yellow);
margin-bottom: 10px;
}
.subtitle {
color: var(--gray);
font-size: 0.95em;
}
nav ul {
list-style: none;
padding: 0;
}
nav li {
margin-bottom: 15px;
display: flex;
justify-content: space-between;
align-items: baseline;
border-bottom: 1px dotted var(--bg1);
padding-bottom: 8px;
}
nav a {
color: var(--aqua);
text-decoration: none;
font-weight: 500;
transition: color 0.2s;
}
nav a:hover {
color: var(--orange);
text-decoration: underline;
}
.date {
font-family: 'Fira Code', monospace;
font-size: 0.85em;
color: var(--gray);
}
footer {
margin-top: 60px;
font-size: 0.8em;
color: var(--gray);
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>Random Stuff</h1>
</header>
<main>
<nav>
<ul>
<li>
<a href="cloudflare-dot.html">DNS over TLS (DoT) with Cloudflare</a>
<span class="date">2026-04-14</span>
</li>
<li>
<a href="usb-notif-linux.html">USB notifications with udev</a>
<span class="date">2026-04-14</span>
</li>
<li>
<a href="luks-encryption.html">Drive encryption with LUKS and cryptsetup</a>
<span class="date">2026-04-14</span>
</li>
</ul>
</nav>
</main>
<footer>
<p>© 2026 subh.space</p>
</footer>
</body>
</html>
|