It’s just very quick at doing simple things you already could do - or doing things that you’d need to think about for a couple of minutes.
I wouldn’t trust it to do things I couldn’t achieve. But for stuff I could, it’s often much quicker. And I’m well equipped to check what it’s doing myself.
penguin@sh.itjust.works 1 year ago
It can generate simple stuff accurately quite often. You just have to keep in mind that it could be dead wrong and you have to test/verify what it says.
Sonetimes I feel like a few lines of code should be doable in one line using a specific technique, so I ask it to do that and see what it does. I don’t just take what it says and use it, I see how it tried to solve it and then check it. For example by looking up if the method it used exists and reading the doc for that method.
Exact same as what I would do if I saw someone on stack overflow or reddit recommending something.