38
Complete Uber Newb wants to create an audio app for Android/IOS: Where do I begin?
(self.programming)
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
Follow the wormhole through a path of communities [email protected]
Sweet thanks for laying out a simple progression path.
How good have you found ChatGPT to be? My understanding is that sometimes it's great but other times it's way off base. Then you have to figure out what went wrong and you know how the saying goes "You don't know what you don't know."
A tip I forgot to give: Use the debugger very early while learning JS, it's very helpful to understand what the code is doing.
It's great for snippets, or explaining simple code. It does fail often when hitting deep in some API, or when you want to do thing in a specific way because you know what you are doing. You have to talk a lot to it, if you want it to produce code for you.
But in your case, i recommend to never copy paste JS from ChatGPT, because it's your first programming language (html and css are not programming language), and making your brain used to code will be the most important thing I said to not copy, but you can ask questions to it, and it will be often correct, dont hesitate to send big chunks of your own code to chatgpt to get explanations.
Awesome, thanks for the clarification on that. Some very good tips to put into action.
ChatGPT should be plenty good for any foundational questions you have. And asking "how could I improve this code" with a code snippet can give you insight into better ways to do things. If you ask it for broad responses like "write me an app for relaxation sounds", I can guarantee that it won't work, but using it alongside a tutorial when you have questions or get an error can save so much time.