this post was submitted on 15 Jul 2026
459 points (98.1% liked)
Programmer Humor
32557 readers
1693 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Isn't programming also just telling the computer what to do? It gets converted to machine language, and you didn't write that yourself either.
The only difference I see is that programming uses more complex wording so it requires skill and thus can't be used by everyone.
It is like promting AI in Klingon.
When using other people's code, there actually is a long-established system of attribution and licencing. You still have to do some (occasionally quite complex) problem solving to figure out how to apply their code and your previous expertise to the task.
It would be more like prompting AI with a fully written text to translate into a different language... except that compiling your code generally produces mostly deterministic, predictable results (which, indeed, is part of programming: to predict how your program will behave) which you can test for errors and debug, while the AI translation is nondeterministic by design (because it's supposed to sound human and humans don't speak deterministically either) and if you know enough to check the translation, it would have been much less wasteful to just translate it your damn self instead of burning the planet for a petty convenience.