0Pricing
Vibe Coding · Урок

Что Вы можете создать

Приложения, сайты, игры и инструменты — с помощью запросов

«Что Вы можете создать» — бесплатный урок Vibe Coding на CoddyKit. Это урок 3 из 4. Ты можешь прочитать весь урок бесплатно ниже — а потом практиковать его прямо в браузере с встроенным редактором кода и ИИ-репетитором 24/7. Это часть пути обучения Vibe Coding, и твой прогресс синхронизируется между веб-версией и приложением CoddyKit. Курс Vibe Coding содержит 4 уроков всего.

Части этого урока еще не переведены и отображаются на английском.

So... What Can You Build?

So what can you build? Short answer: a lot. The same skill — describing what you want — makes websites, apps, games, and tools. Let's tour what's possible.

Websites and Landing Pages

The easiest start: web pages — a portfolio, a landing page, a simple blog. Tools like v0 and Lovable turn one line into a polished page in seconds.

Build a landing page for a coffee shop called "Bean There" with a hero image, a menu section, and an opening-hours block.

Interactive Web Apps

Beyond static pages, you can build apps that do things: a to-do list, a budget tracker, a quiz. They react to clicks and typing, and AI wires up the logic.

Make a tip calculator: I enter the bill amount and tip percent, and it shows the tip and total.

A Tiny App in Action

Here's the kind of logic behind a tip calculator — the part the AI writes for you. Run it to see it work.

const bill = 60;
const tipPercent = 18;
const tip = bill * (tipPercent / 100);
const total = bill + tip;
console.log("Tip: $" + tip.toFixed(2) + ", Total: $" + total.toFixed(2));

Games and Fun Stuff

Yes, games too — a guessing game, memory match, a clicker. They're visual and instantly fun to test. Describe the rules, and let AI build the playground. 🎮

Build a number guessing game: the computer picks a number 1-100, I guess, and it tells me higher or lower until I win.

Tools and Automations

You can build small tools that save time: a unit converter, a password maker, a CSV cleaner. Later, even automations that run multi-step tasks for you.

Make a tool that converts a list of temperatures from Celsius to Fahrenheit and shows them in a table.

Apps with Real Data

Real apps store and fetch data — saving notes, loading weather, pulling headlines. You don't need to master databases; describe the data and AI handles the plumbing.

Show today's weather for a city I type in, using a free weather API, with the temperature and a simple icon.

Beautiful Interfaces

It doesn't have to look plain. Describe a look and feel — colors, layout, dark mode — and AI styles it. Tools like v0 shine at clean, modern components.

Give it a modern look: soft purple gradient background, white rounded cards, and large friendly buttons.

Full Products and Startups

This scales up. Founders use vibe coding to build MVPs and even launch real businesses, going from idea to a live product with tools like Bolt, Replit, and Vercel.

Start Small, Dream Big

Here's the secret: start tiny. Your first build should be small enough to finish — one page, one tool. Finishing builds momentum, then the big stuff comes.

A simple page that shows a random motivational quote each time I click a button.

Picture Your First Project

Take a moment. What's one small thing you'd love to exist — a page about your hobby, a tool for a boring task? Hold that idea; by track's end, you'll have built it.

Quick Check

Which is the best first project for a new vibe coder?

Recap: The Possibilities

You saw the range: websites, apps, games, tools, data, and even full products. Best advice: start small, dream big. Next, let's see how this track works!

Часто задаваемые вопросы

Урок «Что Вы можете создать» бесплатный?

Да — полный текст урока «Что Вы можете создать» бесплатно доступен здесь в веб-версии. Чтобы практиковать его интерактивно (встроенный редактор кода и ИИ-репетитор 24/7) и разблокировать остальной курс Vibe Coding, подпишись на CoddyKit PRO. Курс Vibe Coding содержит 4 уроков всего.

Чему я научусь в уроке «Что Вы можете создать»?

Приложения, сайты, игры и инструменты — с помощью запросов Ты практикуешь Vibe Coding с помощью реального кода, который запускаешь прямо в браузере, и ИИ-репетитор 24/7 отвечает на твои вопросы во время урока.

Нужен ли мне опыт, чтобы начать Vibe Coding?

Предыдущий опыт не требуется. Vibe Coding на CoddyKit структурирован для всех уровней — от новичков до продвинутых, поэтому ты можешь начать отсюда или с самого начала и учиться в своем темпе. Это урок 3 из 4.

Сколько времени занимает урок «Что Вы можете создать»?

Большинство уроков CoddyKit занимают около 5–10 минут. Каждый из них компактный и интерактивный, поэтому ты постоянно делаешь прогресс и продолжаешь с того же места в веб-версии и приложении.

Можно ли писать и запускать код в этом уроке Vibe Coding?

Да. Каждый урок Vibe Coding включает встроенный редактор кода, поэтому ты пишешь и запускаешь реальный код прямо в браузере и получаешь моментальную обратную связь от AI — локальная установка не требуется.

Все уроки этого курса

  1. Мышление в стиле вайб-кодинга
  2. От написания кода к общению с искусственным интеллектом
  3. Что Вы можете создать
  4. Как устроен этот трек
← Назад к Vibe Coding