vote up 2 vote down star
1

I like/need to learn new programming related topics. But sometimes i feel "slow". Is there any tips or ticks to learn things faster?

flag

9 Answers

vote up 0 vote down check

I recommend trying to understand how you learn, and go that route.

If you're a good theoretical/book learner (like me, it sounds like you're not) you can just read. If you find you need concrete examples, writing an actual usable program might be the only way to really understand the concept. For others, sample code or a contrived program or module might be good enough.

link|flag
From my point of view:read, try some examples, read again, start to understand...and repeat. After a couple of trys you will get faster in learning and a better programmer. Learn to handle given documentation... – bastianneu Jul 13 at 15:33
vote up 0 vote down

I learn best when I already have a problem to solve. If you know what you are trying to accomplish, then it adds some context to any text that you read. Depending on your own learning style, you can bookmark or take a note of parts of the text you think were important or relevant. Some people prefer to code and tinker. The popular solution here seems to be to read enough to understand how to solve one part of your problem, implement it, and then read more if you get stuck. An excellent approach, unless you are reading a book for beginners which will tell you how to do something the wrong way before it mentions the best way.

link|flag
vote up 1 vote down

I often find it helpful to learn enough on my own to be able to ask some intelligent questions. Then I find a friend or colleague and pick his/her brain.

For me, the interaction works better for learning new concepts than sitting with a book or a keyboard, partly because it's tailored specifically to my situation and needs. I come away with a head start on the particular task I'm working on. And as a bonus, I also have the benefit of someone else's acquired tricks, tips, lessons learned, and advice for avoiding the pitfalls I'm likely to encounter.

Then I go back to the keyboard to test what I think I know. :-)

Good luck -- and enjoy!

link|flag
Thats a good idea, but sometimes theres no one to ask for help. – Victor Jun 15 at 15:35
@Victor: There's always SO. :-) – Adam Liss Jun 21 at 2:17
vote up 1 vote down

My method of learning a new technology is simple but works very well for me. As a result I have quite a library! I usually buy the top three (sometimes more) books on a given topic. Since I'm some what of a slow study I read chapter one in all the books. After I have read a chapter or two in all I let the books compete for my time often one of them will speak to me more directly then the others. I often end up finishing only one of them but reading two thirds of another and little of the rest. This may be ineffective for your learning dollar but it works well for me. As a mostly self taught developer this method has stood me in good stead for many years.

link|flag
Interesting technique. – Victor Jun 15 at 15:33
vote up 0 vote down

If you are an expert in at least one language already, there's little point in buying (or reading in full) introductory texts. If anything have them for a reference. Instead find a book that teaches what is special (i.e. the idioms) about the language you are trying to learn, especially if it is similar to one you already know. (e.g. If you know C++ and you want to learn Python pick up a book like Dive Into Python).

Beyond that, as others have noted, learn by doing. Ideally not with toy programs.

link|flag
vote up 1 vote down

In addition to the other advices, don't be afraid to ask questions when you are stuck and have spent some time/effort solving the problem on your own.

Obsessively trying to solve a simple problem on your own for a couple hours wastes a lot of productive time that could be spent on learning new topics.

link|flag
+1: Great advice! – RichieHindle Jun 14 at 18:54
OTOH, if you have the luxury of time, playing with "simple" problems can provide invaluable insights that you'd miss otherwise -- sometimes, learning what happens when you do the "wrong" thing is worth more than getting it right. I learned TCP/IP in the "Before Google" era. My only resources were the Stevens books, a sniffer, a good embedded debugger, and my equally network-illiterate but very sharp colleagues who sometimes spent days puzzling through "simple" problems with me. Today, I recognize those same problems and regularly perform small diagnostic miracles for TelCos, the DoD, etc. – Adam Liss Jun 15 at 3:15
vote up 0 vote down

Because of human nature the easiest way to learn pretty much anything for us is by example.

Pick any practical problem with a sample solution and understand it, then try to implement your own version looking at the sample if you need to.

link|flag
vote up 0 vote down

pick a sample code and play around with it , when stuck you will strike a nice tutorial by then and would easily locate it

link|flag
vote up 15 vote down

Learn by doing. For instance, never read a whole book (or maybe even a chapter of a book) without then going and coding something using what you've read.

The human brain remembers what it did far better than what it saw or heard.

link|flag
Yes, thats good advice. – Victor Jun 14 at 18:21
3  
I always tell people learning a new concept to keep in mind a project they wouldn't mine see completed that uses what they are learning. – llamaoo7 Jun 14 at 18:52

Your Answer

Get an OpenID
or

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