• mozz@mbin.grits.dev
    link
    fedilink
    arrow-up
    19
    ·
    1 month ago

    It’s incredibly useful for learning. ChatGPT was what taught me to unlearn, essentially, writing C in every language, and how to write idiomatic Python and JavaScript.

    It is very good for boilerplate code or fleshing out a big module without you having to do the typing. My experience was just like yours; once you’re past a certain (not real high) level of complexity you’re looking at multiple rounds of improvement or else just doing it yourself.

    • Boozilla@lemmy.world
      link
      fedilink
      English
      arrow-up
      6
      ·
      1 month ago

      Exactly. And for me, being in middle age, it’s a big help with recalling syntax. I generally know how to do stuff, but need a little refresher on the spelling, parameters, etc.

    • CeeBee@lemmy.world
      link
      fedilink
      arrow-up
      3
      ·
      1 month ago

      It is very good for boilerplate code

      Personally I find all LLMs in general not that great at writing larger blocks of code. It’s fine for smaller stuff, but the more you expect out of it the more it’ll get wrong.

      I find they work best with existing stuff that you provide. Like “make this block of code more efficient” or “rewrite this function to do X”.