It's a lot less in my opinion, because you can just ask it a question rather than having to read and interpret things. Every programming tutorial in every language is going to waste my time explaining how loops and conditionals work, when all I want is how this language does them.
Right, but you can't give it the variable names you're using and have it fill them in, and if you want to do something inside that loop with
I can ask ChatGPT "Write me a loop in C# that will add the variable value_increase to the variable current_value and exit when current_value is equal to or greater than the variable limit_value, with all the variables being floats"
You won't find that answer immediately on the Internet, and you're more likely to make errors synthesizing the new syntax.
But you do you, I'll keep using ChatGPT and looking like a miracle worker.
Right, but you can’t give it the variable names you’re using and have it fill them in, and if you want to do something inside that loop with
Why are you actively trying to avoid learning how to write the loop? Are you planning to have ChatGPT fill in your loop templates for the rest of your life?
But you do you, I’ll keep using ChatGPT and looking like a miracle worker.
It’s going to be slower overall than just using the reference and learning how to do it. I really, really am skeptical that a developer at the level where they need that feature is going to seem like a miracle worker to anyone other than people who are just impressed when you can do anything with a computer.
Semi-Hemi-Demigod@kbin.social 1 year ago
It's a lot less in my opinion, because you can just ask it a question rather than having to read and interpret things. Every programming tutorial in every language is going to waste my time explaining how loops and conditionals work, when all I want is how this language does them.
Vlyn@lemmy.zip 1 year ago
Seriously?
If I google for example:
The first result is www.w3schools.com/cs/cs_for_loop.php
In the time it took me to get to that ChatGPT would still be writing its reply.
Semi-Hemi-Demigod@kbin.social 1 year ago
Right, but you can't give it the variable names you're using and have it fill them in, and if you want to do something inside that loop with
I can ask ChatGPT "Write me a loop in C# that will add the variable value_increase to the variable current_value and exit when current_value is equal to or greater than the variable limit_value, with all the variables being floats"
You won't find that answer immediately on the Internet, and you're more likely to make errors synthesizing the new syntax.
But you do you, I'll keep using ChatGPT and looking like a miracle worker.
Kerfuffle@sh.itjust.works 1 year ago
Why are you actively trying to avoid learning how to write the loop? Are you planning to have ChatGPT fill in your loop templates for the rest of your life?
It’s going to be slower overall than just using the reference and learning how to do it. I really, really am skeptical that a developer at the level where they need that feature is going to seem like a miracle worker to anyone other than people who are just impressed when you can do anything with a computer.
Vlyn@lemmy.zip 1 year ago
If writing simple loops with ChatGPT makes you a miracle worker then you might have other problems than AI.
And even simple things break down when you ask it about using library functions (it likes to hallucinate heavily there).