|
|
|
|
|
by chironjit
396 days ago
|
|
Absolutely hate the agent mode but I find autocomplete with asks to be the best for me. I like to at least know what I'm putting in my codebase and it genuinely makes me faster due to: 1) Stops me overthinking the solution
2)Being able to ask it pros and cons of different solutions
3) multi-x speedup means less worry about throwing away a solution/code I don't like and rewriting / refactoring
4) Really good at completing certain kinds of "boilerplate-y" code
5) Removed need to know the specific language implementation but rather the principle (for example pointers, structs, types, mutexes, generics, etc). My go to rule now is that I won't use it if I'm not familiar with the principle, and not the language implementation of that item
6) Absolute beast when it comes to debugging simple to medium complexity bugs |
|