AI for Creatives

Vibe Coding for People Who Don't Code: How to Build Apps Just by Talking to AI


Some links below are affiliate links — I may earn a small commission, at no extra cost to you, if you sign up for a tool I recommend. More on how I choose what to recommend.

Prices spot-checked on May 9, 2026. AI tools change pricing often — always verify on the vendor's site before signing up. See live pricing.

⏱️
First project 2–4 hours
💰
Cost Free–$20/mo
🎯
Skill needed None

In February 2025, an AI researcher named Andrej Karpathy — co-founder of OpenAI, former head of AI at Tesla, the guy who literally taught half a generation of engineers how neural networks work — posted something casual on X that turned into a movement.

“There’s a new kind of coding I call ‘vibe coding,’ where you fully give in to the vibes, embrace exponentials, and forget that the code even exists.”

He wasn’t being ironic. He meant it. The idea: you describe what you want in plain English to an AI, the AI writes the code, you test if it works, and you basically never read the code yourself. You ask, you test, you adjust. You “vibe” your way to a working program.

If you’ve never written a line of code in your life, this is the news flash: building software is no longer something only programmers do. In 2026, people are building tools, apps, websites, and automations every weekend without learning to code, by having conversations with AI.

This article is about how that actually works, what you can realistically build, and where to start.

What you can actually build

Specifics matter — vague promises about “building anything” are unhelpful. Here’s what real non-developers are actually shipping in an afternoon of vibe coding:

  • 📋A personal habit tracker that texts you each morning
  • 📅A meal-planning app that takes your fridge inventory and spits out 5 dinners
  • 📨A small website for your side business with a contact form
  • 🧮A calculator for your specific job (commission, freelance project pricing, custom shipping)
  • 📝An automation that summarizes your email inbox each morning
  • 🎵A playlist generator that picks songs based on mood + energy
  • 🧾A receipt-categorizer for your home accounting
  • 🎮Small browser games — quizzes, flashcards, escape-room puzzles
  • 📊A simple dashboard that tracks something specific to your life or work

These aren’t theoretical examples. People are sharing them on X and TikTok every day. Most are built in 2–4 hours by someone who’d never written code before that weekend.

What “vibe coding” actually feels like

It’s a conversation. Not a coding session. You describe what you want, the AI writes the code, you click “run,” and you see what happens. If it’s wrong or you want to change it, you say so in plain English.

A real example transcript:

You: “Make me a webpage where I can paste a recipe and it converts the measurements from cups to grams.”

AI: (writes 80 lines of code, shows you a working preview)

You: “Looks good but the buttons are ugly. Make them blue and rounded.”

AI: (updates the code; preview updates)

You: “Add a section that lists the ingredients I’ll need to buy.”

AI: (adds it)

You: “Now let me save it as a PDF.”

AI: (adds the PDF feature)

Half an hour later you have a working tool that does exactly what you wanted. You didn’t write a line of code. You just described what you wanted, in regular English, like you’d describe it to a smart friend.

The four tools that matter

There are dozens of vibe-coding tools now, but four cover most of what you’d want to do.

1

Lovable, v0, or Bolt — for "I want to build a web app or website"

Lovable, v0, and Bolt are browser-based — you describe what you want, you watch a working web app appear in the right pane, you iterate by chatting. No installation, no setup. The closest thing to "magic" that exists today. Best for landing pages, small apps, personal websites, internal tools, prototypes. Cost: free + $20/mo paid tiers.

2

Cursor — for "I want a real code editor that lets me iterate"

Cursor is a code editor (looks like a more polished version of Microsoft's VS Code) with AI built in. You can chat with it like ChatGPT but it sees your whole project and edits files directly. Used heavily by both professional developers and weekend tinkerers. Slightly steeper learning curve than the browser tools above, but more powerful once you learn it. Cost: free + $20/mo Pro.

3

Claude Code — for "I want the most capable coding assistant"

Claude Code is Anthropic's terminal-based coding tool. Aimed at people comfortable with a command line, but capable beyond what most other tools can do at project scale. If you're going to do a lot of vibe coding and want the most powerful tool, this is it. Cost: included with Claude Pro from $20/mo.

4

ChatGPT or Claude — for "I just want to start without installing anything"

Both ChatGPT and Claude can write small programs in their chat window. You won't get the live-preview-of-your-app experience the other tools have, but for tiny utilities and learning, the chatbots themselves are fine. Cost: free.

Your first vibe-coding project, step by step

The fastest way to learn what this is like is to build something tiny in the next hour. Pick something you’ve actually wanted, however small.

1

Pick something tiny that solves a real annoyance

Don't try to build "the next Instagram." Pick something a single page or screen could solve. A tip calculator that splits unevenly. A page that times your morning routine. A tracker for your kids' chores. The smaller and weirder, the more you'll learn.

2

Open a vibe-coding tool

For your first project, pick Lovable or Bolt. Both have free tiers and you'll see a working preview of your app within minutes. No installation; just sign up.

3

Describe what you want, plainly

Imagine you're describing it to a friend who is going to build it for you. "I want a webpage where I can enter how many people are at dinner, the total bill, and a percent for the tip. It should split the total evenly and show each person what they owe. The buttons should be big enough to use on a phone." Hit send.

4

Test it. Then iterate in plain English.

Click the preview. Try it. If something's wrong or off, just say so. "The total isn't updating when I change the percent." "Make the result bigger and centered." "Add a way to split the tip unevenly — some people pay more." Each round takes 30 seconds.

5

Share or save when it works

Most browser-based vibe-coding tools let you publish your project to a public URL with one click. You can send the link to a friend, save it to your phone's home screen, or just keep it as a personal tool. Done.

The whole loop — describe, generate, test, iterate, ship — is what people mean when they say vibe coding has changed something fundamental. The cost of “I wonder if I could build a tool that does X” went from “I’d need to learn to code, which takes years” to “let me try it for an hour.”

The honest limits

Vibe coding is real but not magic. Knowing the limits will save you from disappointment.

Where vibe coding works really well

Knowing what fits this style, vs. what doesn’t, will save you hours.

  • Personal tools nobody else will use — a calculator for your specific job, a tracker for your hobby
  • Prototypes to validate "would this be a useful product?" without committing real engineering time
  • Learning — building tiny things to understand a concept (probability, JavaScript, design patterns)
  • Static websites — landing pages, portfolios, simple business sites
  • Small browser games — quiz, flashcards, simple puzzles
  • Internal team tools at small companies — a form that processes a specific kind of request

Where it doesn’t work yet

  • Anything handling money — payment processing, financial data, anything that could legally bind you
  • Anything storing sensitive personal data — health records, government IDs, others' private info
  • Software that needs to scale — apps for thousands of concurrent users
  • Mission-critical systems — anything where downtime or bugs cause real harm
  • Mobile apps — possible but harder; better tools are coming, not quite there yet

Where to start this week

If you have a specific friend who codes for a living, this is also a great time to ask them what they think of vibe coding. Most professional developers in 2026 have used these tools and have surprisingly nuanced opinions — they’ll save you from a couple of mistakes that don’t show up in articles.


Built something cool with vibe coding? Email help@aiforyourday.com — we’ll feature reader projects in the next version of this guide.

Try ChatGPT