Build a Budget Tracker with Claude — Compose Multiplatform

This is the hardest project in Part 2. Kotlin Multiplatform has a complex build system, platform-specific code patterns, and a Gradle configuration that can break in surprising ways. Can Claude handle it? I was skeptical going in. KMP projects have dozens of Gradle files, expect/actual declarations, and platform-specific dependencies that need to match exact versions. One wrong version number and nothing compiles. Total time: 4 hours 31 minutes. 6 prompts. Most of the time was fighting Gradle. ...

July 1, 2026 · 21 min

Build a Markdown Editor with Claude — Electron + Live Preview

Building a desktop application is different from building a web app. You have to deal with the operating system: file dialogs, menu bars, keyboard shortcuts, window management. Electron makes this possible with web technologies, but the architecture — main process vs. renderer process — trips up many developers. Can Claude handle it? I gave it a full markdown editor spec and found out. Total time: 3 hours 47 minutes. 7 prompts. Electron’s IPC was the biggest time sink. ...

July 1, 2026 · 21 min

Build a Weather Dashboard with Claude — React + API Integration

API integration is one of the things developers do most and enjoy least. Parsing JSON, handling errors, managing loading states, formatting data for charts. It is repetitive work. This is where Claude Code earns its keep. I gave it an API, a design goal, and a list of features. It handled the rest. Total time: 2 hours 38 minutes. 6 prompts. The charts took the longest. What We’re Building A weather dashboard with: ...

June 30, 2026 · 17 min

Build a Full-Stack Blog with Claude — Next.js + PostgreSQL

Welcome to Part 2 of the series. The Quick Builds are done. Now we build real applications — the kind that take a full afternoon and have multiple moving parts. First up: a full-stack blog platform. Not a static site. A real blog with a database, admin panel, markdown editor, authentication, and SEO features. The kind of project that would normally take a weekend. Total time: 3 hours 22 minutes. 7 prompts. A lot of debugging auth. ...

June 29, 2026 · 20 min

Build a Discord Bot with Claude — From Prompt to Running Bot

This is the last Quick Build in the series. We have built a CLI app, a REST API, a landing page, and a Chrome extension. Now we build something that runs 24/7 and interacts with real users: a Discord bot. Discord bots are a great test for Claude Code because they involve: An external API (Discord API) Event-driven architecture Slash command registration Permission handling Error recovery Deployment for uptime Total time: 71 minutes. Most of that was fighting with slash command registration. ...

June 28, 2026 · 17 min

Build a Browser Extension with AI — Chrome Extension from Zero to Published

Browser extensions are the perfect vibe coding project. They are small in scope, have a clear structure, give you instant visual feedback, and the manifest format is strict enough that AI generates correct configurations most of the time. In this article, you will build a Chrome extension with AI — from the first prompt to publishing on the Chrome Web Store. The tool: Cursor as the primary AI editor. The project: PR Summary — a GitHub pull request summarizer that adds a one-click summary button to PR pages. When you click it, it extracts the PR diff, sends it to an AI API, and displays a plain-English summary right on the page. ...

June 27, 2026 · 10 min

Build a Chrome Extension with Claude — Tab Manager

Chrome extensions are different from anything we have built so far. There is a specific architecture (background scripts, content scripts, popups), a manifest file that Chrome parses, and browser APIs that work differently from regular web APIs. This is a good stress test for Claude Code. Can it handle Manifest V3 correctly? Does it know the Chrome extension APIs? The project: a tab manager extension called “TabFlow” that shows all open tabs, lets you search them, close duplicates, and save sessions for later. ...

June 27, 2026 · 13 min

Build a Mobile App with AI — Kotlin + Jetpack Compose

Mobile development is where AI tools face their toughest test. Android has complex APIs, Jetpack Compose changes fast, and platform-specific patterns do not always match what AI learned from web development tutorials. In this article, you will build a complete notes app with Kotlin and Jetpack Compose. You will use Claude Code as the primary tool (running alongside Android Studio) and Copilot for inline completions. Every prompt, every AI mistake, and every manual fix is shown. ...

June 27, 2026 · 9 min

Build a Full-Stack Web App with AI — Next.js Dashboard from Scratch

You have built a CLI tool and a REST API with AI. Now let us go full-stack. You are going to build a complete analytics dashboard with a frontend, backend, database, authentication, and charts — all in one project. The project: DevPulse — a developer activity dashboard that tracks coding sessions, displays charts, and lets users manage their data. It uses Next.js, Tailwind CSS, PostgreSQL, and Auth.js for authentication. This project uses three AI tools together: Cursor Composer for scaffolding and UI, Claude Code for backend logic and database work, and Copilot for inline completions. You will see how they complement each other in a real workflow. ...

June 26, 2026 · 10 min

Build a Landing Page with Claude — HTML, CSS, and Deploy

We built a CLI app and a REST API with Claude Code. Both were backend projects. Now let’s see how Claude handles the visual side: a modern landing page with responsive design, animations, and dark mode. The project: build a landing page for a fictional SaaS product called “FlowBoard” — a project management tool. No React, no frameworks. Just HTML, CSS (Tailwind), and a tiny bit of vanilla JavaScript. Total time: 38 minutes from empty folder to live on Netlify. ...

June 26, 2026 · 14 min