From 76d2bb3be39eced0167696d66d7666b9d7c422f2 Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 10 Jun 2026 12:16:20 -0300 Subject: [PATCH] add Blog Post Ideas section with first idea: why backing up an agent is so hard --- index.html | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 88 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 73f6304..af5d2c7 100644 --- a/index.html +++ b/index.html @@ -1619,8 +1619,68 @@ padding: 28px 20px; } .story-avatar { width: 72px; height: 72px; font-size: 28px; } - + } + /* ══════════════════════════════════════════════════════════ + BLOG IDEAS + ══════════════════════════════════════════════════════════ */ + .blog-idea-item { + display: flex; + gap: 16px; + padding: 20px 24px; + background: var(--bg-card); + border: 1px solid var(--border); + border-radius: var(--radius-card); + transition: border-color 0.2s, transform 0.2s; + align-items: flex-start; + } + .blog-idea-item:hover { + border-color: var(--border-hi); + transform: translateY(-2px); + } + .blog-idea-checkbox { + flex-shrink: 0; + padding-top: 3px; + } + .blog-idea-checkbox input[type="checkbox"] { + accent-color: var(--accent); + width: 17px; + height: 17px; + cursor: default; + } + .blog-idea-body { + flex: 1; + min-width: 0; + } + .blog-idea-title { + font-weight: 700; + font-size: 16px; + color: var(--text); + margin-bottom: 6px; + } + .blog-idea-desc { + font-size: 13px; + color: var(--text-muted); + line-height: 1.7; + margin-bottom: 10px; + } + .blog-idea-meta { + display: flex; + gap: 6px; + flex-wrap: wrap; + } + .blog-idea-tag { + display: inline-block; + padding: 3px 12px; + font-size: 11px; + font-weight: 600; + border-radius: 12px; + background: var(--accent-dim); + color: var(--accent); + border: 1px solid rgba(0, 245, 255, 0.15); + letter-spacing: 0.02em; + } + @@ -2352,6 +2412,33 @@ + +
+
+

Blog Post Ideas

+

Topics I want to write about. Tick them off as they go live.

+
+
+
+ +
+
+
Why backing up an agent is so hard
+
Modern AI agents install packages everywhere — pip in venvs, npm globally, configs scattered across /etc, ~/.config, /opt, custom paths. A naive filesystem backup misses half the environment. This post explores the real architecture behind 100% agent backup: what lives where, why Borg encrypted deduplication is the right tool, and how we make every backup a full restore.
+
+ Technical + Backups + DevOps +
+
+
+
+
+
+ +