this post was submitted on 17 Jun 2023
1 points (100.0% liked)
Programming
3347 readers
1 users here now
All things programming and coding related. Subcommunity of Technology.
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
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
Try starting smaller. For example, pick a classic interactive fiction game (like Zork) and reproduce it without using a framework.
Focus on learning how to organize your code in ways that make sense to you, and that seem to help you avoid defects in your code.
Use ChatGPT to explain code and give you recommendations rather than having it write code for you. It's a useful tool, but to learn to code well you need to be thinking through the logic of every line of code for yourself. Ask ChatGPT for guidance at only the smallest levels, like how to append an item to an array. Don't try to get it to solve high level problems, think through those yourself.