Ask HN: What is your best way to learn a new programming language?
31–40 of 45 posts
Re: Ask HN: What is your best way to learn a new programming language?
#32Re: Ask HN: What is your best way to learn a new programming language?
#33Re: Ask HN: What is your best way to learn a new programming language?
#34There are lots of aspects of that learning experience that I think are worth repeating:
- social: we all had to figure out GOPATH together!
- playful: it's clearly a toy which means you have the freedom to explore, goof off, stretch yourself, and be creative
- comprehensive: it actually covered a ton of pertinent Go knowledge: goroutine, networking, interfaces, chans, select, etc
Re: Ask HN: What is your best way to learn a new programming language?
#35Re: Ask HN: What is your best way to learn a new programming language?
#36Re: Ask HN: What is your best way to learn a new programming language?
#37I had the same question when I wanted to learn C++. I was already quite practiced at Java and had written C and had read books on C++ off and on for years, but I still could not program in C++. So I got a copy of Stroustrup "The C++ Programming Language" and started to do his exercises, but the author clearly had never done them himself, some were quite long and tedious and did not teach me anything (never put exerci…
Re: Ask HN: What is your best way to learn a new programming language?
#38All the other answers I've read so far have been good, but do not explicitly mention a key factor that has helped me learn so much. Do your damndest to find a person more experienced with you in the language that can offer a code review after you create a mini-project or otherwise contributed to a codebase. I've learned alot on my own but having an objective person who understands the language better & can point out…
Do you know of any website doing this? Similar to language tandems where each person brings something to the table.
Re: Ask HN: What is your best way to learn a new programming language?
#39I try to avoid example code snippets, since I want to figure it out myself.
Oftentimes when reading those examples everything seems to make sense, but when I'm faced with repeating what was shown I get stuck.
So now I avoid them completely and try to figure if out myself.
Re: Ask HN: What is your best way to learn a new programming language?
#40Of course I forget all the details, that's what books are for. It does seems more effective than just trying to map what I know from other languages into the new one.