this post was submitted on 05 Jun 2026
255 points (97.4% liked)

Technology

85163 readers
3924 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] squaresinger@lemmy.world 31 points 12 hours ago (3 children)

And yet, that's all my boss wants of me. "Does a dev really need to understand the code if the AI understands it?"

That's frustrating.

[–] OwOarchist@pawb.social 4 points 6 hours ago

(The AI does not, in fact, understand it. The AI doesn't understand anything at all. It's a statistical text prediction machine.)

[–] pivot_root@lemmy.world 9 points 8 hours ago (2 children)

It sounds like your boss needs to stop being anyone's boss. That kind of view is going to lead to piles of tech debt and everything that comes with it.

[–] blargh513@sh.itjust.works 2 points 6 hours ago (1 children)

I mean, I haven't worked at any company that doesn't have a decade or more of tech debt all human-made.

Is this any worse such a regard?

I do not advocate for more bullshit, but I don't really think that this will make a big difference either way.

[–] bryndos@fedia.io 1 points 5 hours ago

AI seems like it will help the already bad bosses do more - which seems like a bad thing. It's better if the bad ones just wank off in the toilet all day.

I think how much difference it will make in the long run will depend on who gets sacked and who survives.

[–] OwOarchist@pawb.social 0 points 6 hours ago

By the time that's a problem, he will have failed upwards because of his 'forward-thinking' AI push.

[–] Passerby6497@lemmy.world 10 points 11 hours ago (1 children)

Does a dev really need to understand the code if the AI understands it?

That if is doing a lot of lifting here, because AI doesn't understand anything, it only finds mathematical responses to your question. There's a reason the AI can't give you the same script twice (or it constantly rewrites the fucking thing instead of just fixing the thing I told it to)

[–] 8uurg@lemmy.world 1 points 5 hours ago

These models do have some form of understanding though. There are features for bugs and typos, and general features that map descriptions and pieces of code. It understands the code in so far it helps with next token prediction.

The bigger problem is that these language models are inherently unreliable and stochastic in how they generate. You request a feature - and it destroys something else in the process - because a single incorrect prediction caused it to diverge and skip a portion of the original code. You request a small modification - and it decides to restart from scratch - because random sampling made a different way of doing something more likely rather than what was there already. Errors compound and the model has no way of fixing or correcting them.