How long would you say it took you before getting a fundamental understanding?
I would say years, as with any complex activity.
I’m still forgetting things I learned 3 or even 4 times like how to do a for each loop.
You can forget in 2 different ways:
1.- Forget how to use something, so you need to look how to do it. 2.- Forget that something exists, so you cannot even look for it because you are not aware it’s a possibility.
You will forget-1 everything which you don’t use on a daily basis. That’s what internet is for. Forgetting in the 2-nd sense is much more rare and you should do something if that’s the case.
all of it feels too advanced and I get lost on how to begin
This is a bias most of us have, you overlook how easy is for you to do things that previously were impossible and focus on how hard are the things you still don’t know how to do. And computing is so complex right now that there always be “infinite” things you don’t know.
Try whoing what you know to someone who doesn’t know how to code and you will get an idea of how much you have learnt :).
Anyway, I don’t really have good advice :/, just wanted to confirm that what you feel is expected. Good luck!
nous@programming.dev 1 year ago
I have been programming for decades now and still have to look up how an if statement works in bash - or other similar things, especially when switching between languages. It takes 5 seconds to look up and remember so I would not bother worrying about it. Far better to know when you need to use an if or for loop and quickly look up the syntax then to know the syntax but not when to use it.
Break problems down into simpler problems, then break those down into simpler problems until you have a trivial problem you can solve. Then build up from there. Like take a tic tac toe game - lots of things to consider that can all be dealt with in isolation. Like rendering the game to the screen, that is one problem you can start with, and can be broken down even further to maybe how to draw a grid to the screen, which again can be broken down to how to draw a box or line.
You might even want to look at the book " Think Like a Programmer: An Introduction to Creative Problem Solving by V. Anton Spraul" which goes into this way of thinking in more detail.