2026-07-24 08:45:02 +00:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" / >
< title > swactor< / title >
< style >
*, *::before, *::after { box-sizing: border-box; }
body {
font-family: system-ui, -apple-system, sans-serif;
margin: 0;
min-height: 100vh;
background: #060a10;
color: rgba(255, 255, 255, 0.76);
}
#fractal-canvas {
image-rendering: auto;
position: fixed;
inset: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.content-overlay {
position: relative;
z-index: 1;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem 1rem;
}
.glass-card {
background: rgba(10, 14, 20, 0.55);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 16px;
padding: 2.5rem 3rem;
width: min(960px, calc(100vw - 2rem));
line-height: 1.65;
font-size: 1.1rem;
}
h1 { color: #fff; margin: 0 0 1rem; font-weight: 300; letter-spacing: 0.01em; }
p { margin: 0.85rem 0; }
a { color: rgba(255, 255, 255, 0.85); text-decoration-color: rgba(255, 255, 255, 0.25); text-underline-offset: 0.18em; }
a:hover { color: #fff; text-decoration-color: rgba(255, 255, 255, 0.7); }
.back-link { margin-top: 2rem; }
.back-link a { text-decoration: none; color: rgba(255, 255, 255, 0.4); font-size: 0.8rem; letter-spacing: 0.04em; }
.back-link a:hover { color: rgba(255, 255, 255, 0.7); }
< / style >
< link rel = "preload" href = "/routes/root/dist-strips.bin?v=1" as = "fetch" crossorigin / >
2026-07-24 09:06:42 +00:00
< script defer src = "/routes/root/fractal-gl.js?v=13" > < / script >
2026-07-24 08:45:02 +00:00
< / head >
< body >
< canvas id = "fractal-canvas" > < / canvas >
< main class = "content-overlay" >
< article class = "glass-card" >
< h1 > swactor< / h1 >
< p > swactor is the imaginary control plane I would build for a room full of moody GPUs scattered across apartments, closets, and spare cloud instances.< / p >
< p > The fake writeup version starts with a tiny actor runtime, gives each node a heartbeat, then treats dropped packets and flaky thermal envelopes as normal weather instead of exceptional tragedy.< / p >
< p > The punchline: jobs migrate toward available memory, checkpoints move over boring protocols, and the scheduler learns which machines are liars before the humans do.< / p >
< / article >
< nav class = "back-link" > < a href = "/projects" > back to projects< / a > < / nav >
< / main >
< / body >
< / html >