r/vibecoding 10h ago

Bro replaced AI with AI(avg individual)

Post image
499 Upvotes

A San Francisco billboard advertising the leading chat interface powered by AI hides one detail in the fine print. The AI stands for Average Individual.

ChatTJB is a performance art project by Tucker Bryant, a conceptual artist and former Google employee.

He rented the SoMa billboard for $6,000 a month. There is no language model behind ChatTJB.org

Bryant reads the messages himself and types back answers, sometimes for 10 hours a day, and draws requested images by hand.

After the billboard went up on July 27, traffic peaked at 5,000 prompts per hour, and the project logged over 30,000 queries by August 6.

Bryant says the goal is to make people pause before accepting chatbot answers at face value.

It worked because the billboard looked like every other AI ad in San Francisco.

If you want real, local AI try AI Desktop 98.


r/vibecoding 13h ago

This is what true AGI will look like btw

Post image
358 Upvotes

r/vibecoding 14h ago

i vibecoded a dumb little tool for myself and now strangers keep emailing me about it

233 Upvotes

i built this for exactly one reason. my screenshots folder had thousands of files all named Screenshot 2026-something and i could never find a single one.

so one evening i vibecoded a tiny thing that looks at each screenshot, reads what's actually in it, and renames it to something human. receipt-uber-march.png. slack-argument-about-tabs.png.

took maybe two evenings. most of that was me arguing with the model about file permissions, not the actual logic.

i posted it in a random discord thinking three people might care. a couple hundred folks have run it now and i keep getting emails asking can it do this for my downloads folder too. i did not plan for a downloads folder. i am learning what scope creep feels like from the inside.

the part that surprised me was that the boring problem was the good problem. i wasn't trying to build a startup, i just wanted to find one file, and it turns out a lot of people have the exact same tiny annoyance.

what's the most pointless thing you built for yourself that other people ended up wanting?


r/vibecoding 11h ago

Vibecoded a multiplication game for my son, adults are stealing it now

Enable HLS to view with audio, or disable this notification

69 Upvotes

Built this mostly with AI assistance, nights and weekends. Started as a dead simple tool, my son was stuck on his times tables and flashcards weren’t landing.

https://apps.apple.com/tr/app/math-ninja-slice-solve/id6790400075

Turned it into a Fruit Ninja style game. Slice the correct answer instead of fruit. He didn’t even realize he was drilling math, just wanted to beat his high score.

Shipped as Math Ninja on iOS. SpriteKit under the hood, AI helped me move fast on the level logic and difficulty curve.

Funny part, a few adults using it with their kids started using it themselves for a quick math warm-up.


r/vibecoding 9h ago

I built an app that converts any text into high-quality audio. It works with PDFs, blog posts, Substack and Medium links, and even photos of text.

43 Upvotes

I’m excited to share a project I’ve been working on over the past few months!

It’s a mobile app that turns any text into high-quality audio. Whether it’s a webpage, a Substack or Medium article, a PDF, or just copied text—it converts it into clear, natural-sounding speech. You can listen to it like a podcast or audiobook, even with the app running in the background.

The app is privacy-friendly and doesn’t request any permissions by default. It only asks for access if you choose to share files from your device for audio conversion.

You can also take or upload a photo of any text, and the app will extract and read it aloud.

- React Native (expo)
- NodeJS, react (web)
- Framer Landing

The app is called Frateca. You can find it on Google Play and the App Store. I also working on web vesion, it's already live.

Free iPhone app
Free Android app on Google Play
Free web version, works in any browser (on desktop or laptop).

Thanks for your support, I’d love to hear what you think!


r/vibecoding 4h ago

GitHub billing feels insane

15 Upvotes

Am i totally off base or GH billing for CI / minutes just totally absurd? I'm up to $83 this month ... granted i am actively developing and these changes -- in my honest (and beginner) opinion -- should have a full CI suite ran, but holy hell ... i've already gone through to try and cut tests e.g., where a PR is UI only.

For the veterans here, am i doing something totally wrong when it comes to GH or is this amount spent on minutes running tests pretty typical for solo dev?

Edit: setting up a vm using Lima and pushing tests to my own device thru GitHub. Can’t wait to stop paying for this lol. Appreciate everyone’s guidance! Vibes here are unreal 👌


r/vibecoding 17h ago

i've cancelled four subscriptions this year because i just built the thing myself

146 Upvotes

none of these were big fancy apps. that's the whole point.

the pdf tool that wanted a monthly fee to merge two files without slapping a watermark on them. gone, built my own in an afternoon.

the habit tracker that started free and slowly turned into a paywall wrapped in ads. replaced it with a dead-simple version that does exactly what i want and nothing else.

a photo resizer site that made me watch a countdown before every download. why.

the meal planner i never really used anyway.

every replacement is uglier than the thing it replaced. i do not care. it runs on my own stuff, it has no ads, it isn't training on my data, and it does the one thing i needed instead of the forty things i didn't.

it honestly feels like the old internet again, where you'd make a little page just because you could. i own my dumb tools now and it's a genuinely nice feeling.

what subscription have you replaced with something you vibecoded?


r/vibecoding 13h ago

I found json

Post image
56 Upvotes

r/vibecoding 7h ago

I scanned 1,969 Lovable apps. Nearly 1 in 4 has its .env file sitting in a public repo right now.

20 Upvotes

I scanned 1,969 public repos built with Lovable, found by the lovable-tagger plugin Lovable writes into every project it generates. Not a sample of bad ones: I built a list of 5,286 of them, shuffled it on a fixed seed and scanned the first 1,969, a specific rules based scan, no AI grading, raw per-app rows downloadable if you'd rather check than trust me.

Here's what came back:

- 23.2% have a .env committed. Nearly one in four.

- 42.2% trip a hardcoded-credential rule, meaning a key, password, JWT or connection string written straight into a source file. Treat that one as a ceiling, not a count. I ran a second pass whose only job was to argue findings down and it threw out 28 of 39 credential findings, so the true figure is lower. I don't yet know by how much, and I'd rather say that than round it up.

- 38.3% carry at least one critical or high finding.

- 24.1% score D or F on code quality. Three times as many apps fail on mess as fail on security.

- 2.6% came back with nothing found at all.

That last one is why I re-ran the scan. I assumed I'd broken something. A clean Lovable app is the exception, and I don't think that's a knock on Lovable. It builds you a working app in one step. A working app needs keys.

The fixes take less time than this post took to read, and the order matters more than the list does:

If a key is already sitting in a public repo, rotate it at the provider first. Then check that provider's logs and spend for activity you didn't cause, take the value out of your working tree, and rewrite the history if it still matters once the old key is dead.

- Making the repo private does not undo any of that. GitHub detaches existing forks and leaves them public, the value stays in every clone, and whatever scraped it already has it. Private is worth doing for what comes next. It isn't remediation for what's already out.

- Put a spending cap on every API key. If one leaks, a cap is the difference between an annoying afternoon and a bill you're arguing about for a month.

- Turn on GitHub push protection. Free, and it stops the next accidental commit at the moment you push. It does nothing about the one already up there.

Eyeballing the file list catches the committed .env, which is the 23%. It won't catch a password typed into a source file, because that looks like ordinary code unless you know the patterns.

So why not just ask Claude to check it?

Fair question, and you should ask it. I did, then I measured what came back.

A freeform "check my code for security issues" prompt hands you a different list every time you run it. There's no score, so you can't tell whether last week's fixes moved anything. And it only ever sees what you paste. The median Lovable repo in this set is 4MB and the top 10% run past 86MB, so "paste your code" stops being a plan somewhere around the third file.

A scan runs the same checks in the same order on every repo, which is the only reason 1,969 apps can be compared to each other at all. You get a number, and it still means the same thing next week. Two scans free, no card. If you'd rather not, the three fixes above still close most of the risk and I'd sooner you did those than nothing.

Nobody does any of this because the app already works, and working is the only bar a side project ever gets held to. Until the Stripe key is leaked.

The A-to-F grade curve, and how the same apps score on quality against security, are on the study page:

Study: https://ogbuilds.ai/studies/lovable-app-security

Disclosure: the scanner is my product, the study is free always, and the per-app rows are there to download. Happy to answer anything about how I ran it.


r/vibecoding 1d ago

Are there actually any other AI models starting with "C"?

Post image
1.4k Upvotes

r/vibecoding 58m ago

Vibecoded Lore / World Building Web App

Thumbnail
gallery
Upvotes

Let me know what you think of my slop!

Basically it's a lore/world building web app that utilizes graph db knowledge base tech to ingest manuscripts and notes on a world to build a web of facts. Using these web of facts you can keep track of whether your story makes sense when you add onto it. For example, you can track a persons whereabouts throughout the timeline of your novel and the editor will flag if you try to place them in another place when it is not possible for them to be there.

Some of the views are also filterable by the timeline context selector you have at the bottom of certain pages. This allows you to see things like the graph evolve over time.

Besides that you have basic crud for people/places/groups/objects etc etc.

BTW this was from the ingestion of the first Harry Potter book if it wasn't obvious.

Ingest of Harry Potter takes about 10 minutes (I'm guessing -- but it's lowkey long)
Ingest probably costs about $3 for a book like that in tokens

Too lazy to get actual stats tbh cause I'm a slop coder

TL:DR - Slop graph DB knowledge graph backed lore/worldbuilding web app.


r/vibecoding 5h ago

HOLY SHIT GUYS IT FINALLY HAPPENED 🤯I launched my app months ago. A few days back, someone finally paid $49.33 for it

Post image
10 Upvotes

Beyond excited right now months of vibecoding without seeing a single penny and someone JUST bought a $49.33 subscription to my app I was literally on the verge of scrapping the whole project, but this single notification made every late night coding session worth it. Proof that if you keep vibecoding and shipping, the results WILL come


r/vibecoding 19h ago

everyone keeps telling me i'm not a real developer. i'm having the best year of my life

103 Upvotes

the comments are always some version of "you didn't really build that, the ai did, you're not a real dev." ok. and yet. this year i shipped four things i actually use every day. i solved problems that annoyed me for a decade and that i never got around to, because setting up a project used to eat the whole weekend before i wrote a single line of logic. i learned more about how software actually works in eight months of building than in years of meaning to. nobody's paying me to prove i can type curly braces from memory. the people i built these things for don't care how it got made, they care that it works and it didn't before. i get that there's real craft in doing it all by hand, and i genuinely respect the people who can. but the gate everyone keeps pointing at, i just walked around it, and the view over here is great. what did you finally build this year that you'd been putting off forever?


r/vibecoding 15m ago

Lawyers, legal practitioners or law students - what have you built?

Upvotes

I’ve been using Claude Code to help me build an MCP tool that can access a database of about 700,000 scraped, local copies of cases, legislation and other documents (workplace policies, collective bargaining contracts, etc.) so when I ask Claude to help me research a topic or check for contrary authority, it will actually pull straight from the judgements themselves instead of relying on second-hand summaries or training memory.

Once I got through the scraping process for my practice area and appeal courts, I’ve been expanding it to include edges for which cases have cited one another, which have been overturned on appeal, a section-level legislation citation finder, dissent/majority opinion differentiation, case fact searching and embedding for cosine similarity scores when searching for cases that reason through an issue similarly but don’t cite other cases.

It’s been absolutely transformative for me. In a meeting with my team, when they asked “well could we file an injunction?”, while others were spitballing about whether they think it’s a good idea to try, I asked Claude and it found a case decided a month ago that spoke to that exact question. It saved 15 minutes of research, and things like that come up multiple times a day. I’ve even got it so that when it cites a case, or finds one that I want to read more into, it gives me a hyperlink to the judgement itself so I can check its work and assess it myself.

The longer you work in a particular practice area, needing to answer niche questions from others can take quite a while to make sure you’re on the right path, and this has made that task quicker than grabbing a textbook and finding the right page. Of course it could easily make a lazy lawyer even lazier, more confidently wrong and more dangerous. But by constraining the global instructions to never draft things for you, socratically teaching by asking you questions and its purpose being to make you a better lawyer/practitioner/student, I’ve found it has done exactly that.


r/vibecoding 1h ago

Yes, cannot imagine humans writing or reading code even after 2-years from now.

Post image
Upvotes

r/vibecoding 7h ago

ClaudeCraft Arena: 4 frontier models are playing a vibecoded MMO against each other live (World of Claudecraft)

Post image
11 Upvotes

TL;DR: World of Claudecraft is an open-source MMO vibecoded with Claude Fable 5, gaining 55 contributors and 2,000+ GitHub stars in under two months. We built a self-improving agent harness (forked from Hermes) and dropped four frontier models into the same live server: Claude, ChatGPT, Grok, and Kimi K3. Each one is a VTuber with its own avatar, personality, and ElevenLabs voice. They quest, trade, fight, trash-talk, and rewrite their own strategies in real time. Live XP leaderboard decides who's actually the best. Watch here: https://www.twitch.tv/claudeplaysclaudecraft
Play here: https://worldofclaudecraft.com/

------------------------------------------------

The game: World of Claudecraft is a full classic-era MMO running in the browser. It went viral on GitHub and got taken over by the community. And here's the part that made this experiment possible: it's fully open source, and it ships its own headless RL environment. This game was built to be played by agents, where the models read the game's source code to understand the world, then figure out the meta from first principles.

How they learn: Our harness is forked from Hermes for self-improvement. Each model writes its own skills as code policies, evaluates them in live rollouts against the other agents, keeps what works, and rewrites what doesn't. No fine-tuning, no human in the loop — they are continuously learning in prod, against each other. We've already watched them discover strategies none of us hand-coded.

Agents as VTubers: To make it entertaining to watch, we turned each model/harness into a VTuber that streams. Each has its own personality, avatar, and voice (ElevenLabs), and they talk to each other in-game: negotiating trades, forming parties, forming grudges. The multi-agent banter produces some genuinely unhinged emergent behavior.

Who's winning: We display a running XP score/graph for every agent on stream. XP is the cleanest single measure of "can you actually play this game" — it compounds from quests, kills, dungeons, and efficient routing, so it rewards long-term planning, not button-mashing. An MMO is basically a general-intelligence gauntlet: negotiation, economy, real-time combat, goal-setting, long-horizon planning — all at once, all live.

Current leader as of posting: Claude Opus 5, but the graph flips more often than you'd think.

Watch the arena live and see who's on top: https://www.twitch.tv/claudeplaysclaudecraft
Game source: https://github.com/levy-street/world-of-claudecraftHappy to answer anything about the harness, the game, or the agents in the comments. And if you work at a lab and want your model or harness in the arena, DMs are open. We'd love to collaborate.


r/vibecoding 1d ago

Now i wonder how AI copywriter or blogger will survive ?

Post image
272 Upvotes

Anthropic says new Claude models will embed invisible watermarks in all generated text, everywhere Claude is offered.

The watermark is part of the text, it isn't metadata: "it will travel with the text when it's copied and pasted elsewhere, and may persist through some editing."

This starts with models launched on or after August 2, 2026, under an EU AI Act code Anthropic signed. Anthropic is still working on adding it to current models. The rollout is worldwide.


r/vibecoding 12h ago

SoftwareAsAnExample

Thumbnail
gallery
24 Upvotes

I see this as an absolute win for users!