152 lines
4 KiB
HTML
152 lines
4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>About</title>
|
|
<style>
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
min-height: 100vh;
|
|
background: #060a10;
|
|
color: rgba(255, 255, 255, 0.75);
|
|
}
|
|
|
|
#fractal-canvas {
|
|
image-rendering: auto;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 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.6;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.glass-card h2 {
|
|
color: #fff;
|
|
font-weight: 300;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.glass-card h2 {
|
|
margin: 2rem 0 0.75rem 0;
|
|
font-size: 1.375rem;
|
|
}
|
|
|
|
.glass-card p {
|
|
margin: 0.75rem 0;
|
|
}
|
|
|
|
.project-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 1rem 0 0;
|
|
}
|
|
|
|
.project-list li {
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.project-list strong a {
|
|
color: rgba(255, 255, 255, 0.9);
|
|
display: block;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.glass-card a {
|
|
color: rgba(255, 255, 255, 0.85);
|
|
text-decoration-color: rgba(255, 255, 255, 0.25);
|
|
text-underline-offset: 0.18em;
|
|
transition: color 250ms ease, text-decoration-color 250ms ease;
|
|
}
|
|
|
|
.glass-card 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;
|
|
transition: color 250ms ease;
|
|
}
|
|
|
|
.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 />
|
|
<script defer src="/routes/root/fractal-gl.js?v=13"></script>
|
|
</head>
|
|
<body>
|
|
<canvas id="fractal-canvas"></canvas>
|
|
|
|
<main class="content-overlay">
|
|
<article class="glass-card">
|
|
<p>Software engineer cum neural network wrangler.</p>
|
|
<p>Technical interests include systems engineering, distributed compute, physical simulation, and applied machine learning infrastructure.</p>
|
|
|
|
<h2>Projects</h2>
|
|
<ul class="project-list">
|
|
<li>
|
|
<strong><a href="/projects/swactor">swactor</a></strong>
|
|
Toolkit for orchestrating somewhat-unreliable heterogeneous GPU nodes over WAN links.
|
|
</li>
|
|
<li>
|
|
<strong><a href="/projects/airfrans-neural-cfd-surrogate">AirfRANS / neural CFD surrogate</a></strong>
|
|
Machine learning as simulation: neural CFD surrogates, model scaling, and solver-grounded validation.
|
|
</li>
|
|
<li>
|
|
<strong><a href="/projects/cstat-yoke">cstat and yoke</a></strong>
|
|
Code as data: statistical structure, LLM coding behavior, and agent harnesses.
|
|
</li>
|
|
</ul>
|
|
|
|
<p>If any of these interest you, please <a href="/contact">contact me</a>. I love to talk shop.</p>
|
|
</article>
|
|
|
|
<nav class="back-link">
|
|
<a href="/">back to home</a>
|
|
</nav>
|
|
</main>
|
|
|
|
<!-- fractal background loaded via deferred <script> in <head> -->
|
|
</body>
|
|
</html>
|