Live data from Hacker News

Ask HN: How do you go from being an average developer to a great one?

news.ycombinator.com

1–10 of 15 posts

Ask HN: How do you go from being an average developer to a great one?

#1
An average developer is probably one who can write code, solve issues by looking at stack overflow, intermediate with a programming language. But how do you become someone with great skills who is respected in the industry. One who works at places like google, twitter or facebook and can crack interviews without preparing for weeks. Solves algorithms and other CS questions with complete confidence. I believe the biggest answer here is probably practice and I agree, but is there someone who has gone this route? Please share your thought,resources,advice. Thanks !!

Re: Ask HN: How do you go from being an average developer to a great one?

#3
A lot of reading blogs, articles, etc. online, and a lot of time spent in your spare time working on projects. Also working on things that are new and challenging to you. Also if you come across something you don't understand while reading and article or working on a project don't just skip over it, spend the time to really understand the concept.

Re: Ask HN: How do you go from being an average developer to a great one?

#8

Apply Richard Hamming's golden advice from "You & Your Research" to your career. 1) What are the most important problems in your field? 2) Are you working on ONE of them? 3) Why Not?

One of the best pieces I've ever read.

http://www.cs.virginia.edu/~robins/YouAndYourResearch.html

Suggestion: use readability

Re: Ask HN: How do you go from being an average developer to a great one?

#9
As you noted, the biggest thing is practice. But here are a few specific tips that I believe significantly improved my programming ability:

1) Try to get the implementation 100% correct on the first try. I don't mean that you should implement the whole system in one go, but the part you implement should do exactly what you want it to do (i.e. no typos, mixed up variable names, etc.). At first I thought this was a bit harsh, but it was amazing how much debugging you can avoid with a little more focus in the beginning. Also, it forces you to adopt good coding practices and make sure your algorithms are fully specified.

2) Don't tolerate tedious work. If there's any part of your workflow that's tedious, spend a lot of effort trying to minimize it. Some examples of things you might do: write a script, refactor your code, use a better editor, use a different programming language. You won't learn much from changing 100 variable names to camel-case, other than how painful it is. You will learn something from writing a tool to help you do that.

3) Think about how various libraries and frameworks you use are implemented, especially if they have features that seem like "magic". Try to reverse-engineer their design, or take a look at their source code (if available). This is a natural way to gain exposure to new ideas.

Regarding more "theoretical" subjects like algorithms and data structures that you might need to know for interviews, you could practice on programming contest websites (e.g. www.codeforces.com) or read some textbooks. However, in my opinion, those are not nearly as important for a software developer as the three things mentioned above.

Post reply on HN