(no title)
lmg643
|
3 years ago
I think "reading the manual" can be be interpreted not just in the literal sense of whether there's an actual manual, but also in the metaphorical sense, to make sure we're considering easily available sources of information. Great advice.
mtlmtlmtlmtl|3 years ago
When I'm introduced to a codebase I'll be doing significant work on, I'll often spend hours at a time just reading the code. Start at main() and skim until you get a feel for the overall architecture, then go figure out whatever subsystems seem mysterious to you. Rinse and repeat. Makes a huge difference when making changes, because that requires reading code anyway, and you'll have a much better idea of what code to read/change.
adave|3 years ago
Maybe its just me but plain text does nothing for me so i convert it into visual elements.
tstrimple|3 years ago
jen20|3 years ago
Man I wish that worked for Java ;-)
sigha887|3 years ago
nickjj|3 years ago
I've written a post around this topic because you can do this in a systematic way to learn pretty much anything https://nickjanetakis.com/blog/how-i-quickly-find-answers-to....