this post was submitted on 16 Aug 2025
120 points (96.2% liked)

News

31652 readers
2643 users here now

Welcome to the News community!

Rules:

1. Be civil


Attack the argument, not the person. No racism/sexism/bigotry. Good faith argumentation only. This includes accusing another user of being a bot or paid actor. Trolling is uncivil and is grounds for removal and/or a community ban. Do not respond to rule-breaking content; report it and move on.


2. All posts should contain a source (url) that is as reliable and unbiased as possible and must only contain one link.


Obvious right or left wing sources will be removed at the mods discretion. Supporting links can be added in comments or posted seperately but not to the post body.


3. No bots, spam or self-promotion.


Only approved bots, which follow the guidelines for bots set by the instance, are allowed.


4. Post titles should be the same as the article used as source.


Posts which titles don’t match the source won’t be removed, but the autoMod will notify you, and if your title misrepresents the original article, the post will be deleted. If the site changed their headline, the bot might still contact you, just ignore it, we won’t delete your post.


5. Only recent news is allowed.


Posts must be news from the most recent 30 days.


6. All posts must be news articles.


No opinion pieces, Listicles, editorials or celebrity gossip is allowed. All posts will be judged on a case-by-case basis.


7. No duplicate posts.


If a source you used was already posted by someone else, the autoMod will leave a message. Please remove your post if the autoMod is correct. If the post that matches your post is very old, we refer you to rule 5.


8. Misinformation is prohibited.


Misinformation / propaganda is strictly prohibited. Any comment or post containing or linking to misinformation will be removed. If you feel that your post has been removed in error, credible sources must be provided.


9. No link shorteners.


The auto mod will contact you if a link shortener is detected, please delete your post if they are right.


10. Don't copy entire article in your post body


For copyright reasons, you are not allowed to copy an entire article into your post body. This is an instance wide rule, that is strictly enforced in this community.

founded 2 years ago
MODERATORS
 

There is no shortage of hype around AI coming for jobs, and while the U.S. labor market has begun to sputter, hard evidence of AI-related job losses is scarce.

Geoffrey Hinton’s message on a recent podcast about artificial intelligence was simple: “Train to be a plumber.”

Hinton, a Nobel Prize-winning computer scientist often called “the Godfather of AI,” said in June what people have now been saying for years: Jobs that include manual labor and expertise are the least vulnerable to modern technology than some other career paths, many of which have generally been considered more respected and more lucrative.

“I think plumbers are less at risk,” Hinton said. “Someone like a legal assistant, a paralegal, they’re not going to be needed for very long.”

you are viewing a single comment's thread
view the rest of the comments
[–] MagicShel@lemmy.zip 10 points 1 day ago* (last edited 1 day ago) (1 children)

Yes. I use AI every day at work.

write a complex SQL query in a large database?

This is not a great use case for AI generation because it combines long multiple select queries with having to know the DDL of all the relevant tables. It might get you an approximation that needs tweaking, but if you work with SQL every day I'm going to bet you'd do a better job at this in less time than it takes to have AI help.

Things it's bad at:

  • ingesting lots of code, and spitting back out a "fixed" version of that code.
  • Writing complex logic in one fell swoop.
  • Writing code that has a bunch of externalities to consider like exactly where you store user scripts on a given Linux installation or writing stuff that works locally AND in the CI/CD pipeline, etc.
  • Adding code to a codebase that contains a bunch of custom packages and non-standard designs

Things it's good at:

  • "Complete all the swagger annotations for http status codes 400, 401, 403 <...>"
  • "Review the standards provided in corp_api_design.md and validate conformance."
  • "Describe the necessary endpoints, components and functionalities for a user service." edit result and ask for review
    • "Given this architecture, stub out a controller, service, and any request and response objects."
    • edits result and request review
    • "Add validations to " repeat as necessary
    • "Given this controller stub, service stub and response object, write a controller unit test using JUnit5 and MockMvc."
    • "Given <stub, etc.> implement "
    • "Given <Entity/ies> and create a mapper from entity to response. Use builder pattern and implement null checks."

Any of these results may need massaging by hand. The AI can't do the whole job, especially at once. But it can write bite sized pieces, sometimes even mouthfuls, very quickly. It's not instantaneous but it's faster than doing it from scratch. For me.

But I get the most value out of having my work instantly reviewed. I miss stuff. I typo stuff. Yesterday it caught in seconds a spot where I'd put a similarly named but wrong class and had struggled for 30 minutes to see it. It noticed the pattern established in similar code wasn't followed once I passed the unclear IDE error and code.

I know my job well but my execution is imperfect. AI excels at noticing those variations and imperfections from the rest of the code or industry standards.

[–] jaykrown@lemmy.world 4 points 1 day ago

That's fair, so your productivity has increased and error rate has lowered due to responsible usage of AI.