I guess that many of you have read 7 habits of highly effective people. They're great, but still too general.
Can you suggest some good habits of a highly effective programmer? The habits that make you more productive in work? Faster in learning?
|
80
|
I guess that many of you have read 7 habits of highly effective people. They're great, but still too general. Can you suggest some good habits of a highly effective programmer? The habits that make you more productive in work? Faster in learning? |
||||||||||||||||
|
|
|
Don't be satisfied with an apparent fix; full understanding is the standard. |
||||
|
|
|
Learn how to close SO and get to work... Seriously though, working with a computer brings around a lot of distractions, and that is something I fight a quite a bit. One solid habit that good programmers have is that they work on focusing. I don't personally believe that this is easy for any programmer, so it becomes a habit that you have to embed in you. |
||||||||||||||||||||
|
|
|
The 'original' 7 habits adapted for programmers... Be Proactive: Take initiative, both in understanding and in problem solving. Begin with the End in Mind: What problem are you solving? What is the best solution? How will you know when it is solved? Put First Things First: Set priorities. Use good judgement. "Premature optimization is the root of all evil" - Knuth. Think Win/Win: During design/collaboration, what is the best solution for all parties involved? Seek First to Understand, Then to be Understood: First understand the problem and/or the person for whom you are solving the problem. Synergize: Work with others to gain a greater understanding. Sharpen the Saw: Always be learning. Learning about new technologies. Learning about the business, and the business of software. |
|||
|
|
|
|
Always willing and able to learn... If you don't keep up with the times, you won't be a developer very long. |
||||
|
|
|
Master use of Google. It's a programmer's best friend. The quicker you can find what you're looking for, the better. Edited for clarification: What I was really getting as was the ability to be resourceful and self-sufficient. Google is just the first tool that came to mind. I wasn't implying that one should use Google to build their application, but, as an example, the ability to find a specific snippet of code quickly can come in handy on a few occasions. |
||||||||||||||||||||
|
|
|
|
||||
|
|
|
close and kill any e-mail reader program/clients that really saved lots of time |
||||
|
|
|
From my experience:
And
|
|||
|
|
|
|
Don't assume it - prove it. In other words: don't base your work on assumptions. Make sure the foundation is sound. |
||||
|
|
|
Understanding that the answer is always "It depends". |
|||
|
|
|
|
|
||||||||
|
|
|
|
||||
|
|
|
“Try not. Do, or do not. There is no try.” - from my buddy Yoda. |
||||
|
|
|
Keep in mind "80/20" rule and constantly ask your self: "Do I really want to do this that way?". |
|||
|
|
Minus promitte, nivus perfice. Loosely translated: under promise, over deliver. Your customer wants a widget that does x; promise him x, but give him X, a better, more configurable widget that solves a few problems that are related. |
||||||||
|
|
|
Take ownership, willing to accept mistakes, positive attitude.. Follow principles like DRY, KISS.. Never stop learning.. |
||||
|
|
|
split problems into smaller, more understandable tasks. try to design a solution in your favorite editor about the problem before coding - get rid of the feeling that if you do not code you are not being productive always have unit tests, its a life saver. try to keep things as simple as possible, verify this by explaining your design to somebody else - doesn't even need to be a programmer! never be afraid to ask questions never assume anything whether it is assuming knowledge by manager or end customer don't take verbal requirements, all requirements need to be written (even though they may change, it is good to have them written down to better understand them) |
|||
|
|
Edit: For me, it means, don't overdo something. Make only what's needed to be done and trust yourself for the future. Also, keep the complexity at the bare minimum. For example, don't use interfaces or proxy or whatever pattern you have on your mind on a beautiful day just for the sake of it. Keep it simple ! More info: SO: overengineering-how-to-avoid-it |
||||
|
|
|
Dig deep into the question when a client requests something. Don't assume because they ask for a program they actually NEED a program. Be willing to ask questions until you get down to the actual business problem they want to solve. Then look at ALL the possible solutions, including those that don't even require a computer. Not every problem is a programming problem. -R |
|||
|
|
|
|
If you're interested in getting some books on general development best practices, I suggest these: They're much quicker reads than some of the traditional best practices texts (Code Complete, I'm looking at you), and offer specific techniques that can help you improve. |
|||
|
|
|
|
Produce Value Don't spend time working on something that doesn't have business value. For example, doing something in the latest fancy technology just because you want to, when there's a quicker way to achieve the same result with well understood tools. Note, I'm definitely not saying don't make progress and don't move forward. Effective programmers don't get carried away with the technology and the means of producing something as a thing in itself, they get excited about actually producing something that's of high value to someone. Focus on this, and objectively reflect on whether you're currently doing the thing that will produce most value. Programming takes a long time, so there isn't time to waste working on something that isn't the most useful thing you could be working on! |
|||
|
|
|
|
Use other ways to visualise a problem - I've lost track of how many times I've been stuck on something, or procrastinating about something complicated, and found that by just drawing a simple diagram or flow chart of the code I was able to quickly see what the problem was, or how I could improve my code. I think the problem is that because I spent 8+ hours a day on a keyboard, I forget to pick up the pen/pencil next to me occasionally. |
|||
|
|
|
|
The best habits of highly effective programmers have nothing to do with programming. People assume that programmer's grow by learning new algorithms and languages. This is true to an extent, but let's not forget that problem solving is the basis for our entire profession. In my opinion, the best habit of a highly effective programmer is to be well rounded such that they can learn how other people solve problems that are unrelated to the programmer's field. Get out and take photographs, learn an instrument, become an arm-chair nutritionist. There are many things that we all can do that will help us grow in ways that we would other wise have not found. |
|||
|
|
|
|
Obligatory Programmer-Fiction References - Caffeine and Hot Pockets Serious/Semi-Serious Answers - Never willing to settle for what you know at this very moment. |
|||
|
|
|
|
Discuss what you have modelled/written/thought with others, even though (and most likely if) you are sure of what you did. |
|||
|
|
|
|
Questioning your own solutions and looking for ways to do things better. |
|||
|
|
|
|
Learn your tools - especially the functionality in your IDE that will help you be more productive - the debugger, refactoring shortcuts, profiling tools. These are small investments which will pay off big in productivity. |
|||
|
|
|
|
I don't know if this qualifies as a habit, but communication is key to being an effective developer, imho. If you cannot communicate your ideas, intent, and even source code to other people, your skills will never be fully valued. To get hired by a good company, work on a contributing team, and work on worthwhile projects, you need to be able to deal all sorts of different people. Unfortunately, many of us, including myself, are the epitome of introversion. Effective developers seem to be able to conquer this. |
|||
|
|
Be accepting of change I've suggested several improved processes or ideas - like let's try to organize our Classes uniformly, or let's add security testing to our standard testing procedures. But I'm often met with a "we've always done it this way" or a "you can't expect everyone to follow that rule" response. Devs get stuck in their ways too often and it can bog down progress. Especially when people have some long-standing but out-dated techniques. For example, many of our projects continue to get developed in classic ASP, because "you can't expect everyone to learn .Net". |
|||
|
|
|
|
Don't have mercy to delete all your source code! |
||||
|