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: How do you remember things without tests?

22 pointsby text_exchabout 7 years ago
I find it hard to remember things that I'm not tested on later. For example, I'm currently reading a fascinating textbook about compilers. I would like to remember the information later on, but without a formal test and the deadline it poses I don't remember anything. How do you deal with this problem?

15 comments

eigen-vectorabout 7 years ago
Take generous notes. With practice, you&#x27;ll develop your own _language_ for taking notes. Personally, for me, the act of writing down—or typing if that works better for you—is almost as if reading the content twice, which in some sense it is. I go back to my notes every now and then. After years of doing it, I&#x27;ve learned to subconsciously devise an index of my own which is useful for me to remember a gist of what I learned, and also lets me figure out where to go look for if I need a deeper look into it.<p>Like other comments have mentioned, applying what you learn is also important for recollecting information after any reasonable period. If something&#x27;s not used by at a later point, is there really a point to remember it? Of course, there&#x27;s the joy of remembering things just for the sake of it which I&#x27;m not discounting. But party trick trivia for some reason has always lasted longer in memory than essentials :-) beats me as to why.
marssaxmanabout 7 years ago
I would put the information into practice - in your case, by attempting to build a compiler. The exercise makes the knowledge concrete. Think of it as setting yourself a test.
评论 #16863055 未加载
malux85about 7 years ago
They key to memory is spaced repetition. I do it like this:<p>- Read the content - Make 1 &#x2F; 2 sentence question, or just write the title - Do something else (coding) for 10 mins - Come back to it, if you cant remember it, read it again, if I can remember it, keep reading.<p>At the end of the day, review the notes, and move all the bullet points to another list.<p>Come back to it tomorrow.<p>Keep sorting and moving content up and down the lists until your remember it.<p>I use the mac notes app for this, because then it auto-syncs with my ipad and phone. If I&#x27;m on the train, or in the uber, I can get my phone out and do a quick memory jog
hackermailmanabout 7 years ago
As noted in other comments, if you build something as you learn the material you&#x27;ll remember it. My learning strategy is usually:<p><pre><code> Think up idea No idea how to implement it Look at university lecture notes for background material Read lecture notes, read assigned text Implement idea while I read the text and notes Notice my implementation is poorly inefficient Read more advanced notes&#x2F;papers to optimize Rewrite idea, success! </code></pre> This is exactly what I did when I read <i>Modern Compiler Implementation in ML</i> by Andrew Appel. This was the course I used <a href="http:&#x2F;&#x2F;www.cs.cmu.edu&#x2F;~janh&#x2F;courses&#x2F;411&#x2F;17&#x2F;schedule.html" rel="nofollow">http:&#x2F;&#x2F;www.cs.cmu.edu&#x2F;~janh&#x2F;courses&#x2F;411&#x2F;17&#x2F;schedule.html</a> though it was an earlier version. Afterwards I collected a lot of compiler optimization notes, like here <a href="https:&#x2F;&#x2F;www.cs.cmu.edu&#x2F;~15745&#x2F;syllabus.html" rel="nofollow">https:&#x2F;&#x2F;www.cs.cmu.edu&#x2F;~15745&#x2F;syllabus.html</a>
chrisshrobaabout 7 years ago
On the topic of spaced repetition, have a look at Anki. It&#x27;s a great tool for aggregating all the stuff you want to remember.
dynamoaabout 7 years ago
I think what you are describing is really how to learn. It&#x27;s not that you require a test in order to remember material, you just need to implement what you have read in order to reinforce what you have read into memory. Humans remember things a lot better when you have an experience to associate with it.
tugberkkabout 7 years ago
This may not be the answer you&#x27;re looking for but I&#x27;m going to give my 2 cents. This is actually the same with every book we read or subject we study. It is impossible to remember everything all the time. It is actually the deductions we do while studying &#x2F; reading. That is what improves our brain and thinking ability.<p>Thing we call knowledge will go away, we will always check books and websites if we are not using it frequently. I really like what Einstein said: Never memorize something that you can look up!
gnodeabout 7 years ago
I&#x27;ve always found the key to learning is to make the information relevant to you (although in most cases the information is relevant to me before I learn it). Personally, I don&#x27;t find formal testing &#x2F; deadlines have helped me learn things, other than as a reason to study.<p>In the case of compilers, I recommend you build one, or at least deeply consider how you would, as a driver to put the information into use. An an exercise, you could think about what language would put as many concepts in the textbook into use as possible.
bewe42about 7 years ago
Summarize in your own words (and drawings) without looking into the textbook. Even better, explain to someone else what you have learned. Best would be to find a study partner, if that&#x27;s not possible try to write for the public.<p>Learning occurs when we relate new material to what we already know. Build your own internal knowledge map.
ajeet_dhaliwalabout 7 years ago
Isn’t a better question how do you remember things after the test? When I was in school on the day of the test I might get x% , two weeks later same test would have been x&#x2F;2% and probably x&#x2F;4% the week after. The reinforcement is key, rather than any test it’s working on personal projects that apply the knowledge that does it for me.
sharemywinabout 7 years ago
Read a section of it. put it down. and then think about it. would you do it that way? what would you do different? how can you benefit from this? where could this be useful?<p>You really want to know it. Do a project with it.
poushkarabout 7 years ago
<a href="http:&#x2F;&#x2F;nywkap.com&#x2F;learning&#x2F;effective-learning.html" rel="nofollow">http:&#x2F;&#x2F;nywkap.com&#x2F;learning&#x2F;effective-learning.html</a>
tytytytytytytytabout 7 years ago
&gt; How do you remember things without tests?<p>I study... It&#x27;s not the tests that help me remember things, it&#x27;s the studying and working with them.
lhuser123about 7 years ago
There are very good answers here. One way I think about it is this : if is not needed, it will be deleted.
jxubabout 7 years ago
Being curious, what&#x27;s this textbook?