-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
431 lines (396 loc) · 12.1 KB
/
Copy pathindex.html
File metadata and controls
431 lines (396 loc) · 12.1 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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>vedarolap</title>
<meta name="description" content="vedarolap — automate the obvious, investigate the ambiguous. Rules engines, assumption-checking tools, and a field guide to engineering biases.">
<style>
:root{
--bg: #12100f;
--bg-deep: #0a0807;
--glow-1: #d9642c;
--glow-2: #7a2e10;
--ink: #f6ecdf;
--ink-dim: #c9b8a7;
--ink-faint: #8d7c6d;
--accent: #e2793f;
--line: rgba(246,236,223,0.16);
--line-strong: rgba(246,236,223,0.30);
--card-bg: rgba(246,236,223,0.035);
--card-border: rgba(246,236,223,0.10);
--font-display: ui-monospace, "SF Mono", "Cascadia Code", "Consolas", "Liberation Mono", monospace;
--font-body: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
--font-mono: ui-monospace, "SF Mono", "Cascadia Code", "Consolas", monospace;
}
*{ box-sizing: border-box; }
html{ background: var(--bg-deep); }
body{
margin: 0;
background: var(--bg);
color: var(--ink);
font-family: var(--font-body);
font-size: 17px;
line-height: 1.65;
-webkit-font-smoothing: antialiased;
}
a{ color: var(--accent); text-decoration-color: rgba(226,121,63,0.4); text-underline-offset: 3px; }
a:hover{ text-decoration-color: var(--accent); }
a:focus-visible, button:focus-visible{ outline: 2px solid var(--accent); outline-offset: 3px; }
::selection{ background: rgba(226,121,63,0.35); color: var(--ink); }
/* ambient copper glow field, fixed behind everything */
.glow-field{
position: fixed;
inset: 0;
z-index: -1;
background:
radial-gradient(circle at 50% 22%, var(--glow-1) 0%, var(--glow-2) 28%, transparent 62%),
var(--bg);
opacity: 0.55;
pointer-events: none;
}
.glow-field::after{
content:"";
position:absolute; inset:0;
background: radial-gradient(circle at 50% 88%, var(--glow-2) 0%, transparent 45%);
opacity: 0.5;
}
.wrap{
max-width: 46rem;
margin: 0 auto;
padding: 0 1.5rem;
}
/* ---------- hero ---------- */
.hero{
padding: 5.5rem 0 4rem;
text-align: center;
}
.mark{
position: relative;
width: 168px;
height: 168px;
margin: 0 auto 2.25rem;
}
.ring{
position: absolute;
inset: 0;
border: 1px solid var(--line-strong);
border-radius: 50%;
}
.dot{
position: absolute;
width: 6px; height: 6px;
margin: -3px;
background: var(--ink);
border-radius: 50%;
top: 50%; left: 50%;
box-shadow: 0 0 6px rgba(246,236,223,0.6);
}
.d1{ transform: rotate(18deg) translate(84px) rotate(-18deg); }
.d2{ transform: rotate(150deg) translate(84px) rotate(-150deg); }
.d3{ transform: rotate(260deg) translate(84px) rotate(-260deg); }
.orbit{
position: absolute; inset: 0;
animation: spin 90s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.letter{
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-display);
font-weight: 700;
font-size: 4.2rem;
color: var(--ink);
letter-spacing: -0.05em;
text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.hero h1{
margin: 0 0 0.6rem;
font-family: var(--font-display);
font-size: 1.6rem;
font-weight: 700;
letter-spacing: 0.02em;
}
.tagline{
margin: 0;
color: var(--ink-dim);
font-style: italic;
font-size: 1.05rem;
}
/* ---------- section scaffolding ---------- */
section{ padding: 3rem 0; }
section + section{ border-top: 1px solid var(--line); }
.eyebrow{
display: block;
font-family: var(--font-mono);
font-size: 0.72rem;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--ink-faint);
margin-bottom: 1.1rem;
}
h2{
font-family: var(--font-display);
font-size: 1.05rem;
font-weight: 700;
margin: 0 0 1.2rem;
text-wrap: balance;
}
p{ margin: 0 0 1rem; color: var(--ink-dim); }
p:last-child{ margin-bottom: 0; }
.lede{ color: var(--ink); }
/* ---------- principles ---------- */
.principles{
list-style: none;
margin: 0; padding: 0;
display: flex;
flex-direction: column;
gap: 0.9rem;
}
.principles li{
display: grid;
grid-template-columns: 1.3rem 1fr;
gap: 0.6rem;
color: var(--ink-dim);
}
.principles li::before{
content: ">";
font-family: var(--font-mono);
color: var(--accent);
}
/* ---------- projects ---------- */
.projects{
display: flex;
flex-direction: column;
gap: 1rem;
}
.card{
border: 1px solid var(--card-border);
background: var(--card-bg);
border-radius: 4px;
padding: 1.25rem 1.4rem;
}
.card-head{
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 0.5rem;
}
.card-head h3{
margin: 0;
font-family: var(--font-display);
font-size: 0.98rem;
font-weight: 700;
}
.card-head h3 a{ color: var(--ink); text-decoration: none; }
.card-head h3 a:hover{ color: var(--accent); }
.meta{
font-family: var(--font-mono);
font-size: 0.72rem;
letter-spacing: 0.04em;
color: var(--ink-faint);
text-transform: uppercase;
white-space: nowrap;
}
.card p{ margin: 0; font-size: 0.96rem; }
/* ---------- activity log ---------- */
.log{
list-style: none;
margin: 0; padding: 0;
border-left: 1px solid var(--line);
}
.log li{
position: relative;
padding: 0 0 1.4rem 1.4rem;
}
.log li:last-child{ padding-bottom: 0; }
.log li::before{
content: "";
position: absolute;
left: -4.5px; top: 0.4rem;
width: 8px; height: 8px;
border-radius: 50%;
background: var(--bg);
border: 1px solid var(--accent);
}
.log time{
display: block;
font-family: var(--font-mono);
font-size: 0.72rem;
letter-spacing: 0.04em;
color: var(--ink-faint);
margin-bottom: 0.25rem;
}
.log .entry{ color: var(--ink-dim); font-size: 0.96rem; }
.log .entry a{ color: var(--ink); text-decoration-color: var(--line-strong); }
.log .entry a:hover{ color: var(--accent); }
.status{
font-family: var(--font-mono);
font-size: 0.68rem;
text-transform: uppercase;
letter-spacing: 0.06em;
padding: 0.05rem 0.4rem;
border-radius: 3px;
margin-left: 0.4rem;
white-space: nowrap;
}
.status.merged{ color: #b98cf2; border: 1px solid rgba(185,140,242,0.4); }
.status.open{ color: #7fcf9a; border: 1px solid rgba(127,207,154,0.4); }
/* ---------- footer ---------- */
footer{
padding: 3rem 0 4rem;
text-align: center;
}
footer .ring-echo{
width: 34px; height: 34px;
margin: 0 auto 1.4rem;
border: 1px solid var(--line-strong);
border-radius: 50%;
position: relative;
}
footer .ring-echo::before{
content:"";
position: absolute;
width: 4px; height: 4px;
background: var(--ink-faint);
border-radius: 50%;
top: -2.5px; left: calc(50% - 2px);
}
footer p{
font-family: var(--font-mono);
font-size: 0.78rem;
color: var(--ink-faint);
margin: 0;
}
footer a{ color: var(--ink-dim); }
@media (prefers-reduced-motion: reduce){
.orbit{ animation: none; }
}
@media (max-width: 480px){
body{ font-size: 16px; }
.hero{ padding: 4rem 0 3rem; }
.mark{ width: 136px; height: 136px; }
.d1,.d2,.d3{ transform-origin: center; }
.letter{ font-size: 3.4rem; }
}
</style>
</head>
<body>
<div class="glow-field" aria-hidden="true"></div>
<main class="wrap">
<section class="hero">
<div class="mark" aria-hidden="true">
<div class="ring"></div>
<div class="orbit">
<span class="dot d1"></span>
<span class="dot d2"></span>
<span class="dot d3"></span>
</div>
<span class="letter">V</span>
</div>
<h1>vedarolap</h1>
<p class="tagline">Automate the obvious. Investigate the ambiguous.</p>
</section>
<section id="about">
<span class="eyebrow">About</span>
<p class="lede">
I build tools that sit at the boundary between "this should just work" and
"this needs a human to look at it" — rules engines, safety systems, and the
occasional field guide to the mistakes engineers make under pressure.
</p>
<p>
Currently spending time in <a href="https://github.com/roostorg/osprey">osprey</a>,
a high-performance safety rules engine for real-time event processing at scale —
and interested generally in systems that fail loudly instead of silently, and the
small process changes that keep the same incident from happening twice.
</p>
</section>
<section id="principles">
<span class="eyebrow">Principles</span>
<ul class="principles">
<li>Prefer boring, provable infrastructure over clever, fragile infrastructure.</li>
<li>A rule that nobody can explain is a rule that will misfire in production.</li>
<li>Write the postmortem before you need one: name the failure modes early.</li>
</ul>
</section>
<section id="projects">
<span class="eyebrow">Projects</span>
<div class="projects">
<article class="card">
<div class="card-head">
<h3><a href="https://github.com/vedarolap/postulate">postulate</a></h3>
<span class="meta">Python · ~150 loc</span>
</div>
<p>
Make the assumptions your code rests on explicit, loud, and inspectable.
A zero-dependency library that turns "this queue never has duplicates"
from a comment into a checkable, reportable fact — never stripped by
<code>python -O</code>, recorded whether it passes or fails.
</p>
</article>
<article class="card">
<div class="card-head">
<h3><a href="https://github.com/vedarolap/cognitive-biases-in-software-engineering">cognitive-biases-in-software-engineering</a></h3>
<span class="meta">Field guide</span>
</div>
<p>
A field guide to the biases that quietly steer estimation, code review,
debugging, incident response, and hiring — each entry structured as
what it is, how it shows up, warning signs, and a real mitigation,
not just a definition.
</p>
</article>
<article class="card">
<div class="card-head">
<h3><a href="https://github.com/roostorg/osprey">osprey</a></h3>
<span class="meta">Python · contributor</span>
</div>
<p>
Originally built inside Discord to fight spam and abuse, now open-sourced
by ROOST as a real-time rules engine for trust & safety teams.
Contributing fixes and small process improvements as they turn up.
</p>
</article>
</div>
</section>
<section id="activity">
<span class="eyebrow">Recent activity</span>
<ul class="log">
<li>
<time datetime="2026-07-14T22:09:21Z">14 Jul 2026 · 22:09 UTC</time>
<div class="entry">
Opened <a href="https://github.com/roostorg/osprey/pull/430">roostorg/osprey#430</a>
— converted issue templates to GitHub issue forms
<span class="status open">open</span>
</div>
</li>
<li>
<time datetime="2026-07-14T20:39:21Z">14 Jul 2026 · 20:39 UTC</time>
<div class="entry">
Filed <a href="https://github.com/janbjorge/pgqueuer/issues/684">janbjorge/pgqueuer#684</a>
— dequeue's CTE was dropping priority on merge, confirmed by the maintainer
<span class="status open">open</span>
</div>
</li>
<li>
<time datetime="2026-07-14T17:51:28Z">14 Jul 2026 · 17:51 UTC</time>
<div class="entry">
Opened <a href="https://github.com/roostorg/osprey/pull/424">roostorg/osprey#424</a>
— fixed <code>apply_label --reason</code> help text to match its real default
<span class="status merged">merged</span>
</div>
</li>
</ul>
</section>
<footer>
<div class="ring-echo" aria-hidden="true"></div>
<p><a href="https://github.com/vedarolap">github.com/vedarolap</a></p>
</footer>
</main>
</body>
</html>