• OttoVonNoob@lemmy.ca
    link
    fedilink
    English
    arrow-up
    40
    arrow-down
    1
    ·
    1 day ago

    As an amateur game dev, I believe AI will crash out for the public before it becomes truly useful for programming. I’ve heard colleagues try to use AI , but it often just creates more work. When the AI doesn’t know the answer, which is often. it makes something up, leading to errors, crashes, or hidden issues like memory leaks. I’d rather write the code correctly from the start and understand how it works, than spend hours hunting down problems in AI-generated code, only to never find the issue. Full disclosure I use Chatgpt to edit my dialogue as my English is not great.

    • ryathal@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      2
      ·
      14 hours ago

      I don’t think AI code generation is going to be a revolution anytime soon, but AI voice and AI image generation is likely going to stay.

    • dukemirage@lemmy.world
      link
      fedilink
      English
      arrow-up
      9
      ·
      1 day ago

      Your anecdote checks out with a study I heard about. Office teams that were using LLMs for a few months reported that results are faster, but editing took longer than doing it conventionally in the first place. Generating boiler plate code and documentation could be another very useful use case in software dev, and I don’t really care if that’s used. Like in your use case, spell/grammar checking, using LLMs is a natural development of the tools that we already had. Your text processors marks errors, who cares if it’s powered by an LLM or by a huge heuristic rule set?

    • oce 🐆@jlai.lu
      link
      fedilink
      English
      arrow-up
      5
      arrow-down
      4
      ·
      1 day ago

      I am using them as a side tool for development. I think LLMs are already very performent for web knowledge search (e.g. replacing a search on stackoverflow), suggestions, explanations and error detection. Although is it worth the resources consumption? Not sure, but I can’t afford not staying on top of the tooling available for my job. However, I agree, in my experience, the edit/agent modes are not efficient for coding, for now.

      Generating secondary dialogues for a video game is quite a lower quality requirement than software engineering. So I think it could work there. It requires sounding natural, not being exact, LLMs are good at this.

      • JayGray91🐉🍕@piefed.social
        link
        fedilink
        English
        arrow-up
        3
        arrow-down
        3
        ·
        1 day ago

        web knowledge search

        yeah for low stakes how-tos I’ve been asking more and more using one of the free LLMs. For higher stakes I ask for their sources if they can give it and go from them on my own.

        • stray@pawb.social
          link
          fedilink
          English
          arrow-up
          1
          arrow-down
          3
          ·
          edit-2
          1 day ago

          It’s been really nice to be able to type a plain question (in any language) into Google and receive a concise answer before scrolling down to confirm with more trustworthy sources. In particular it’s been very good for solving annoyances with UI options by directing me to exactly what I’m looking for. A traditional search will often conflate my search with synonyms (even when using quotations, which is some bullshit), and even ignore what language my search was in.

          e: Also you should be careful when clicking on any links provided by an LLM because they can accidentally send you phishing links.

          • Kindness is Punk@lemmy.ca
            link
            fedilink
            English
            arrow-up
            1
            ·
            15 hours ago

            SEO destroyed google’s usefulness. AI is a cope for that but AI kills the incentives for very thing it depends on for it’s usefulness, user generated content.

    • the16bitgamer@programming.dev
      link
      fedilink
      English
      arrow-up
      1
      arrow-down
      3
      ·
      1 day ago

      My anecdote for AI and coding is that it’s a good replacement for google searching, especially when you are learning a new language.

      You need to understand the fundamentals first, but asking the AI how to do a task in C when you’ve only coded in JS is very helpful. It’s still wrong, but it’s not like Stack Overflow is more accurate.