TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Which one is better – Read all or on Need basis

3 pointsby bg117over 3 years ago
Which one is better - a) Read all books&#x2F;blogs&#x2F;... about the relevant technologies related to a project and start working b) Read books&#x2F;blogs&#x2F;... on need basis as you keep working on your project.<p>Which works or doesn&#x27;t work? Thanks...

5 comments

al2o3crover 3 years ago
Like most broad technical questions, the answer to &quot;A or B&quot; is &quot;yes&quot;. :P<p>You need to have read at least _some_ of the material to even know where to start and how to find more information when you hit a problem.<p>On the other hand, having practical experience with the technology will help you filter out &quot;need to know&quot; from &quot;obscure trivia&quot;.
thesuperbigfrogover 3 years ago
Frequently in computer programming work we will not understand all about a project until we begin implementing it. This is part the inherent or essential complexity of creating software described by Fred Brooks: &quot;The complexity of software is an essential property, not an accidental one&quot;. Brooks found that prototyping software was instrumental in understanding a project&#x27;s needs and problems. I have found Dr Brooks&#x27; insights to hold true, so I would recommend approach B. Otherwise you might be studying things you don&#x27;t need to know (premature optimization).
sigmaprimusover 3 years ago
I am in the B camp. It is probably less efficient in the long run but I personally find it more enjoyable and easier to learn and grasp new technology by jumping right into it and then refer to manuals and guides to accomplish the needed tasks.<p>The issue I frequently run into with this method is wasting time on less efficient tools and or rebuilding or starting over after gaining the knowledge I could have obtained first.<p>But I&#x27;m definitely in camp B as a sink or swim type personality.
muzaniover 3 years ago
B. It&#x27;s iterative. Knowledge doesn&#x27;t stick until you see how it&#x27;s applicable. By doing, you see the applications and learn faster.<p>A is useful in some situation, namely when you can&#x27;t start or don&#x27;t want to start yet. A big enough project may need a year of reading before you even start.<p>Generally you should read enough until you are highly motivated to do the work. And once work slows down, read some more.
jstx1over 3 years ago
Read <i>some</i>, then move on and learn new things as you need them.<p>Jumping in completely cold can lead to huge wastes of time because you don&#x27;t know what you&#x27;re doing. So read that book on a new language, follow the offical tutorial for a new framework, go over the docs etc. But make sure to time box that learning and then move on to doing some real work because otherwise you can get stuck on the learning phase forever.