There was a lot of engagement in the communities I participate up until a couple of years ago. People were interested and actively discussing a lot of topics. There were a lot of newbies asking questions and people proposing different ways for tasks.

Is it just me or did it reduce a lot? LLMs? Company forums? Other forums I did not move to (e.g. discord)? Reduced interest? Or is it just subjective?

  • averyminya@beehaw.org
    link
    fedilink
    arrow-up
    2
    ·
    3 days ago

    And to the end user who doesn’t know what they’re doing, the end result is the same or the AI one will get them “further”.

    I say this because if you’re following forums, chances are you’re following guides, which means you don’t understand what it is you’re doing. Which is fine, I typically don’t either, which is why I have a harder time with Linux.

    But realistically, following the guide of Stackoverflow will hit a hiccup and you will be stuck. Following AI, things might not work and need to be troubleshooted, but it will continue answering questions until the two of you put together something that sort of works.

    Not because of AI, but because the person kept trying. AI only made it so they didn’t need to understand.

    • EatATaco@lemm.ee
      link
      fedilink
      English
      arrow-up
      4
      ·
      3 days ago

      I find working with AI to help me understand way better.

      Using Linux as an example. If I search for “give me the size of each subdirectory in the current directory” the stack overflow answer will be “just type du -h --max-depth=1” so you copy and paste it and, voila!, it’s exactly what you want. Except I have no idea what any of it means.

      However, I ask chatgpt, and it will explain that du means disk usage, -h gives a human readable form, and --max-depth=1 will only go down 1 level, without showing all of the subdirectories.

      So now I’ve learned something.

      Additionally, with coding, it’s a lot like rubber duck debugging for me. Just formulating my question will often lead to an answer, or trying to explain what went wrong with the AI solution helps me get to the proper answer.