Why you should know: StackOverflow is facing a mod strike in a similar way as Reddit’s mod strike. They are doing this in response to StackOverflow’s failure to address it’s promises and provide moderation tools

  • @Crackhappy
    link
    English
    141 year ago

    I think that one issue with using AI to help you solve programming problems is that sometimes it will wholesale make things up. Of course, people can do that too, which is why communities of coders can vote on the best answer. I say, more power to you, using the tools that work for you. Just be cautious.

    • @JonnyJ
      link
      English
      61 year ago

      ChatGPT is incredible for middle ground developers like myself. I understand the goal I’m trying to achieve, and I understand the general process of how to do it. I can ask very granular, specific questions to ChatGPT and it will spit out some code that will get me close to what I need.

      If I was a complete novice, I think ChatGPT would make me too dependent on using it for answers.

      • @Crackhappy
        link
        English
        31 year ago

        That seems like a totally valid use case. I occasionally will outline some very specific requirements and have AI generate the code, which just saves a lot of time typing, versus it generating it entirely on its own. And I still go through all the code and verify that it’s good. It’s just a tool that can be used to make your job easier.

        • @JonnyJ
          link
          English
          31 year ago

          Totally. The other day I had to test a csv/xls upload tool. I wanted to make sure that no matter what configuration an asshole user had for phone numbers, it would strip everything out so it would be a valid integer for my database.

          I told chatgpt to make me a csv with 20 rows, 6 columns with xyz headers, and to give me an assortment of different phone number formats. Took 10 seconds.