Comment Re:At first (Score 2) 127
In my fourth decade, but been in C# since 2013, had a need to learn Angular and
Where chatGPT is an enormous help, is in the following:
- Asking questions to get documented answers. Much better than StackOverflow etc, where many answers leave out context.
- I mostly know what I want, but the details are sometimes difficult to find. E.g. most MS
.NET classes documentation is sometimes just downright uninformative. Here AI helps to get simple examples. - Rewriting simple code, like transforming the usage of building query string from + and StringBuilder to a simple, single verbatim string.
- Sometimes even just as a way to expand thinking about problems
But I wouldn't let an AI write all my code. I still needs to be kept simple, I need to be able to explain why something is done the way it is, and there is no formal way that you can trust an AI, which is really someone else's computer, with code from my customers.