this post was submitted on 27 Jul 2023
62 points (80.4% liked)

Technology

58073 readers
3072 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
 

How users discover information on the internet is changing

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 6 points 1 year ago (1 children)

It's sad that search is in the state its in these days. It's harder to find useful or in-depth information. The first results are always someone who has used SEO to get to the top of the results to sell their product or just other garbage. If you really wanted to find people's opinions on things, adding site:reddit.com/r/whatever_topic to your search really was the best way.

[–] [email protected] 3 points 1 year ago (1 children)

I've been finding ChatGPT increasingly useful lately, both because ChatGPT is useful and because Google search feels like it's been in decline.

I'm not a coder. At all. I probably have slightly better understanding than the average non-coder, but looking at code tends to make my eyes glaze over. I'm typically good with the logic of what I want to happen, but the syntax and simply knowing what functions are available are things I really struggle with.

A few days ago, I decided I wanted to make a somewhat simple script. I spent several hours trying things, googling for solutions to the problems I encountered, and ultimately I got nowhere. Yesterday, I decided I should give ChatGPT a go. Not only did I get ChatGPT to write the entire script for me, with me just giving it prompts on what I wanted it to do, but it managed to explain pretty much everything it was doing - with answers tailored to my exact code. When things didn't work, it could speculate on why it might not have worked, and try alternative solutions.

It was a fairly collaborative process. There were points where I could see things that ChatGPT hadn't caught, like certain lines of code that had become unnecessary after iterating, or that variables hadn't been defined properly, and I could point then out and it'd fix them.

Using ChatGPT isn't entirely the same as googling for information, but I think you have to take a fairly similar approach with how you use both. Your language has to be precise and clear, you need to have an understanding of what output you want, and how to tailor your input to achieve that output. And you need to understand how to use the output it gives you - sometimes it'll be wrong, or only partial. Sometimes it'll require further steps to get the final result you're looking for.

[–] [email protected] 1 points 1 year ago

Yeah ive heard that ChatGPT and the like are actually pretty good options for some things. Maybe i'll try them out some more. Thanks for the insight.