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?
|
81
|
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? |
||||||||||||||||
|
|
|
Social Life |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
Keep in mind "80/20" rule and constantly ask your self: "Do I really want to do this that way?". |
|||
|
|
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. |
|||
|
|
|
|
Adding to what has been said already...
|
|||
|
|
|
|
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. |
|||
|
|
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) |
|||
|
|
Don't have mercy to delete all your source code! |
||||
|
|
|
Habits? Okay, here are my suggestions for the 7 most important habbits of a programmer:
Most of the times a solution for a problem is much easier than u would expect. Try to find this easy way.
If u stop being critical to yourself, u will stop making improvements.
Everyone makes mistakes. Dont try to abadon them.
Just because u know that you should write comments, use principles like KISS or somethin else doesnt mean that u are a good programmer, until u do it.
especially at the moment, its important to be interested in new technologies, if u are not, u wont be going on as a developer for too long
very important. no coffee, no ideas^^
more than 6 hours of sleep are lethal for your programming skills :D |
|||
|
|
|
|
Take ownership, willing to accept mistakes, positive attitude.. Follow principles like DRY, KISS.. Never stop learning.. |
||||
|
|
|
|
|||
|
|
|
|
“Try not. Do, or do not. There is no try.” - from my buddy Yoda. |
||||
|
|
|
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". |
|||
|
|
|
|
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. |
||||||||
|
|
|
nomenclature / language and terminology. how you name your classes and methods / functions is a critical measurement for how well you yourself understand your design. AND how easily others will be able to interpret it... |K< |
|||
|
|
|
|
Be a pessimist |
|||
|
|
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. |
|||
|
|
|
|
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". |
|||
|
|
|
|
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. |
|||
|
|
|
|
|
||||
|
|
|
|
||||
|
|
|
Questioning your own solutions and looking for ways to do things better. |
|||
|
|
|
|
From my experience:
And
|
|||
|
|
|
|
Discuss what you have modelled/written/thought with others, even though (and most likely if) you are sure of what you did. |
|||
|
|
|
|
Always willing and able to learn... If you don't keep up with the times, you won't be a developer very long. |
||||
|
|
|
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. |
||||||||||||||||||||
|
|
|
|
||||||||
|
|
|
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. |
||||||||||||||||||||
|