this post was submitted on 24 Nov 2023
109 points (76.3% liked)

Technology

57472 readers
3604 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 content.
  3. Be excellent to each another!
  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, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
 

OpenAI was working on advanced model so powerful it alarmed staff::Reports say new model Q* fuelled safety fears, with workers airing their concerns to the board before CEO Sam Altman’s sacking

you are viewing a single comment's thread
view the rest of the comments
[–] Corkyskog 2 points 9 months ago (2 children)

Programming is like 10% writing code and 90% managing client expectations in my small experience.

[–] [email protected] 1 points 9 months ago

But a lot of the crap you have to do only exists because projects are large enough to require multiple separate teams, so you get all the overhead of communication between the teams, etc.

If the task gets simple enough that a single person can manage it, a lot of the coordination overhead will disappear too.

In the end though, people may find out that the entire product, that they are trying to develop using automation, is no longer relevant anyway.

[–] [email protected] 1 points 9 months ago (1 children)

Programming is 10% writing code, 80% being up at 3 in the morning wondering whY THE FUCKING CODE WON'T RUN CORRECTLY (it was a typo that you missed despite looking at it over 10 times), and 10% managing expectations

[–] [email protected] 2 points 9 months ago* (last edited 9 months ago) (1 children)

Typos in programming aren't really a thing, unless you're using the shittiest tools possible.

[–] [email protected] 1 points 9 months ago

Typos are very much a problem in programming. Variables can be set to the wrong value without the programmer noticing, you can call the wrong method (example RotateZ instead of RotateX), and in more advanced programming such as Java/C# reflection the IDE can't correct you.