Past session · Wed, Sep 9
You didn't quit. You just started something else.
The project's still there, half-built. Since then you've learned two new frameworks and you're eyeing a third. Every jump felt like progress. That's exactly what makes it hard to see. A free 60-minute session on the trap that leaves projects unfinished, from someone whose own healthtech app has been sitting there since she learned to code.
Recording availableAired Wed 9 Sep · 8:00 PM EAT
500+ developers already learning together every week
What the hour looks like
No slides read aloud. A feature, built.
The session in three movements — watch it happen live, then do it yourself with the template.
app/api/ai/route.ts
// live: shipping an AI feature
const ai = new Anthropic();
export async function POST(req) {
const { prompt } = await req.json();
const stream = await ai.messages.stream({
model: "claude-sonnet-4-6",
messages: [{ role: "user", content: prompt }],
});
return stream.toResponse();
}
Forty minutes of live coding — a real feature on a real Next.js app.
COST / 1K REQUESTS
GPT-4 CLASSKES 1,940
CLAUDE SONNETKES 1,290
OPEN-SOURCE (HOSTED)KES 610
ILLUSTRATIVE — WE PULL THE REAL NUMBERS LIVE
The per-request costs nobody puts in the tutorial.
PRE-FLIGHT
Streaming responses working
Fallback when the API is slow
Spend alerts before the surprise
Template pushed to registrants
DEPLOYED · LIVEYou leave with the template — and your questions answered.
