this post was submitted on 12 Jan 2026
179 points (95.0% liked)

Programming

24415 readers
317 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] fonix232@fedia.io 3 points 3 days ago (1 children)

what a load of bull.

AI doesn't "democratise" coding. One still needs to understand the basics of computer science, as well as higher level software design, to make use of AI tools and get actually usable results.

LLMs can write good code but they require constant guidance to do so. This is something that people need to understand. AI in coding is like Photoshop to an "analog" artist - super useful IF you know what you're doing, but as a complete stranger to the topic, all you'll do is basic tinkering.

[–] Womble@piefed.world 3 points 2 days ago (1 children)

I think you are vastly overestimating the level that statement is pitched at. The overwhelming majority of people dont even know how a for loop works. However they can ask an LLM to write a script to change this list of files with inconsistent numbering conventions and put them in a consistent order. That's the level of spreading out the ability to program that we are dealing with.

[–] fonix232@fedia.io 3 points 2 days ago (1 children)

Basic scripting is hardly programming, and it's been available in various user-friendly forms for quite a while...

Problem is that most people do seem to treat LLMs as if they could replace a well trained engineer. Including middle managers who want to cut costs at all price.

[–] Womble@piefed.world 1 points 2 days ago* (last edited 2 days ago)

And those people who think LLMs will replace software engineers any time in the near future are wrong. But it can still be the case that LLMs are democratizing coding ability to those who otherwise wouldnt have it while at the same software engineering as a discipline isnt going anywhere.

Its not just basic scripting either, often when people start coding in earnest their programs are just a huge pile of statements connected together with if statements and mutating global variables. and LLM can help show best practices like encapsulating logic into functions and isolating side effects.