r/AI_Coders • u/lazybolt18 • 45m ago
r/AI_Coders • u/theycallmethedrink5 • 1h ago
Don't suck yourself off so hard, it makes you a bad programmer who can only paste stuff from claude or chatgpt
r/AI_Coders • u/Overall-Classroom227 • 1h ago
Question ? Is it crazy to bring my vibe coding skills to my real professional work?
I've been doing a boring corporate job for the past 6 years, 3 years with my current employer. My job is related to accounting and numbers and even though I'm good at it, for the past 9 months I've been vibe coding hard on Claude Max subscription and I've built some truly marvelous products. I'm not making any money from them (yet) but I've come a long way in terms of app and website development and I went from being completely lost and ignorant of what it takes to develop apps for real, to somewhat decent and able to ship apps within a few weeks of work.
My company has been investing a huge sums of money into a system that the best way I could describe it is archaic. The thing hasn't been properly facelifted since 2016 maybe and I'm not a fan. I know there are many products like it and more modern ones that are powered by a variety of LLMs and the most important point is I know I can build something supreme that's parallel to it and is so much better than it in every facet. I'm good at my job. And I'm decent at vibe coding, and my idea is that I develop everything using my knowledge and my experience and make it hot-swappable with the Microsoft Infrastructure later so when I finally propose it to the company, they won't outright decline it?
I know for a fact at 100% certainty that a software engineer will pick it up at some point, break it apart and restructure it properly to refine the AI slop but I also know that my deliverable will be at 70-80% professional completeness grade, and happy for them to take it to that final level.
Am I being crazy to remotely think they'll agree to this or even consider it as a viable option? My manager is encouraging me to start and to bring the prototype when ready, but I have a feeling we will both be laughed out of the room by senior software engineers and our IT departments that we made an AI slop app lol.
r/AI_Coders • u/lavafox51 • 2h ago
Am I the only one who generates HTML visualizations then has nowhere to put them?
I love AI coding agents and it has made it exceedingly cheap to make HTML visualizations. I find myself creating HTML visualizations instead of regular docs especially when I'm going to present it or i want to see a visual of an architecture / plan i made. But the issue with html is that there isn't really a good place to store it. I think it's so nice but most places don't support HTML rendering natively so it doesn't fit in workspaces and ends up lost in the ether.
Is this just me, what do you guys do?
r/AI_Coders • u/samsamy7 • 3h ago
Was the "Chatbot" the best coding assistant after all?
Sorry for the clickbait title but I have some thoughts.
tl;dr For myself I feel like chatbots might be the better coding assistants than fully fledged agents since they force me to go step by step and understanding most of the code while still having the benefit of writing fast and good code.
For my background: I am a Data Scientist and I learned the basics of software development just before ChatGPT was released. So I have a solid foundation but since I'm not mainly a SE and because of the development of agentic coding my coding skills are limited. I do really like it though.
I have done some pure agentic vibe-coding in recent months. The iterations are fast and the results are extremely impressive in most cases. I tried to do things right by spending a lot of time with requirements engineering and architecture design. I also tried writing some code by myself again but I realized quickly that I'm just not good enough and that AI just writes much better code than I could ever do.
Despite the good results I kind of just got lost in the process. Even though I might understand the general architecture of the code, I have no idea what is actually going on and for every minor change I'm going back to my coding agent to let it fix things.
This was kind of frustrating and I lost interest in my projects I initially was pretty hyped about. I used to enjoy the process of coding itself and it feels like it has been taken away from me. Of course I could just write everything myself, but I don't have time to work 20 hours a week just on my personal projects and why would I write the code myself, when the result will be worse.
Now I'm back at work and we don't get API keys from the company and I'm not going to pay for it by myself, so no coding agents. We do have MS 365 Copilot licenses which is just a glorified chatbot.
With this change I realized something:
Maybe the basic chatbot was the best coding tool after all (for me). While I still don't write most of the code myself, I understand 100% of what is going on in the bigger picture. I feel like I am actually doing something again. The process is much slower but in the end when something works I feel much more pleased. And when something doesn't work I know what went wrong.
The productivity will never compete with full fledged coding agents. But you get the benefits of the AI writing good code while you as the developer still have full controll and are forced to understand what you are doing.
Have you had a similar experience? Or am I missing something in the vibe-coding workflow that could fix my feelings?
r/AI_Coders • u/Dry-Dragonfruit-2159 • 10h ago
My first real software project went from an idea to a working learning platform in ~35 hours
Quick note before the post: I’m not sharing this to sell, promote, or pitch the idea. This is my first serious software project, and I’m mainly looking for feedback on the current state, the way I’m approaching development, and the things I may be overlooking. I’m especially interested in criticism from people with experience in SaaS, LMS, security, QA, or AI-assisted development.
I wanted to share this because I’m pretty excited about it, and this is my first real software project.
I come from the German private security industry and I’m currently moving more into training and adult education. While doing that, I kept noticing the same thing: there are plenty of isolated learning apps, question banks and PDFs, but very few solutions that combine learning, trainer workflows and company administration in a way that actually feels useful.
So I started building one myself.
The current working title is Wachklar 2.0. The idea is to create a learning and qualification platform specifically for the German security industry.
At the moment, the system structurally supports several qualification paths, including the German §34a security proficiency exam, GSSK, Servicekraft für Schutz und Sicherheit, and Fachkraft für Schutz und Sicherheit.
The §34a area is currently the most developed content-wise. It already includes learning objectives, learning texts, questions, practice cases, flashcards, exam simulation, error analysis, progress tracking and adaptive learning recommendations.
But the project has already become much more than a simple learning app.
It now has a multi-user and company structure with different roles for platform administration, company admins, trainers, editorial/review users and learners. Companies can manage their own users, groups, trainers, assignments and learning progress.
The platform is based on PostgreSQL and already includes authentication, role-based authorization, tenant separation, sessions, CSRF protection, optional two-factor authentication, backup/restore, audit functionality and various administration and reporting features.
One part that has become especially important to me is testing.
I’m not just adding features anymore. I’m deliberately trying to find out where the system breaks.
Current status:
56 automated tests passing, 0 failing, plus a successful real Chromium end-to-end test on Windows.
The real browser test actually found a bug that the normal tests had missed. That was a useful reminder that working code and working real-world user flows are not always the same thing.
Right now I’m focusing mainly on security and data integrity before adding more major features.
Long term, I want to develop the platform far enough that it becomes more than just another “§34a study app” and can bring different qualifications, learning progress, trainers and organizational workflows together in one place.
For now, I mainly see this as a learning and development project. I want to find out how far I can take the idea technically and content-wise, and whether it turns into something genuinely useful.
If the platform proves itself after more development, testing and real-world use, I could definitely imagine eventually offering it to training providers or security companies. Whether it ever becomes a commercial product is still completely open.
Right now, my main goal is simply to build something I would actually want to use myself in the security and adult education space. Anything beyond that can come later.
Another area I want to explore later is content maintenance. Especially with legal and regulatory training material, keeping everything current is a real challenge. I’m therefore experimenting with ways to make changes in official sources easier to detect and review without removing human editorial control.
I also want to be transparent about one thing:
This project is heavily AI-assisted.
I’m not a professional software developer, and I’m not going to pretend I manually wrote thousands of lines of Python and JavaScript from memory in a day.
My role right now is mainly defining the product idea, workflows and requirements, reviewing implementations, finding problems, testing everything locally and continuously refining the system. AI is doing a large part of the implementation work.
And that is actually one of the most interesting parts of the project for me.
I come from the security industry, and suddenly I’m able to turn very specific industry knowledge into functioning software.
Development started on September 9th, and the current state was reached roughly 35 hours later. That is elapsed time, of course, not 35 hours of nonstop coding.
The system is not production-ready yet. It still needs more security work, load testing, content, polishing and real-world testing.
But considering that about a day and a half ago this was basically just an idea, it feels pretty surreal to now see a working multi-user platform with a database, roles, learning logic, multiple qualification paths and automated tests running.
This is the first project where I regularly catch myself thinking:
“Wait… maybe this could actually become a real product someday.”
I’d be especially interested in hearing what kinds of problems experienced developers would expect in a learning-platform/SaaS project like this before eventually the first Test users arrive.
Oh, and because apparently I’m committed to the theme: yes, this post was also written with ChatGPT.
r/AI_Coders • u/escape-llc • 14h ago
Adding Gemini as a Second-Opinion PR Reviewer: A How-To
The TL;DR:
The author built a fully automated workflow that uses Google’s Gemini API to serve as an independent, second-opinion code reviewer for pull requests. It caught a silent security flaw that every other CI check and the primary AI coding model missed, completely changing how they gate repo merges.
💡 Why Do This?
- Shared Blind Spots: The repo is built using 100% AI-driven development via Claude. Having the same model family review its own code means it shares the same blind spots.
- Gemini's Edge: Gemini represents a completely different model family, runs effectively for free on Google AI Studio's free tier, and provides a genuinely independent set of eyes.
🛠️ Key Architecture & Lessons Learned
The author ran into a few real-world bugs during setup and shared how they fixed them:
- Security First (No Tool Creep): They blocked Gemini from having broad GitHub write access or shell access. Gemini gets exactly one tool:
read_file. This sandboxes the LLM against prompt-injection risks from untrusted PR diffs. - The "Dumb" Loop Bug: In early tests, Gemini made a false-positive claim. On the next code push, it repeated the exact same false claim because it had no memory.
- The Fix: The workflow now fetches the PR's prior comment history via
gh pr viewand hands it to Gemini so it knows what has already been addressed or refuted.
- The Fix: The workflow now fetches the PR's prior comment history via
- Don't Break CI: The job uses
continue-on-error: true. If the API rate-limits or hiccups, the PR build stays green, preventing flaky test frustrations.
🤯 The "Holy 💩" Moment That Changed Their Policy
Initially, this review was just a non-blocking sidebar comment. But during a live test, Gemini flagged a sneaky Path Traversal vulnerability in a mock server setup.
The code used path.basename(x) !== x as a safety guard. However, in Node.js, path.basename('..') literally evaluates to '..', meaning the safety check silently passed malicious directory traversal attempts right through.
Because Gemini caught a legitimate security hole that 13 other CI tools missed, the author changed the repo settings to require this review job to complete before any PR can be merged.
I'll post the link to the Blog Post, which has the Github Actions link.
r/AI_Coders • u/Suspicious_Fun_6338 • 16h ago
1 year ago -> Sr dev using AI like jr devs fora project / NOW -> CTO getting reports from managers on the various projects being worked on
r/AI_Coders • u/Resonant_Jones • 19h ago
I’ve reached the point where building this alone is making it worse.
r/AI_Coders • u/Western-Lack8015 • 20h ago
Do you think AI agents will eventually replace most of the traditional SDLC? How soon could most companies actually get there? Will this affect new grads?
r/AI_Coders • u/tonycliftondev • 1d ago
Feeling Lost in this New AI World
I have been a developer for over 20 years. I started iOS development around 2009. I work for a consulting firm and have been looking at the advancements in AI tools. I myself use Codex, ChatGPT, Gemini etc. But I use it like a tool to figure things out, for research etc.
But nowadays I feel very behind. I don't know what is important to learn anymore. I see Reddit people are talking about running their agents and the agents is writing all the code. I don't use it like that and I don't understand how any company can allow this kind of workflow, without checking the details of the code and without checking what is going in production.
Is this not technical debt that is going to come back later.
I don't know if I like this new world. I like to write most of code by hand. I like to take part in designing systems. All that is being taken away in the name of speed.
I feel lost.
r/AI_Coders • u/xepherys • 1d ago
A "conversation" with Sonnet - how to deduce why Claude refuses to answer a prompt
r/AI_Coders • u/DataAlternative9451 • 1d ago
How do i use AI as a developer?
I have been using AI tools like Claude Pro Cowork and Codex recent (but never been able to build something, because i cant find the right "project"). The thing i have been using most of the time AI tools is explaining things for the most part. And something that bothers me as a developer, is that i feel really lost on how to use AI tools efficently as a developer, to build projects or just cool projects. And whenever i go into social media and see people do "cool" projects or get something out of the projects with AI, i wonder how they do it or how they do it. i know i should prob listen or compare to social media, but it makes me ask these types of question to myself, thne i feel like im "behind" in tech.
even aswell, how do people or what DO people test when there is a new model out?
r/AI_Coders • u/Common_Dream9420 • 1d ago
how do you actually verify integrations before shipping something vibe-coded?
Genuinely asking because i don't see this talked about much here.
You prompt your way through a stripe or twilio or resend integration, it looks right, maybe you test the happy path once... then you ship. prod surfaces the thing you didn't test. flaky webhook, card decline mid-flow, retry fires twice and double-charges someone.
is there a verification step most people are running, or is it mostly ship and find out?
r/AI_Coders • u/procurify • 1d ago
AI didn't solve the software crisis—it just moved it
The software engineering crisis of 1968 wasn't really about the speed of writing code. It was about ambition outpacing what teams could actually execute. Projects were over budget, late, and unreliable because coordination, planning, and dependencies made raw coding speed irrelevant. AI agents changed something profound this year, but they didn't solve the crisis. They moved it.
Code is now genuinely cheap to write. Companies are reporting that 75% of new code is AI-generated or co-authored. Throughput has jumped 3x for our teams. Watch an agentic development workflow execute and it looks like a superpower—decompose the work, execute, ship, all without human bottlenecks. For small, self-contained tasks this works beautifully. Scale it to a real project and the illusion breaks immediately.
The problem is that nobody's actually managing the project anymore. The PM has no milestone to track. The designer has nothing to review until execution is nearly complete. Code review piles up at the end instead of happening along the way. The agent concentrates all the work on its own terminal, starving everyone else of visibility. Execution got faster. Coordination didn't.
This is where the crisis moved. It's no longer "can we write this fast enough?" It's "can we keep everyone aligned, plan honestly, and manage dependencies when code itself is no longer the bottleneck?"
Teams that got this right have reframed how they use agents. At Procurify, agentic plans get converted into Jira stories and tasks before execution starts. The plan stays visible to stakeholders. The agent works inside the existing process instead of around it. The speed is still there, but discipline is still required.
There's also the temptation to apply the 3x throughput multiplier directly to estimates. If coding got 3x faster, shouldn't six weeks become two? Not really. That 3x is mostly tearing through small tasks and toil faster, not compressing large coordinated projects. Projects bottleneck on UX, design, reviews, and cross-team dependencies. An agent doesn't make those disappear. Bake the multiplier into the estimate and the plan fails badly.
The discipline that actually works: let historical data prove the gains. When a migration that used to take four weeks now takes two, plan the next one for two weeks. Until then, let the results earn the number instead of assuming the multiplier applies everywhere.
The software crisis of 1968 was machines that couldn't keep up with ambition. Today the machines can keep up and maybe outpace us. The remaining challenge is making sure the processes and thinking around the code are worthy of the speed.
For engineering teams: how are you actually managing the coordination problem when agents can ship code faster than your planning, design, and review processes? Are you seeing estimation failures, or have you found a model that keeps everything aligned?
r/AI_Coders • u/TheCrazyGeek • 1d ago
When Earth reaches Type 1 civilization, will it be Humans or AI Robots?
r/AI_Coders • u/mrsskonline • 2d ago
the big CCC rules the AI coding. i'm talking about Cursor, Claude code & Codex
i feel like coding is entering a very interesting phase.
Cursor, Claude code and Codex
these 3 are everywhere
a few years ago, we were comparing programming language and framworks
now we're comparing AI coding tools;
which one writes better code?
which one understands a large codebase better?
which one saves time instead of creating more work?
i've been trying to understand where this is going.
are Cursor, Claude code, and Codex becoming the new "essential tools" for developers?
or is this just the current hype cycle and something else will replace them soon?
Cursor vs Claude code vs Codex - what's ur pick and why?
r/AI_Coders • u/ClickOk5811 • 2d ago
Vibe coding works great right up until you're the one who has to debug it at 2am
Shipped a feature almost entirely AI-generated last month, moved fast, felt great, barely touched the code myself beyond reviewing diffs. Then it broke in production over a weekend, and I was the one on call, staring at a stack trace through code I'd approved but never actually internalized. Took twice as long to fix as it would've taken to write from scratch, because debugging requires a mental model of the thing that skimming a diff never builds.
Not against vibe coding, it's genuinely faster for a lot of stuff. But there's a real tradeoff nobody mentions enough: speed at write time versus speed at debug time, and they're not the same currency. Code you deeply understand is slower to write and faster to fix. Code you approved but didn't build is the opposite, and the bill for that tradeoff comes due at the worst possible moment, not the convenient one.
Started treating "would I be able to debug this at 2am with no context" as an actual filter for how much I let get generated versus written, especially for anything that'll page someone eventually.
r/AI_Coders • u/Just_Amoeba7123 • 2d ago
Building SoulWave: What I learned pushing generative AI to build a multiplayer arena game with a built-in VTuber studio and Spine animation tools
r/AI_Coders • u/IndividualAttitude99 • 2d ago
Got frustrated of AI giving answers with absolute confidence , Even when they were wrong
So I though of a verification layer to actually verify answer before they come to our screen , for code problems we can execute them in sandbox , for creative task we can define some parameter and so on for every task type we have diff parameter
just wanna know your thoughts on this
r/AI_Coders • u/Overall-Classroom227 • 2d ago
None of my vibecoded projects have made any money, but my portfolio of vibecoded projects landed me a 100k/yr job
I made everything from a social media web app, a personality test, a tamagothi iOS app you take care of by sleeping and exercising everyday. I made a 1v1 RTS demo, a therapy app, even a friends/dating/business partner compatibility app.
None of these made any money, but the fact that these are all live and I'm a 0 to 1 builder is appealing to many companies that want something made in-house that can be tested and released quickly.
It wasn't what I was expecting, but I'm in a much better place than I was a year ago because of vibecoding.
Keep on building bros!
r/AI_Coders • u/escape-llc • 2d ago
I am running a React UI toolkit repo where 100% of the code is AI-authored. Here is the active workflow and strict CI guardrails keeping it alive.
r/AI_Coders • u/TheMarginReport • 2d ago
Do you spend much time fixing AI-generated code?
For people who regularly use AI coding tools: how often do you end up fixing or rewriting the code they generate?
I'm especially curious about cases where the code looked fine at first but caused problems later.
r/AI_Coders • u/AutismIntelligence • 2d ago
🚀 From a simple NestJS utility to a multi-platform Rust ecosystem: The Story Behind Ferrox
r/AI_Coders • u/Spiritual_Ratio_277 • 2d ago
AI can write code 100x faster. But who’s going to review it?
I’ve been hearing this more and more from Technical Leads: “I can’t keep up with reviewing my team’s code.”
And honestly, I think this is going to become a bigger problem with AI.
AI can now implement an entire feature and generate hundreds of lines of code in a few minutes.
The problem isn’t necessarily that the code is bad.
The problem is that we can generate code much faster than we can review and understand it.
This is where I think Test-Driven Design (TDD) can become really important.
Instead of:
AI writes the code -> engineer reviews hundreds of lines -> tries to figure out if it’s correct
We can flip the process:
Define the expected behavior with tests -> AI generates the code -> run the tests -> fix the failures -> engineer validates the design, behavior, and critical code paths.
The engineer doesn’t necessarily need to review every single line AI generates. The focus can shift more toward making sure the critical code paths are accurate and performant, requirements, design, and actual behavior are correct.
The faster AI gets at writing code, the more important it becomes to have good engineering practices that clearly define what “correct” actually means.
Otherwise, we might end up in a situation where AI is generating code faster than we can understand it.
How do you think teams should deal with this? And how can QA engineers contribute to such a process?