Interesting to see the benefits and drawbacks called out.
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person’s post makes sense in another community cross post into it.
Hope you enjoy the instance!
Follow the wormhole through a path of communities !webdev@programming.dev
I use it mostly as a help menu. Details of the function and parameter settings. Also fixing errors. I don’t use it to generate code for me though.
Using it to generate code isn’t inherently bad (outside of copyright concerns). Especially in “stupid amount of boiler plate” languages/etc.
But the problem is that people are lazy. They don’t bother understanding the output, making sure it does what you want it to, etc. It’s not that different than people copy pasting code from reference material. Part of the beauty of software development is that you don’t have to solve every problem someone else has already solved. But you do need to know what your code is doing and why.
Copilot is a shortcut to code that “works” with less requirement to know what’s happening.
It’s awesome for debugging for me.
Also helped me a few times with recursive logic.
As with any AI solution it’s “garbage in. Garbage out.”
Write your code normally. Then ask to generate comments? Add logging? Any tips for improvements?
You have to already know how to code so you know what to ignore.
Exactly, ai only speeds up your coding, quality still depends on you