Vibecoding
p/vibecodingBuild for the vibe, debug later
trending

1yr ago

After vibe coding: how do you take your product to the next phase?

As a data engineer who has little experience in full-stack software development, I ve been experimenting with vibe coding tools to move fast in the early stages.

My flow looked like this:

Prototyped the main UI in V0 (after 300+ iterations/conversations back and forth)

Tab-by-Tab (File-by-File) Coding vs. Multi-Agent Systems in Real Production

Developing with AI agents and orchestrating multiple sub-agents is widely celebrated as the next evolutionary leap in software engineering. But is it really a leap forward?

I see true evolution in qualitative shifts approaches that deliver fundamentally better outcomes. An AI agent is essentially the same underlying LLM with the exact same core constraints. What actually changes if multiple models write code in parallel?

At best, we get raw speed by splitting a project into subsystems where each agent operates in its own narrow vector space. But in real-world production, subsystems are never truly isolated. Agents, just like base models, cannot hold a holistic mental model of the entire architecture, no matter how detailed your system prompts are. This inevitably leads to silent bugs, broken dependencies, and architectural drift.

When an agent works across multiple files, it suffers from rapid context degradation. Each successive edit accumulates dirty context from past steps. In a complex system, the probability of a critical failure compounds exponentially. Unsupervised autonomous coding quickly devolves into endless audit loops, explosive generation spikes, and massive token burn. Development costs can easily 10x without strict human supervision. What feels fast initially creates a mountain of hidden debt.

25d ago

Your demo works because you know where not to click

Everything I've built fast worked perfectly for me and fell over for the third person who touched it. Not because the code was worse than I thought. Because I'd quietly learned the path through it. I know which field to fill first, which button not to press until the save finishes, which page to reload when it looks stuck. None of that is written down and none of it is in the product.

The test I run now is to hand it over and say nothing. No walkthrough, no "just click here first". Watch where they stop.

2mo ago

Bypassing the AI Token tax: converting massive codebases to images to save 60%

Like a lot of you, my API bills have been crazy lately from feeding entire directories and massive logs into the context window for hours.

I noticed a structural loophole in how models are priced: text tokens are billed by character density, but vision tokens are billed by flat image dimensions.

I started taking my massive text payloads and converting them into heavily compressed, high-density PNGs before uploading them to Claude and Gemini. It forces the model to use its OCR, and it actually drops the context cost by about 60% while retaining perfect accuracy.

Has anyone else experimented with multimodal hacks like this to save on API credits, or are you mostly relying on RAG and prompt trimming to keep costs down?

8mo ago

I stopped asking my AI what to build — now it just knows what task I mean (CLI experiment)

I ve been experimenting with a CLI workflow that removes the most annoying part of AI-assisted dev:
re-explaining context every single time.

Instead of prompts like:

Integrate Stripe payment gateway with X, Y, Z

I just run:

1yr ago

Are developers losing the race to no-code/vibe-coding?

I'm a developer. And as a developer, I probably have a huge disadvantage: I see every product with an overly critical, perfectionist mindset. Meanwhile, no-code and AI tools are making it easier than ever to build software without technical skills. But here's the paradox: this shift favors non-technical makers over developers. Why? Because they don t care (or even think) about: that slow query that might crash under load; that pixel-perfect UI; that memory-hungry process; tha non-DRY code; that perfect payment integration; Etc... I know what you're thinking: "Dude, just build an MVP and launch fast." But that's not my point. Even if I try to move fast, as a developer, it's hard to unsee the flaws. So here's my real question: Are we in an era where people with fewer technical skills are actually at an advantage? To me, it definitely feels like an advantage for non-technical makers.

1yr ago

Thinking of building a comparison tool based on AI... you find this useful?

Heya

I m thinking of building a simple, unbiased comparison platform for products, services, tools even technical stuff like frameworks, APIs, and AI tools to help you decide faster with clear side-by-side insights.

Personally, I often find myself deep in Amazon reviews, YouTube videos, and scattered blog posts when trying to choose something new. While some comparison sites exist, I ve never found a complete or truly comprehensive solution. The same goes for developers when exploring new frameworks or libraries with similar alternatives, a quick, focused comparison could really help clarify things.

Before going further, I d love to hear from you: Would you find this useful? Your feedback will help shaping what I build next.

25d ago

Someone said my product is impossible to make. Rice's theorem

A commenter said the core of what I'm building, working out what a change will break before it happens, is impossible. He never explained, and never came back.

It bugged me enough that I went looking for what he might have meant. The strongest version is Rice's theorem: you can't write a program that reliably works out the behaviour of arbitrary programs. Applied to me, you can't look at software and compute what a change breaks. Not hard. Impossible. Settled since 1953.

2mo ago

How do you verify an agent's "this works now" without redoing the work?

Been in a thread lately about the "context tax" of re-explaining project state to an agent every session, and it made me realize the harder problem for me isn't memory, it's trust in the agent's own status reports.

When an agent says "fixed it, tests pass" or "yes that endpoint handles that case," how much do you actually check versus just believing it and moving on? I've gotten burned a couple times by an agent confidently describing behavior it never actually verified, it just pattern-matched to what a fix usually looks like.

27d ago

spent longer on auth than building the actual tool

built an on-call tracker for my team last week. maybe 3 hours. then spent the rest of the day trying to figure out how to let 6 specific people see it and nobody else

ended up with a shared password in our team chat. it works. I hate it

writing a real login system for six users feels stupid. but the shared password thing also feels stupid. what do you guys actually do

First
Previous
•••
222324
•••
Next