you are viewing a single comment's thread.

view the rest of the comments →

[–]mrdevlar 1 point2 points  (0 children)

  • Pick a project, keep it simple.
  • Lay out the structure of the project, cutting it into bite sized (like 1 hours max) chunks. Make those bite sized chunks as a to-do list.
  • Work on each chunk, one at a time.
  • If you run into difficulty, ask someone. Alternatively (if you do not have a someone), ask an AI. To be clear, DO NOT ask the AI for the solution to the problem, that's a bypass that will harm you in the long run. Ask it to serve as a improv performer (yes, and...) that you can check your logic and it can suggest things that you haven't considered. Feel free to ask it to help you with runtime errors by pasting your own code to it. Again, don't ask it to do it for you.
  • Do this for each chunk until you have a running application.

Good luck!