How Can I easily remember code? is there another way of thinking lol there is just soooo much stuff to try to remember. do people even remember it?
We donât. We code with the reference docs open beside us.
Youâll find most coding âbest practicesâ are all about reducing the amount of work the human brain has to do. Human brains arenât very good at programming. Expect your brain to rebel the whole way, and take measures to make life easy for it.
Just experince. You code for about 10 years and you can write code without even looking at the screen.
Itâs the same way you remember how to spell âexpeditiouslyâ, âpoignantâ, or âvoraciousâ after using them a number of times. Part of it is practice. The other part is recognizing sounds, learning the roots, and using those rules to assemble not just those words, but words youâve never actually spelled before.
Once you understand the principles of how programming works, practice using the API and understand the classes (both native and Unity-specific ones), itâll come more naturally. Youâll always have to look stuff up at times, but certain parts will become second nature.
Yep, itâs one of those things where you think youâll never remember how a for loop is constructed then later you not only remember it but understand it. Then, drunk with power you start putting method calls in for loops. Iâm sure everyoneâs done it at some point, then you realise youâre an idiot and should basically just KISS it gently.
And just like code, knowing when to and when not to use them ![]()
You only need to know the programming language. All the APIs you just need to know the general style for familiarity, then you can cheat like the rest of us: Just start typing some letters and the editor fills in the blanks ![]()