|
|
|
|
|
by jlg23
3705 days ago
|
|
* Start at obvious entry points: main(...) for standalone apps, exported functions in libraries and top-level handlers for web applications. * Use a debugger and breakpoints for stack traces to understand program flow (if not available, throw an exception in a function of interest or insert print statements for the same effect). * Either use an IDE that allows you to jump to definitions or map the project with grep (e.g.: grep -H 'class ' * > classes.txt) to save time when manually going to the definition (or anything in between, but what's available depends on the language). * Focus: Especially when not used to code reading one can easily get lost trying to understand every single statement at once. Focus on what you want to understand in this reading session and develop a habit of doing the next step towards that goal once you got a good idea of what you are looking at. Perfect understanding is not necessary - if it turns out you missed a crucial part, you can still go back and re-read. * Practice: The more you read and write code, the more proficient you'll become, the more intuition you will develop and thus the faster you'll be when skimming over unknown code. |
|
My main problem though is that I can't seem to see the purpose of functions, because more often than not they are written in a, to me, foreign way.
An example I have is this uncommented if statement:
`if (tab.url.toLowerCase().indexOf("https://facebook.com") > -1)`
Should it be clear to me immediately that this means "If the target website is open"? It took me a solid minute just to understand this statement.
Are there some common design patterns I should memorise?