Posted August 20, 2024Aug 20 Which of the following do you think will work best for newbies? You can choose as many as you want.
August 20, 2024Aug 20 You forgot one; building actual projects. I was stuck doing/following tutorials until I started creating projects on my own. I noticed that my learning accelerated after that. The process of coming up with project ideas, planning, making mistakes, debugging, learning from these mistakes, and continuing did more for them than simply learning the material through tutorials and videos.
August 24, 2024Aug 24 You forgot one; building actual projects. I was stuck doing/following tutorials until I started creating projects on my own. I noticed that my learning accelerated after that. I feel this way about learning JavaScript. The more I dived into trying to create codes myself, the more I grew accustomed to coding with the language. I will say that sticking to one learning resource instead of trying to use multiple resources at once can help you focus better and become less confusing.
September 12, 2024Sep 12 Content Team You forgot one; building actual projects. I was stuck doing/following tutorials until I started creating projects on my own. I noticed that my learning accelerated after that. The process of coming up with project ideas, planning, making mistakes, debugging, learning from these mistakes, and continuing did more for them than simply learning the material through tutorials and videos. Tutorials and videos can only take you far but by working on projects, you’ll definitely develop problem-solving skills and also learn how to debug and retain information better. Check this out: https://rankedtopsites.com/
September 22, 2024Sep 22 Which of the following do you think will work best for newbies? You can choose as many as you want. It depends on the context, but for newbies, I would suggest focusing on options that offer clear guidance, simplicity, and hands-on learning. Multiple tools or strategies can work well if they are easy to understand and implement.
September 22, 2024Sep 22 I started with self learning. I made use of solo learn to acquaint myself with the basics of programming before taking on accredited courses. Gradually, I made progress.
September 22, 2024Sep 22 Tutorials and videos can only take you far but by working on projects, you’ll definitely develop problem-solving skills and also learn how to debug and retain information better. Exactly, working on problem solving project is the main secret to be more perfect with programming and engaging in more communities
September 22, 2024Sep 22 The best ways to learn programming are through hands-on practice, building real projects, and consistently solving coding challenges. Pair this with studying online tutorials, courses, and reading documentation to deepen your understanding.
September 24, 2024Sep 24 maybe it can be started by trying to type sample code as it is then try to run/compile it and see the output, then start to modify it little by little and see the results again, do this continuously until we can understand how a syntax/code works. the point is that programming cannot be separated from trial and error process continuously.
September 27, 2024Sep 27 Best way in my opinion if you have the finances is to attend a college or university course where you can be tutored and guided. If you don’t have the budget, learning at home is just as good. Focus on interactive YouTube videos, articles and interactive content. Remember practise makes perfect! 👌
October 27, 2024Oct 27 I would say that there has been another resource left out of the list. For Php that resource would be Xdebug. By learning to use an actual Debugger like Xdebug (but for your language) it will teach you more about runtime processing than any other tool. You will get to see how the engine reads the code rather than how you think it reads the code. That is the single greatest source of bugs in software. We *think* the engine will process it this way, but it actually processes it completely different. The debugger will show you the difference and that will teach you many things.