AI Education
15 lessons that take you from “what is a computer?” to directing AI to build production software. No coding experience required.
Your Computer Is Two Things
Storage and compute. Everything else is a layer on top. The truck-bed analogy for RAM that makes it click.
The Terminal & Claude Code
The hardest concept: three interfaces, one screen. Claude Code is a terminal inside your terminal.
Your First Vibe-Code
Describe what you want in English. Watch Claude build it. Get to the flow state as fast as possible.
CLAUDE.md: Session Memory
Without it, you re-explain everything. With it, Claude already knows your project. The glossary in front of a textbook.
CRUD Is Everything
Every operation on every computer ever is Create, Read, Update, or Delete. No exceptions.
Files & The Browser
Your browser is a file browser. A URL is a file path to a remote computer. Chrome just renders what comes back.
APIs: The Restaurant Analogy
Base URL is the street address. Endpoint is the menu item. Parameters are your order. Paste it in Chrome and see.
MCP: Teaching Claude to Use APIs
Without MCP, Claude guesses for 8 minutes. With MCP, it finishes in seconds. Feel the pain first, then the payoff.
The Harness
When you open a session, Claude connects to skills, MCPs, your codebase, and tools. That connection layer is the harness.
Skills
Train Claude with reusable workflows. Define a multi-step process once, invoke it with a slash command forever.
Scheduled Agents
Claude on autopilot. Run skills on a timer, in the background, without touching a keyboard.
Code: What It Actually Is
Programming languages, variables, logic, and how to read code without writing it.
How Code Actually Runs
Compiled vs. interpreted: translating a whole book upfront vs. interpreting line by line as you read aloud.
Repos & Version Control
Git as a time machine, branches as parallel universes, pull requests as the review gate.
Databases & Storage
Spreadsheets with rules. SQL, NoSQL, in-memory vs. persistent, and where CRUD actually happens.