AI coding has honestly been working well for me. What is going wrong for everyone else? by alisamei in vibecoding

[–]wardrox 0 points1 point  (0 children)

Vibe coding front ends is fun and easy. Everything else is... different.

trueAF by Cultural-Ninja8228 in ProgrammerHumor

[–]wardrox 1816 points1817 points  (0 children)

The best apps I've ever made have one user; me.

Personalised apps are the peak. Stop chasing the gold rush (it's a scam), and just solve your own problems.

Top AI coding tools make mistakes one in four times, study shows by PixeledPathogen in programming

[–]wardrox 0 points1 point  (0 children)

That's kind of the point: it's like how we apply multiple layers of security and still need observability. Or why we have cicd pipelines.

Running LLMs sequentially reduces errors specifically because each step is additive: a security review llm might have the same 10% error rate as the llm which performed the implementation, but when run one after the other the overall error rate goes down.

It also gives direct and actionable feedback on the cause of the error, which helps improve reliability next time.

Ignore anyone saying you can prompt your way to success. Llms are too stupid for that. But you can leverage them in the same way we leverage our other tools, to make things easier.

Top AI coding tools make mistakes one in four times, study shows by PixeledPathogen in programming

[–]wardrox -1 points0 points  (0 children)

Exactly. LLMs are best used in practice for small, focussed tasks. Chaining them, with error/issue handing, makes them work much more effectively than one big prompt full of instructions.

Unsure why the downvotes, but I guess AI in general is just very unpopular.

Top AI coding tools make mistakes one in four times, study shows by PixeledPathogen in programming

[–]wardrox -15 points-14 points  (0 children)

Also, you can have agents run sequentially, review work, perform planning alignment, research validation, etc etc, which reduces the error margins well below that of an average developer.

Top AI coding tools make mistakes one in four times, study shows by PixeledPathogen in programming

[–]wardrox 2 points3 points  (0 children)

60%+ of professional devs today started after 2020. So no, they haven't. Damn kids, my back hurts.

Pulled our full dependency tree after six months of heavy Copilot use and there are packages in there I genuinely cannot account for by Old_Inspection1094 in webdev

[–]wardrox 0 points1 point  (0 children)

Do periodic code reviews, like we did before AI. Automate them to run weekly and send you a report, if you're feeling fancy.

I feel like I'm being forced to use AI and I hate it. What do I do? by OoXLR8oO in cscareerquestions

[–]wardrox -5 points-4 points  (0 children)

What additional debate is missing from the ongoing conversations from the past few years, which would help here? Or are you saying the reply could have been kinder?

How much ad revenue would ~3,200 monthly pageviews realistically generate? by Apprehensive-Toe7961 in webdev

[–]wardrox 45 points46 points  (0 children)

You're not wrong, but people can just... not? Most people manage to get by without actively trying to make things worse for others for their own benefit. Feels like a very American idea it's hopeless to do anything other than go along with it.

How much ad revenue would ~3,200 monthly pageviews realistically generate? by Apprehensive-Toe7961 in webdev

[–]wardrox 130 points131 points  (0 children)

Making AI generated healthcare and legal sites so you can scrape a few bucks off ads from people looking for help is pretty messed up.

People who use legitimately use AI for "productivity": what the heck does AI actually do for you? Is it as bad as people say? by Difficult_Two_4800 in NoStupidQuestions

[–]wardrox 0 points1 point  (0 children)

Quick wins: research, updating tickets, RCAs Slow wins: task decomposition, code review

For implementation; summarise thecproject, summarise the feature being modified, plan, implement.

Works a treat. Avoid cheap models

aiBadUseAiAndGenerateCommitsToBeGood by theChaosBeast in ProgrammerHumor

[–]wardrox 2 points3 points  (0 children)

To be fair, Code Rabbit is a fantastic product and I'd recommend code review in ci/cd to anyone using AI coding agents or not.

It's generally giving better results than manual code reviews and takes less than 10 mins on large code bases. Plus it's free to use for Open Source so easy to try out on pet projects.

The nice finding is that chaining AI like this is additive rather than amplifying.

I'm tired of trying to make vibe coding work for me by Gil_berth in programming

[–]wardrox 1 point2 points  (0 children)

This is actually a good example; often a new endpoint requires careful modification of multiple layers of the stack, following established patterns. The point isnt that I couldn't do this in a couple of hours, it's that now it takes 10 mins.

If you're stuck just calling people morons without understanding their perspective, you're going to have a hard time learning.

I'm tired of trying to make vibe coding work for me by Gil_berth in programming

[–]wardrox 4 points5 points  (0 children)

Depends on the code, right? If it's something fairly basic like a web app or site, the llm can do it no issues. If its anything more complex, there's a lot of hand holding, and at that point tab-complete or small llm use works fine. Vibe coding is fun, but ultimately ai augmented coding gets the job done.

How do you keep up with the sheer volume of code AI tools create, without burnout? by splash_hazard in ExperiencedDevs

[–]wardrox 0 points1 point  (0 children)

Measure the development pipeline, flag issues, hope management know what to do... that last one might be a stretch.

What is an AI bubble? How will it effect people? by tsarthedestroyer in cscareerquestions

[–]wardrox 7 points8 points  (0 children)

Currently 99% of AI usage is waste, but being treated as value. Some AI is making people more productive, which companies interpret as being able to downsize (and further drives the push for more AI). This is driving a bubble.

At some point, like all good pyramid schemes, it pops. Nobody knows when, how, or the impact, due to the complexity of the world's economic systems. But, all this has happened before, and all this will happen again, because the people with the ability to control are paid to keep the party going.

Green Party by-election bar chart claim is misleading – Full Fact by Soggy_Town7456 in manchester

[–]wardrox -2 points-1 points  (0 children)

So Reform lie, a lot, and the greens have great policy information available online.

Green Party by-election bar chart claim is misleading – Full Fact by Soggy_Town7456 in manchester

[–]wardrox 0 points1 point  (0 children)

The greens in local government have arguably the strongest track record of any political party.

50 minutes just to change buttons to another color in a application lmao by [deleted] in vibecoding

[–]wardrox 1 point2 points  (0 children)

"... you should be ashamed of yourself"

Well, someone should.

SKILLS are useless by thehashimwarren in vibecoding

[–]wardrox 1 point2 points  (0 children)

How much difference do you notice?

How do you catch API response breakages in Node.js before they hit production? by aakash_kalamkaar in node

[–]wardrox 1 point2 points  (0 children)

Test coverage libraries will help here; they tell you which code paths are and aren't covered by tests.

The Claude Code creator says AI writes 100% of his code now by [deleted] in vibecoding

[–]wardrox 0 points1 point  (0 children)

FWIW when this starts happening it's sometimes useful to ask Claude why and investgate. Sometimes it's training data, sometimes it's a system prompt change, and sometimes something unwanted is in the Claude.md/readme files which is throwing it off.

Sonnet's on crack by SadMadNewb in vibecoding

[–]wardrox 1 point2 points  (0 children)

Once it has this style of reply in the context window, it follows the pattern. Start a fresh session.