vote up 3 vote down star
2

There are many technical books that become thinker and thicker and the pressure from the technical society is more and more to read them and remember many concepts described in them. But it's so hard to do it. I have only a few hour a week to read them and when I reach the middle of the book I forgot most of what I've read at the beginning, because lots of time passed. If I go back, I'll just re-read the same stuff over and over, never going past 50% of the book. So, even after I finished reading a thick tech book I forgot most of it. How do you remember all that stuff? I had a talk in my University on how to do it. They advised to use some cards with basic info so that you can remember the details when you look at it. Do you use such cards or do you have other ideas how to do it?

flag

should be wiki? not sure – Fredou Jul 30 at 1:43
1  
meta.stackoverflow.com/questions/392/… – Sam Saffron Jul 30 at 1:55

10 Answers

vote up 10 vote down check

You put what you're reading into practice. It will sink in remarkably fast.

Generally, technical books come with lots of little example snippets of code or exercises. Do them. But after you've done them, think about where you can apply those concepts in code you've already written. Go back and refactor with those ideas in mind. Once you see how it can work in a real live project, it will be burned into your brain.

link|flag
1  
+1 create something that actually works using what you're reading, as you read it. It will stick with you for a long time. – Rex M Jul 30 at 1:43
vote up 1 vote down

When starting to learn Japanese, I learned the Kana & Katakana (=~ "The Japanese Alphabet") mostly by the way Jaimes Heisig did.

http://www.amazon.com/Remembering-Kana-Hiragana-James-Heisig/dp/4889960724

In essense, short studying time, the use of mnemonics and many breaks to let your brain catch up with what you've learned. Especially since this let you learn stuff the first time, and you do not have to repeat it over and over.

This has worked for me with many other techniques since including programming concepts. Oh, and do the exercises.

link|flag
vote up 0 vote down

Though I completely agree with learning by doing principle, my experience tells me that it is not enough.

What I remember best are thinks that I do need to use. The motivation behind the practice is essential for me.

If I don't need to use Cobol, I won't remember it even if I've done my homework. If I need to use Objective-C, I will learn and remember it very fast and efficiently.

Moreover, remembering is no longer mandatory. Accessibility of resources is such that finding them is more important than learning them.

link|flag
vote up 0 vote down

To write a review on Amazon or on your blog might also be a good idea. It makes you think critically about the book, distilling out the good parts and, as a bonus benefit, it may be useful to other people.

link|flag
vote up 2 vote down

Jotting down the points in a book which u find very important helps u remember things faster .. i've felt when u write u retain !!!

link|flag
+1 for when you write you retain – this.__curious_geek Jul 31 at 13:52
vote up 0 vote down

Best way to learn is by doing. You'll obviously retain something if you read an entire book, but you'll retain even more if you put what you just learned into practice, by writing a little side project - consider it a kind of homework. Even accessing the information in different ways can help you remember. When I go through a book, I'll take notes, longhand, in a spiral notebook. Just the act of writing down the notes is forcing my brain to digest and work with the information, repackaging and summarizing it. Even if I never read the notes again, I'll still remember the material. Other people are big advocates of learning by teaching - write a blog post, or a white paper for your company, or give a stand-up presentation at your next user meeting.

link|flag
vote up 2 vote down

alt text

Nobody is rain man except for rain man. If you do not practice it you will not learn it.

link|flag
vote up 1 vote down

A really good coder once told me...

If you read something in a technical book you don't understand, do something with that concept 5 times in code.

Make 5 separate, little, non-related one-off projects. By the second time around you will probably understand it, and the other 3 are just to get your fingers used to typing it. Don't proceed further in the book until you do.

link|flag
vote up 2 vote down

I read a chapter, wait a while, and go back through the chapter with a highlighter. Then, if I ever have to go back in the book, I can just read the highlighted nuggets.

It's important to remember that what works for me, might not work for you.

link|flag
vote up 0 vote down

I'm with Jeff and I think programming is like craftsmanship and since I'm like you, I just try to do my best when i do stuff and when I'm stuck i ask around or on google or here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.