this post was submitted on 28 Mar 2024
17 points (90.5% liked)
Programming
17419 readers
48 users here now
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!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities [email protected]
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Um... what rock have you been living under?
For simple code generation, I use GitHub CoPilot.
In both cases, I'm essentially writing the code "from scratch" myself every time, but now I can type "write a person class" then "add a name property", etc. Best of both words - the control of hand written code, and the efficiency of not having to type all that code out.
When your code is really repetitive, you don't even need to give it any prompts at all. You can usually just start a new empty line and it will guess what line goes there. For example if you have a firstName property, it will predict you're about to add lastName.
When it's more complex, for example if I haven't figured out how to structure the code yet, I use ChatGPT+. That's more of a conversation approach, similar to bouncing ideas off a colleague... "how would you do this; what about that edge case; etc".