What is the most effective thing you did to improve your programming skills?
1–10 of 95 posts
Re: What is the most effective thing you did to improve your programming skills?
#2Re: What is the most effective thing you did to improve your programming skills?
#3Re: What is the most effective thing you did to improve your programming skills?
#4Program 16 hours a day. 7 days a week. Then sit and beam at my work.
PS don't program 16 hours a day. I had put ice packs later on my arms from the pain.
also get a super monitor, awesome keyboard, and a comfortable chair.
Re: What is the most effective thing you did to improve your programming skills?
#5EDIT: I have a comp-sci degree; it taught me very little about 'programming'.
Re: What is the most effective thing you did to improve your programming skills?
#6Re: What is the most effective thing you did to improve your programming skills?
#7Write code with testing it in mind. Testing is often introduced far too late in the programming learning process, if at all.
Even any tutorials online or in a user group - it's never done. It's always talked about. I come from a engineering background so I really wanted to programming the "right" way. But here is so little code that includes testing that I can use to "tutor" myself. Even opensource.
I find this very odd.
Re: What is the most effective thing you did to improve your programming skills?
#8Write code with testing it in mind. Testing is often introduced far too late in the programming learning process, if at all.
Every book I read by a real-world programmer - never does this. They always put testing in a separate chapter or never address it at all, example: programatic programmers. Even any tutorials online or in a user group - it's never done. It's always talked about. I come from a engineering background so I really wanted to programming the "right" way. But here is so little code that includes testing that I can use to "tu…
Source code control, deployment and testing are all baked into the tutorial from the very first section where coding is started. It's also available in print form.
Re: What is the most effective thing you did to improve your programming skills?
#9 * become more sensitive to your daily pain points and
move to eradicate them
* read other people's code
* before sitting down to build anything, think:
"is there an easier way to solve it?
* learn about good architecture and engineering
practices, but don't worry about them until
a) you know what you're building
b) they're a problem.
* learn programming languages in different
programming paradigms.Re: What is the most effective thing you did to improve your programming skills?
#10Earlier quoted context omitted.
Every book I read by a real-world programmer - never does this. They always put testing in a separate chapter or never address it at all, example: programatic programmers. Even any tutorials online or in a user group - it's never done. It's always talked about. I come from a engineering background so I really wanted to programming the "right" way. But here is so little code that includes testing that I can use to "tu…
Have you looked at this Rails tutorial? http://railstutorial.org/chapters/ Source code control, deployment and testing are all baked into the tutorial from the very first section where coding is started. It's also available in print form.