* chore: GoatCounter analytics, README for v0.11.0, DoT blog post - Add GoatCounter script to site pages (cookie-free, no consent needed) - Update README: setup-phone section, DoT blog link, roadmap checkbox - Add DoT blog post source and SVG assets Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * chore: site navbar, updated roadmap, DoT blog listing, spec updates - Add top nav bar to landing page (wordmark + links, responsive) - Add DoT blog post entry to blog index - Update roadmap: phases 8-13 (hostile-network, Windows, DoT shipped) - Update specs: listeners section, dependency description, port list - Blog: hostile-network SVG in DNSSEC post, text-transform fix - Blog template: wordmark text-transform fix Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
204 lines
5.1 KiB
HTML
204 lines
5.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Blog — Numa</title>
|
|
<meta name="description" content="Technical writing about DNS, Rust, and building infrastructure from scratch.">
|
|
<link rel="stylesheet" href="/fonts/fonts.css">
|
|
<style>
|
|
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
:root {
|
|
--bg-deep: #f5f0e8;
|
|
--bg-surface: #ece5da;
|
|
--bg-card: #faf7f2;
|
|
--amber: #c0623a;
|
|
--amber-dim: #9e4e2d;
|
|
--teal: #6b7c4e;
|
|
--text-primary: #2c2418;
|
|
--text-secondary: #6b5e4f;
|
|
--text-dim: #a39888;
|
|
--border: rgba(0, 0, 0, 0.08);
|
|
--font-display: 'Instrument Serif', Georgia, serif;
|
|
--font-body: 'DM Sans', system-ui, sans-serif;
|
|
--font-mono: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
body {
|
|
background: var(--bg-deep);
|
|
color: var(--text-primary);
|
|
font-family: var(--font-body);
|
|
font-weight: 400;
|
|
line-height: 1.7;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
body::before {
|
|
content: '';
|
|
position: fixed;
|
|
inset: 0;
|
|
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
|
|
pointer-events: none;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.blog-nav {
|
|
padding: 1.5rem 2rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.blog-nav a {
|
|
font-family: var(--font-mono);
|
|
font-size: 0.75rem;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: var(--text-dim);
|
|
text-decoration: none;
|
|
transition: color 0.2s;
|
|
}
|
|
.blog-nav a:hover { color: var(--amber); }
|
|
|
|
.blog-nav .wordmark {
|
|
font-family: var(--font-display);
|
|
font-size: 1.4rem;
|
|
font-weight: 400;
|
|
color: var(--text-primary);
|
|
text-decoration: none;
|
|
text-transform: none;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
.blog-nav .wordmark:hover { color: var(--amber); }
|
|
|
|
.blog-nav .sep {
|
|
color: var(--text-dim);
|
|
font-family: var(--font-mono);
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.blog-index {
|
|
max-width: 720px;
|
|
margin: 0 auto;
|
|
padding: 3rem 2rem 6rem;
|
|
}
|
|
|
|
.blog-index h1 {
|
|
font-family: var(--font-display);
|
|
font-weight: 400;
|
|
font-size: 2.5rem;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.post-list {
|
|
list-style: none;
|
|
}
|
|
|
|
.post-list li {
|
|
padding: 1.5rem 0;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.post-list li:first-child {
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
.post-list a {
|
|
text-decoration: none;
|
|
display: block;
|
|
}
|
|
|
|
.post-list .post-title {
|
|
font-family: var(--font-display);
|
|
font-size: 1.4rem;
|
|
font-weight: 600;
|
|
color: var(--text-primary);
|
|
line-height: 1.3;
|
|
margin-bottom: 0.4rem;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.post-list a:hover .post-title {
|
|
color: var(--amber);
|
|
}
|
|
|
|
.post-list .post-desc {
|
|
font-size: 0.95rem;
|
|
color: var(--text-secondary);
|
|
line-height: 1.5;
|
|
margin-bottom: 0.4rem;
|
|
}
|
|
|
|
.post-list .post-date {
|
|
font-family: var(--font-mono);
|
|
font-size: 0.72rem;
|
|
color: var(--text-dim);
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
.blog-footer {
|
|
text-align: center;
|
|
padding: 3rem 2rem;
|
|
border-top: 1px solid var(--border);
|
|
max-width: 720px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.blog-footer a {
|
|
font-family: var(--font-mono);
|
|
font-size: 0.75rem;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: var(--text-dim);
|
|
text-decoration: none;
|
|
margin: 0 1rem;
|
|
}
|
|
.blog-footer a:hover { color: var(--amber); }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="blog-nav">
|
|
<a href="/" class="wordmark">Numa</a>
|
|
<span class="sep">/</span>
|
|
<a href="/blog/">Blog</a>
|
|
</nav>
|
|
|
|
<main class="blog-index">
|
|
<h1>Blog</h1>
|
|
<ul class="post-list">
|
|
<li>
|
|
<a href="/blog/posts/dot-from-scratch.html">
|
|
<div class="post-title">DNS-over-TLS from Scratch in Rust</div>
|
|
<div class="post-desc">Building RFC 7858 on top of rustls — length-prefix framing, ALPN cross-protocol defense, iPhone dogfooding, and two bugs that only the strict clients caught.</div>
|
|
<div class="post-date">April 2026</div>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="/blog/posts/dnssec-from-scratch.html">
|
|
<div class="post-title">Implementing DNSSEC from Scratch in Rust</div>
|
|
<div class="post-desc">Recursive resolution from root hints, chain-of-trust validation, NSEC/NSEC3 denial proofs, and what I learned implementing DNSSEC with zero DNS libraries.</div>
|
|
<div class="post-date">March 2026</div>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="/blog/posts/dns-from-scratch.html">
|
|
<div class="post-title">I Built a DNS Resolver from Scratch in Rust</div>
|
|
<div class="post-desc">How DNS actually works at the wire level — label compression, TTL tricks, DoH implementation, and what I learned building a resolver with zero DNS libraries.</div>
|
|
<div class="post-date">March 2026</div>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</main>
|
|
|
|
<footer class="blog-footer">
|
|
<a href="https://github.com/razvandimescu/numa">GitHub</a>
|
|
<a href="/">Home</a>
|
|
</footer>
|
|
|
|
<script data-goatcounter="https://razvandimescu.goatcounter.com/count"
|
|
async src="//gc.zgo.at/count.js"></script>
|
|
</body>
|
|
</html>
|