this post was submitted on 07 Jun 2026
414 points (98.6% liked)

Technology

85274 readers
4199 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
[–] kibblebits@quokk.au 17 points 2 days ago (3 children)

I love AI, when it works, but even I don’t want it in 99% of my life. It’s a tool, and it should be rolled back to “tool” status and not some kind of therapist or friend or fact finder.

Just use it to replace stack overflow. That was never a good thing. ;)

[–] lil_baka@ani.social 7 points 1 day ago (2 children)

Just use it to replace stack overflow. That was never a good thing. ;)

It was and is a good thing. I think it's a huge problem that when it fades away future next generations of AI will not be able to learn from it. And the culture at that point will be to depend on AI instead of having sites like those, so even getting it back isn't going to work. Honestly I think maybe we need a new job: "experts" who just do some fun highly thematic stuff and post results online to train AI.

[–] kibblebits@quokk.au -1 points 1 day ago (1 children)

It’s probably just going to be people who put code online that doesn’t work at all in an attempt to poison AI :(

ChatGPT 3.5 had a lot of bad code. It was still pretty amazing for the time. But it wasn’t at all a coding agent.

[–] Flagstaff@programming.dev -1 points 1 day ago

It's truly incredible how far it has come in just a year and especially in two.

[–] DaleGribble88@programming.dev 0 points 1 day ago (1 children)

I think you just described scientists :P

[–] lil_baka@ani.social 3 points 1 day ago (1 children)

Scientists don't work on mundane problems. AI need training to solve mundane tasks. Just take stackoverflow as the literal example. It's not science. We might need a new profession to produce training material for arbitrary areas of expertise, not limited to research level topics. A job like this might be talking about such topics on a searchable forum, for example. Each post can be evaluated by a separate AI system to assign score points to it. I don't know whether this sounds more dystopian or fun. It's definitely not that far from social credit systems.

As a computer science professor, you are giving us scientists way too much credit. Most articles we produce are basically just: hey, you can use this framework/use this strategy to solve this problem. There is a sad, or maybe not depending on your POV,, problem in computer science research that most research doesn't follow the scientific method.

[–] IrateAnteater@sh.itjust.works 23 points 2 days ago (4 children)

I love AI, when it works

The problem for me personally, is that AI has worked exactly 0% of the time when I try to use it.

[–] pinball_wizard@lemmy.zip 16 points 1 day ago

The problem for me personally, is that AI has worked exactly 0% of the time when I try to use it.

Your mistake is knowing that you're doing, so you catch AI's mistakes.

Try using it for stuff you're not remotely qualified to do in the first place, then it can look useful!

[–] wewbull@feddit.uk 4 points 1 day ago

I've been experimenting with agentic coding the past couple of weeks. The task is to write a data scraper for a report file I get out of a commercial tool I have to use for work.

It's a pain of a format because it's not written with computer parsing in mind. It's verbose, contains loads of redundant parts, and doesn't have good delimiters around data. It's big too. 500MB uncompressed, so we keep them gzip'd.

All reasons why I don't want to write the code to do it.

The model identifies the file format without me saying where it came from, but it sits in this loop:

  • "Let me analyse the input file" - Does various greps, seds, and awks to pull out sections and find patterns in their formatting.
  • "I understand the format enough for now" - and then proceeds to write out a list of rules it's discovered. This bit is actually quite impressive.
  • "Now I need to draft the data structures the data will go into" - ...and it will write some over-decomposed objects. Not out to disk though.
  • "The user says they want a parser, so let me start writing the actual code" ... Finally!... But hang on...
  • "Actually, I need to understand the file format more" - loop to the top.

It does this for hours.

The tiny bits of code I've actually managed to get out of it are really bad. It's like the code you'd get back from some race-to-the-bottom offshore software "team" you were forced to work with 10-15 years ago because your boss had found an "amazing opportunity". In actuality it was somebody's teenage nepo-hire. Similar adherence to rules and standards too.

I already have a rough data scraper for this file. It's a couple of hundred lines of python. I wrote it in an afternoon. It's not great. It doesn't get everything I want out. However it exists and is usable. This isn't an intractable task.

[–] SnotFlickerman@lemmy.blahaj.zone 0 points 2 days ago* (last edited 2 days ago) (1 children)

I am basically a script kiddie and Anthropic Claude helped me design a small app for myself that was way beyond my own capabilities and it even went as far as documenting in comments what each bit of the program did for me, to help me understand the logic.

I only have access because I got a free year of Perplexity.ai because I had a paypal account (barf, had to have it to get paid for gig work).

I see it as very useful for anything technical, it helped me through some troubleshooting a hardware issue with my monitor I was having trouble pinning down by browsing forums.

I would never purposely divulge personal info to an LLM, anything that's shared has had personal info stripped.

[–] pinball_wizard@lemmy.zip 3 points 1 day ago

I am basically a script kiddie and Anthropic Claude helped me design a small app for myself that was way beyond my own capabilities and it even went as far as documenting in comments what each bit of the program did for me, to help me understand the logic.

This is the good shit, right here!

AI does shit tier work, but it provides access to new skills.

If you learned anything from the experience, you're a programmer, now.

Welcome to the crew.

Don't be afraid to toss out the training wheels (AI) when it gets in your way, and try to enjoy the ride.

[–] cecilkorik@lemmy.ca 4 points 1 day ago* (last edited 1 day ago)

Exactly, it's a tool. It's potentially useful, in certain situations, but I'll be the one deciding if I want it at all, if it's useful and what it's useful for, not some company. If they tell me to use a table saw to clean my teeth, I'm going to tell them to go fuck themselves. Nothing wrong with table saws, but fuck any company that tells me what I ought to be using a table saw for, because it probably isn't in my best interest.