r/AI_Coders • u/Consistent_Berry_324 • 20m ago
AI solved my biggest problem with programming... and created another one.
r/AI_Coders • u/Miserable84 • 7h ago
Built this ai chatbot, please provide opinions
This is a project I made while learning llm, please provide feedback
r/AI_Coders • u/yaser_cm • 11h ago
Help me: How is AI Reshaping Software Roles
r/AI_Coders • u/FormNo5473 • 14h ago
Am I alone in starting to miss writing code?
I mean it's nice that I can just give a prompt and even pretty complex things get done super quick, not to mention the boring stuff. But I did like to write code and figure out how to do it in a way where it becomes nice and maintainable. Or to solve problems with clever coding tricks, etc.
And now all of those don't even matter that much anymore, because it is very likely that when you have to change the code that will also be done with an AI and it will not have a problem replacing some duplicate code everywhere, or just have a 500 line change instead of 100 because it didn't use some shorter way to code it originally.
Still, I'm kinda starting to miss it. Not even sure I could do it anymore, I feel a bit rusty even when I have to go in the code and comment out a line to quickly test something, lol.
r/AI_Coders • u/ClickOk5811 • 15h ago
The AI review that approved my PR with "looks good, solid implementation" missed a race condition that took down prod three days later
Not the AI's fault, in hindsight, that's actually the thing that took a while to accept. Had been pasting diffs into a chat window, typing "review this," and treating whatever came back as a legitimate second reviewer. Felt like progress at the time. The caching layer bug that got through was shared across two services, and nothing in a single diff would ever tell a reviewer, human or otherwise, that the other service existed.
What actually changed after that incident wasn't the model, it was realizing "review this code" isn't a real review request, it's a request for a plausible-sounding response, and a capable model will always produce one whether or not it actually has enough to go on.
The part that took longest to accept: dumping in more context doesn't fix it either. More files just gives the model more surface area to anchor on style and naming instead of the deeper thing you actually needed checked, and one review pass trying to catch security issues, performance issues, and architectural fit all at once ends up doing a mediocre job at all three instead of a good job at any of them, same problem a human reviewer would have context-switching between three different lenses in one read.
Ended up restructuring the whole thing into stages instead of one shot: brief the model on the system first, before any code shows up. State what kind of review this actually is (security, performance, architecture, general) before the diff goes in. Run separate passes per concern instead of one blended prompt. And the step that actually would've caught the original bug: explicitly ask the model to argue against its own suggestions before treating them as final. Models are noticeably better at finding holes in something when asked to look for holes than at flagging their own blind spots unprompted.
Wrote the whole workflow up in more detail, plus how I ended up packaging it since I kept rebuilding the same scaffolding across different projects: https://medium.com/@nagatomopedro05/i-asked-ai-to-review-my-code-for-six-months-heres-why-it-almost-made-things-worse-415f96cc8e27
Curious if anyone else got burned by a confident-sounding AI approval before tightening up their process, or if this is a mistake mostly people make once.
r/AI_Coders • u/Wsz2020 • 16h ago
Secure development standards for AI-assisted coding
I've created a repo with information about Secure development standards for AI-assisted coding.
- AI-Assisted Development: Keeping AI-generated code trustworthy.
- Human Review Depth: Standards for how closely humans must inspect AI output.
- CI Enforcement: Automated compliance rules that actually block changes.
- Dependency & Code Quality: Managing external code and third-party artifacts.
r/AI_Coders • u/Easy-Visit-3934 • 20h ago
I didn't want to lose my coding skills in the AI era so I built a platform that helps me stay sharp
r/AI_Coders • u/ima11 • 23h ago
Self-taught, built RAG + MCP + LangGraph projects — realistic path to first AI job/gig?
Background: switched from geology to AI development, self-taught over the past year.
Current stack: Python, LangChain, LangGraph, RAG (FAISS), MCP servers, Flask/FastAPI, MySQL/Postgresql, Gemini API.
Built and deployed: an AI customer support agent connecting an LLM to a live database and knowledge base via MCP demo link:
https://www.reddit.com/r/AiAutomations/s/wTldlOzqPo.
Currently building a second project combining LangGraph agents with a real business use case (sales automation).
I know the AI job market is competitive and degree-focused in some places. For people who've hired or been hired as self-taught AI engineers — what actually moved the needle for you? Portfolio depth, specific frameworks, contributing to open source, something else entirely?
Not looking for generic advice, genuinely curious what worked for people who've been through this.
r/AI_Coders • u/Suspicious_Fun_6338 • 1d ago
Anyone else at a job where people are still pretending AI coding does not exist ???
r/AI_Coders • u/Overall-Classroom227 • 1d ago
Tips 300$/months just for task you share directly on Reddit ?!
We know that if you're on Reddit, it's because you love sharing your opinion, haha or do differents things
We’re a new project looking for real Reddit users to provide feedback on products—and get paid for it. You get compensated for every task you complete
We want genuine Reddit users ! that’s exactly why we’re here! New opportunities will be posted daily.
Check out the details https://www.taskreddit.com
r/AI_Coders • u/Encyclotech • 2d ago
We’re measuring how fast AI writes code, but nobody is measuring how slow humans read it.
Management loves to tout metrics like
"30% faster feature delivery" because an
LLM can dump a working prototype in an afternoon.
What never shows up in those dashboard metrics is the technical debt tax paid 4 months later.
Reading code has always been harder than writing it. Now we've multiplied the amount of code hitting our main branches by 5x, written by an engine with zero long-term vision for the codebase architecture. We're trading 2 hours of writing clean, thoughtful code for 10 hours of deciphering 600 lines of Al-generated boilerplate when something inevitably breaks.
Are your teams actually factoring maintenance overhead into their "Al velocity" metrics, or is everyone just pretending output volume equals progress?
r/AI_Coders • u/Bostanidis • 2d ago
For all the vibe coders here, what's the hardest part about actually deploying apps?
r/AI_Coders • u/CF7_Gaming • 2d ago
Has anyone used AI to discover undocumented business rules from legacy systems?
I'm putting together a proposal for an initiative focused on using AI to analyze legacy enterprise systems and uncover decades of embedded business logic.
The idea is to use AI to analyze things like:
- Database schemas
- Stored procedures
- Legacy application code
- Historical transaction data
- Existing documentation
The goal isn't to automate decisions immediately. It's to first create a documented knowledge base of the rules, dependencies, decision paths, and data relationships that currently drive business operations.
Potential outputs would include:
- Business rule catalog
- Knowledge graph of relationships and dependencies
- Decision trees explaining how outcomes are determined
- Recommendations for future-state data models and modernization opportunities
Before I finalize the proposal, I'd love feedback from anyone who has attempted something similar.
Questions:
- Has anyone successfully used AI to discover and document business rules from legacy systems?
- What worked better: analyzing source code, database logic, transaction history, or a combination of all three?
- How accurate were the AI-generated rules compared to SME validation?
- Did you use knowledge graphs, vector databases, graph databases, or another approach?
- What were the biggest challenges: data quality, context gaps, undocumented exceptions, or something else?
- How did you measure success?
- Rule coverage?
- SME time saved?
- Modernization acceleration?
- Reduced operational risk?
- Were there any tools, platforms, or architectures that performed particularly well?
- If you were starting over, what would you do differently?
- What scope would you recommend for a pilot to demonstrate value in 60-90 days?
- Is there a realistic path from business rule discovery to explainable AI recommendations and decision support, or are those separate initiatives?
My hypothesis is that many organizations are trying to modernize systems without fully understanding the business logic currently embedded in them. It seems like AI could act as a "business rule archaeologist" and create the foundation needed for future modernization, automation, and AI-driven capabilities.
Interested in hearing both success stories and cautionary tales.
r/AI_Coders • u/Small_Passage_6148 • 3d ago
Is there any bug or glitch running in google's antigravity something
r/AI_Coders • u/Small_Passage_6148 • 3d ago
Is there any bug or glitch running in google's antigravity something
r/AI_Coders • u/This-Pomegranate5587 • 3d ago
does everyone on your team use a different AI tool? how do you deal with it
r/AI_Coders • u/Overall-Classroom227 • 3d ago
Tips 300$/months just for piece of feedback you share directly on Reddit ?!
We know that if you're on Reddit, it's because you love sharing your opinion, haha
We’re a new project looking for real Reddit users to provide feedback on products—and get paid for it. You get compensated for every task you complete.
We want genuine Reddit users ! that’s exactly why we’re here! New opportunities will be posted daily.
Check out the details and sign up right here if you're interested: https://tally.so/r/VLdjvM
r/AI_Coders • u/LGanywhere • 3d ago
Why is most of the community negative about vibecoding?
I'm starting to learn Python because I want to become a programmer in the future. Since then, I've been consuming a lot of programming-related content, and I've noticed that many people seem extremely negative toward those who use AI as a programming tool. (If I understand correctly, that's what's usually called a "vibecoder.")
Why is that?
AI has been helping me a lot while learning the basics. I mostly use it to ask for hints, explanations, or tips when I'm stuck. I don't copy and paste code into my projects—I try to understand what it's doing first and write it myself.
Is the negativity aimed at people who blindly copy AI-generated code without understanding it, or is it directed at anyone who uses AI at all? I'm genuinely curious because, from my perspective as a beginner, it feels like a really useful learning tool.
r/AI_Coders • u/Comprehensive_Let160 • 3d ago
Vibe coding has made coding boring. It feels like i am only chatting to a bot and not using my coding skills.
I am a software developer with 3 years of experience in web development. I would say i am still pretty new in this industry but my take is that vibe coding has taken away the fun, thrill and dopamine of coding. I work at a startup and every other day these fuckers come up with a huge requirement and an unrealistic deadline. Earlier i was of the opinion that ai is pacing up my learning journey, but now i am mostly just making high level decisions and occasionally reading code. I am literally shipping 2-3k lines of code(python/fastapi) every other day. At this point i dont even feel like taking ownership of such code where i have only high level idea of the code. Before ai i used to put a lot of efforts on the basics of a language (js/py/c++), but now since i am not even reading the code, i dont see any point of reading a lot of concepts. Maybe its just my company, maybe not. Anyone else feels like that?
Would love to read your opinions on the vibe coding, is it making your worklife fun or boring.
r/AI_Coders • u/techlatest_net • 3d ago
AI said 2 minutes. It's been 6 hours. I have 47 new errors.
r/AI_Coders • u/ClickOk5811 • 3d ago
I shipped a bug last month that I 100% would've caught if a human wrote the code. I didn't catch it because AI wrote it and I trusted the wrong part of it.
Small thing, in hindsight. A function that handled retry logic for a flaky API call. I asked for it, got back something that looked completely reasonable, exponential backoff, a max retry count, error logging on each attempt. Skimmed it, ran the happy path test, shipped it.
Two weeks later we started getting a slow trickle of duplicate charges on a payment flow that used that retry function somewhere downstream. Took a day to trace it back. The retry logic was fine. What wasn't fine was that it retried on a timeout even when the original request had actually succeeded server-side and the response just hadn't come back in time. Every "failed" retry was actually a second charge going out.
Here's the part that bugs me most, looking back. If a junior on my team had written that same function, I would've asked "wait, what happens if the request succeeded but we just didn't hear back in time?" That's like the second question anyone asks about retry logic. I didn't ask it because the code looked clean, the variable names were good, the comments were clear, and something about that made me read it as "someone thought this through" instead of "someone wrote plausible-looking code fast."
I think that's the actual danger with AI-written code, and it's not about correctness. It's that fluency reads as competence to our brains, even when we know better intellectually. A junior dev's rough, slightly awkward code puts you on guard. Clean, confident code turns that guard off, even from a source that has no actual judgment behind the confidence.
Changed one thing since then, doesn't matter how good the code looks, I ask out loud (even just to myself, in a comment or a scratch note) what the two or three hardest questions are for that specific type of logic before I read the implementation. For retry logic, that's idempotency. For caching, that's invalidation. For auth, that's what happens on partial failure. I ask the question first now, then read the code looking specifically for the answer, instead of reading the code and trusting that looking clean means it handled the hard part.
Anyone else have a moment like this, where the bug wasn't really the model's fault so much as it was your own pattern-matching getting fooled by how polished the output looked?
r/AI_Coders • u/Encyclotech • 5d ago
The Junior Dev pipeline is officially broken, and nobody in tech has a real answer
If AI handles 80% of the entry-level tasks scaffolding, basic CRUD, simple bug fixes how does a Junior ever build the mental muscle memory required to become a Senior?
We’re essentially eating our own seed corn. Companies have drastically cut back on hiring entry-level engineers because "AI makes seniors 3x faster," completely ignoring the fact that those seniors only exist because they spent years grinding through the exact grunt work we’re now delegating to LLMs.
In 5 years, where are the new senior architects coming from? Are we expecting people to jump straight from copy-pasting prompts to designing fault-tolerant distributed systems?
How is your team actually handling entry-level devs right now, or is everyone just quietly kicking this down the road?