-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
365 lines (361 loc) · 10.2 KB
/
Copy pathindex.html
File metadata and controls
365 lines (361 loc) · 10.2 KB
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
---
layout: none
---
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>David Strupl</title>
<meta
name="description"
content="David Strupl — software engineer at Cisco. Side projects, writing, and the games I play."
/>
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect width='64' height='64' rx='12' fill='%230b1020'/%3E%3Ctext x='50%25' y='54%25' text-anchor='middle' font-family='ui-sans-serif,system-ui' font-size='34' font-weight='700' fill='%237dd3fc'%3EdS%3C/text%3E%3C/svg%3E" />
<style>
:root {
--bg: #0b1020;
--bg-soft: #121933;
--card: #161e3d;
--border: #243056;
--text: #e6e9f5;
--muted: #a3aed0;
--accent: #7dd3fc;
--accent-2: #c4b5fd;
}
@media (prefers-color-scheme: light) {
:root {
--bg: #f7f8fc;
--bg-soft: #ffffff;
--card: #ffffff;
--border: #e4e7ef;
--text: #15192b;
--muted: #5b6580;
--accent: #0369a1;
--accent-2: #6d28d9;
}
}
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
}
body {
background: radial-gradient(
1200px 600px at 80% -10%,
rgba(125, 211, 252, 0.12),
transparent 60%
),
radial-gradient(
900px 500px at -10% 10%,
rgba(196, 181, 253, 0.12),
transparent 60%
),
var(--bg);
color: var(--text);
font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
Inter, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
a {
color: var(--accent);
text-decoration: none;
border-bottom: 1px solid transparent;
transition: color 0.15s ease, border-color 0.15s ease;
}
a:hover,
a:focus {
color: var(--accent-2);
border-bottom-color: var(--accent-2);
}
.container {
max-width: 880px;
margin: 0 auto;
padding: 64px 24px 96px;
}
header.hero {
margin-bottom: 48px;
}
.eyebrow {
text-transform: uppercase;
letter-spacing: 0.18em;
font-size: 0.78rem;
color: var(--muted);
margin-bottom: 12px;
}
h1 {
font-size: clamp(2rem, 4.4vw, 3rem);
line-height: 1.15;
margin: 0 0 12px;
letter-spacing: -0.01em;
}
h1 .accent {
background: linear-gradient(90deg, var(--accent), var(--accent-2));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.lede {
font-size: 1.1rem;
color: var(--muted);
max-width: 60ch;
margin: 0 0 20px;
}
.quick-links {
display: flex;
flex-wrap: wrap;
gap: 10px 16px;
margin-top: 8px;
}
.quick-links a {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 14px;
background: var(--card);
border: 1px solid var(--border);
border-radius: 999px;
font-size: 0.92rem;
}
.quick-links a:hover {
border-color: var(--accent);
}
section {
margin-top: 44px;
}
h2 {
font-size: 1.25rem;
margin: 0 0 14px;
letter-spacing: 0.01em;
}
p.section-lede {
color: var(--muted);
margin: 0 0 18px;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 14px;
}
.card {
display: block;
background: var(--card);
border: 1px solid var(--border);
border-radius: 14px;
padding: 18px 18px 16px;
color: inherit;
}
.card:hover {
border-color: var(--accent);
transform: translateY(-1px);
transition: transform 0.15s ease, border-color 0.15s ease;
}
.card .title {
font-weight: 600;
margin-bottom: 4px;
color: var(--text);
}
.card .desc {
font-size: 0.92rem;
color: var(--muted);
margin: 0;
}
ul.plain {
list-style: none;
padding: 0;
margin: 0;
}
ul.plain li {
padding: 6px 0;
color: var(--muted);
}
ul.plain li a {
color: var(--text);
}
ul.plain li a:hover {
color: var(--accent-2);
}
footer {
margin-top: 64px;
padding-top: 20px;
border-top: 1px solid var(--border);
color: var(--muted);
font-size: 0.9rem;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 8px;
}
footer a {
color: var(--muted);
}
</style>
</head>
<body>
<main class="container">
<header class="hero">
<div class="eyebrow">David Strupl</div>
<h1>
Software engineer, tinkerer,<br />
<span class="accent">long-time games player.</span>
</h1>
<p class="lede">
Hi, I'm David. I currently work at
<a href="https://www.cisco.com/" rel="noopener noreferrer">Cisco</a>.
On the side I build small apps and play a lot of board and strategy
games online. This page is a small index of where to find me on the
web.
</p>
<div class="quick-links">
<a
href="https://www.linkedin.com/in/david-strupl-0a939b1/"
rel="noopener noreferrer"
>LinkedIn</a
>
<a
href="https://dstrupl.blogspot.com/"
rel="noopener noreferrer"
>Blog</a
>
<a href="https://github.com/dstrupl" rel="noopener noreferrer"
>GitHub</a
>
</div>
</header>
<section>
<h2>Projects</h2>
<p class="section-lede">
A few small things I've built — web apps, developer tools, and
utilities.
</p>
<div class="grid">
<a
class="card"
href="https://github.com/dstrupl/vardoger"
rel="noopener noreferrer"
>
<div class="title">Vardoger</div>
<p class="desc">
A local-first Python tool that personalizes AI coding assistants
from your own conversation history without sending that history
anywhere.
</p>
</a>
<a
class="card"
href="https://mp.solutions.cz/"
rel="noopener noreferrer"
>
<div class="title">Mission Possible</div>
<p class="desc">
A location-based mobile game where teams meet up, race to GPS
target points, and finish together. Android build on Google
Play.
</p>
</a>
<a
class="card"
href="https://whisperer.solutions.cz/"
rel="noopener noreferrer"
>
<div class="title">Interactive Fiction Whisperer</div>
<p class="desc">
An experiment in mixing classic interactive fiction with a
friendly, modern interface.
</p>
</a>
<a
class="card"
href="https://friendlybets.solutions.cz/"
rel="noopener noreferrer"
>
<div class="title">Friendly Bets</div>
<p class="desc">
Small bets among friends, kept honest — for fun, not money.
</p>
</a>
<a
class="card"
href="https://github.com/dstrupl/cockroach"
rel="noopener noreferrer"
>
<div class="title">Cockroach</div>
<p class="desc">
A Kotlin utility for Czech tax reporting from Charles Schwab and
E-Trade stock-plan exports.
</p>
</a>
<a
class="card"
href="https://github.com/dstrupl/gmic-affinity"
rel="noopener noreferrer"
>
<div class="title">G'MIC for Affinity Photo</div>
<p class="desc">
A Rust-based macOS plugin that bridges the G'MIC filter
library into Affinity Photo 2 and v3.
</p>
</a>
</div>
</section>
<section>
<h2>Where I hang out</h2>
<p class="section-lede">
If you want a game, you can usually find me on one of these:
</p>
<div class="grid">
<a
class="card"
href="https://www.littlegolem.net/jsp/main/"
rel="noopener noreferrer"
>
<div class="title">Little Golem</div>
<p class="desc">
Turn-based abstract strategy games — Hex, Twixt, Amazons, and
more.
</p>
</a>
<a
class="card"
href="https://online-go.com/"
rel="noopener noreferrer"
>
<div class="title">OGS (online-go.com)</div>
<p class="desc">For Go / Baduk / Weiqi.</p>
</a>
<a
class="card"
href="https://www.chess.com/home"
rel="noopener noreferrer"
>
<div class="title">chess.com</div>
<p class="desc">For the usual game of chess.</p>
</a>
</div>
</section>
<section>
<h2>Writing</h2>
<p class="section-lede">
Occasional, mostly old, mostly random thoughts about software and
life.
</p>
<ul class="plain">
<li>
<a href="https://dstrupl.blogspot.com/" rel="noopener noreferrer"
>David's random thoughts</a
>
— my Blogspot.
</li>
</ul>
</section>
<footer>
<div>© David Strupl</div>
<div><a href="/privacy/">Privacy policy</a></div>
</footer>
</main>
</body>
</html>