this post was submitted on 12 Jul 2025
61 points (95.5% liked)

General Programming Discussion

8712 readers
14 users here now

A general programming discussion community.

Rules:

  1. Be civil.
  2. Please start discussions that spark conversation

Other communities

Systems

Functional Programming

Also related

founded 6 years ago
MODERATORS
top 10 comments
sorted by: hot top controversial new old
[–] [email protected] 14 points 1 day ago

And it’s not even including the fixing of vibed bugs and security vulnerabilities. Nice.

[–] [email protected] 2 points 1 day ago

this is purely anectodal, but i've tried getting coding help from gen ai a few times and it was never helpful

the last time i tried was particularly ridiculous: i was looking for z-combinator implementations in rust on google and gemini gave me an implementation suggestion. for those who don't know, the z-combinator is an eager variant of the y-combinator and the point of both of those is allowing you to implement recursion without using recursion directly

the code generated by gemini used recursion

and it didn't even compile

[–] [email protected] 1 points 1 day ago* (last edited 1 day ago)

Best coding use I've found for it so far are simple, very clearly defined, small apps or modules. As soon as any vagueness enters the picture you'll spend more time analyzing what it produced than is worth it. You might be able to use it as a starting point.

All of our apps eventually get real world stress tested against our giant test databases and load testing.

[–] [email protected] 1 points 1 day ago

Every time I have used GenAI to do my coding its been for switch/cases because its FAST. I don't trust it for anything else because I let it do some work for me once, and I got snakebit with a prod issue.

It wasn't just me but a senior too.