10 GB VM for a chatbot: What the hell is Claude doing on your Mac

The 10 GB surprise You install Claude Desktop on your Mac. Everything’s fine, the app is lightweight. But one day you check your disk and discover this: ~/Library/Application Support/Claude/vm_bundles/claudevm.bundle 10.8 GB. Excuse me? Ten gigs for a chatbot? What’s in there, the extended Lord of the Rings trilogy? Nope. It’s Ubuntu. The Claude product trinity Before I explain the what, let me explain the why. Anthropic has three ways to give you access to Claude: ...

January 25, 2026 · Fernando

Linear, Beads, and Tasks: Three Memory Layers for Claude Code

The Memory Problem Claude Code has a problem: it forgets everything. You close the session, open another one, and it’s like talking to someone who doesn’t know you. You can load context with CLAUDE.md, sure, but what about half-finished tasks? Bugs you found but didn’t fix? The plan you had for tomorrow? There are three complementary solutions: Linear (or your product tool), Beads (git-backed plugin), and Tasks (integrated in Claude Code). Each one for a different time horizon. ...

January 23, 2026 · Fernando

Subagents in Claude Code: Delegating Without Losing Control

The Infinite Context Problem Imagine you ask Claude to investigate how authentication works in your project. It starts reading files. Lots of files. Suddenly you have 50,000 tokens of context filled with code you only needed to consult, not remember. Now every response is slower. And more expensive. And when you want to do something else, all that context is still there, taking up mental space. The solution: subagents. You launch a specialized agent that does the dirty work in its own isolated context, returns a summary, and disappears. Your main conversation stays clean. ...

January 20, 2026 · Fernando

Why the hell does git status take so long?

The awakening of slowness You’ve been working on your data science project for a while. You’ve got twenty notebooks, a few images, and the typical folder structure that seemed like a good idea three months ago. You run git status to see what you’ve changed and… you wait. And wait. And while you wait, you have time to wonder if the computer froze or is just meditating. Spoiler: it’s not meditating. It’s suffering. ...

January 19, 2026 · Fernando

ChromaDB: How to use a vector database to avoid screwing up while teaching

The problem: teaching what you haven’t taught yet I have a programming course with 47 classes. Each class has notes (where I explain stuff) and labs (where students practice). And I have a problem: sometimes I use concepts in labs that I haven’t explained in the notes yet. “Alright, in this exercise use map to transform the list.” The problem? I don’t explain what the hell map is until three classes later. ...

January 18, 2026 · Fernando

Bun: The Runtime That Wants to Retire Node (and Now Has the Cash to Do It)

The news nobody saw coming Last week, while you and I were peacefully wrestling with node_modules, Anthropic dropped a bomb: they’ve bought Bun. Yes, the company behind Claude has decided that their future depends on a JavaScript runtime written in Zig by a guy who thought “what if Node, but fast?”. Claude Code just hit one billion dollars in revenue, and apparently the first thing you do when you have money to burn is buy development tools. ...

January 18, 2026 · Fernando

Skills in Claude Code: Teaching Old Dogs New Tricks

The Problem of Repeating Everything Have you ever had to explain the same thing to someone twenty times? Now imagine that, but with a robot that also loses its memory every few hours. “No, Claude, the commit has to pass tests first.” “Claude, I already told you to use the type: description format.” “Don’t add emojis, damn it!” This was my daily routine until I discovered Skills. In plain English: they’re instructions you write once and Claude follows forever. Like training a dog, but without the treats. ...

January 12, 2026 · Fernando