• They have been pretty good on popular technologies like python & web development.

    I tried to do Kotlin for Android, and they kept tripping over themselves; it’s hilarious and frustrating at the same time.

      • @Opisek@lemmy.world
        link
        fedilink
        211 days ago

        I get a bit frustrated at it trying to replicate everyone else’s code in my code base. Once my project became large enough, I felt it necessary to implement my own error handling instead of go’s standard, which was not sufficient for me anymore. Copilot will respect that for a while, until I switch to a different file. At that point it will try to force standard go errors everywhere.

        • @doktormerlin@feddit.org
          link
          fedilink
          110 days ago

          Yes, you can’t use Copilot to generate files in your code structure way if you start from scratch. I usually start by coding a skaffold and then use Copilot to complete the rest, which works quite good most of the time. Another possibility is to create comment templates that will give instructions to Copilot. So every new Go file starts with coding structure comments and Copilot will respect that. Junior Devs might also respect that, but I am not so sure about them