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? |
||||||||||||||||
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
Social Life |
|||
|
|
|
|
Participate in problem solving, analysis, and brainstorming with other programmers. This is so important, and why Stackoverflow is actually GOOD for your productivity. Another thing I'm not seeing in the replies... Write tests. I don't always follow strict TDD or BDD practices, but writing tests helps you understand the code better, and it will absolutely find problems in your code (that you thought was solid.) |
|||
|
|
|
|
Don't try and fix every bug. Pick your battles. |
|||
|
|
|
|
Highly effective programmers create maintainable products that other people like and purchase. |
|||
|
|
|
|
Maintain a desk/workspace that suits you. Whether this means a pristine desktop or piles of notes and books everywhere, the physical environment that you work in is very influential to how you do work. |
|||
|
|
|
|
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 |
||||
|
|
|
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! |
|||
|
|
|
|
Create a comfortable work space that suits you. Whenever you don't feel like working do something else that cheers you up and brings your inspiration back.I don't know maybe you should take a walk, drink some coffee, talk to somebody it's up to you. I think this is the most important habit one should have on their minds. Because at some time you feel like not working at all if you don't do anything about it time will pass by and your work day will be over without doing anything worth in the office. |
|||
|
|
|
|
Can code without a mouse, and know a lot of tips/hotkeys to use his operating system 2 or 3 times faster than a basic user. |
|||
|
|
|
|
If you mean productive too, there are a lot of great tools. Two Windows tools that I use:
I would recommend The Productive Programmer as well. See, all the way to program, from starting the SO to the IDE can save you time and make you much more productive. Cant imagine working without multiple clipboards. |
|||
|
|
|
|
Either be Jeff Atwood, or read his blog: http://www.codinghorror.com/blog/ Long footnote: Jeff Atwood is a creator of Stack Overflow, but I've been reading his website long before SO came into being. The things he discusses, and the way he presents them, provide for the best representation that I'd give to anybody who asked "what should I be doing?" |
|||
|
|
|
|
Only a lot of refactoring and Unit tests can save your soul. |
|||
|
|
|
|
|
|||
|
|
|
|
I don't see these 3 very basic skills mentioned here in this order:
|
|||
|
|
|
|
|
||||||||
|
|
|
If a Windows user, DITCH, FORGET, ABANDON Windows Explorer. Start using a tool like Total Commander. "Total Commander is a shareware Orthodox File Manager (OFM) for Windows. Some features include a built-in FTP client, file compare, archive file navigation, and a multi-rename tool with regular expression support." (wikipeida) I curse every moment I have to spend looking at fellow developers while they switch between a dozen of WE windows, drag-and-dropping, right-clicking, figuring out how to get simple tasks done (like looking inside a JAR file or previewing the contents of ANY file, etc...). It takes them forever to achieve what I can get done in seconds. And on countless occasions, my colleagues barely noticed when and how did I do dis-or-dat. "Neat," is what they say when I show them how effective I can be with TC. |
|||
|
|
Try to solve problems in the clearest, simplest way. Don't waste time prematurely optimising. Only optimise something after your program is proven to be too slow and your profiler has isolated the root cause. Comment everything you do clearly. You'll thank yourself a month later when you have to revist the code and work out what you did! |
|||
|
|
|
|
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. |
|||
|
|
|
|
|
|||
|
|
|
|
Programming is about... Keeping track of all the detailsWhile programming you will see things in the code base and think about things that, if you tend to them there and then, would distract you. This can be anything: telephone numbers to call, noting that a class needs refactoring or bug fixing, the next three things to do, test data, file names you also need to check, and what to talk about in Scrum. These other things are important, but it's also important to complete whatever you're doing right now. Keep track of all these things in a journal / a todo list / a scratch pad / a notebook / whatever. This can be as simple as a text file where you separate your notes with some newlines. Actually, the simpler the better. Key here is the ability to extremely quickly offload your thoughts so you can come back to them later. Sometimes this isn't the right place or format to store this information, but it's important to have a default place to write things down. You can always move it to a Wiki, shell script, document, source file later on. The same way of working can be used for shell commands, SQL statements or anything else that would be more effort redoing the next time you need it. You're essentially cheating by copying the solution. From yourself. Personally I use Emacs org-mode which, amongst other things, is an outliner. This way I can very easily keep track of which things are todo, just idling, and done. I can easily keep the important things expanded and visible, and hide things thath are irrelevant at this point, or already done. |
|||
|
|
|
|
Know thy libraries - designing towards and using preexisting functions will increase the productivity and reduce the likeliness of bugs, just make sure that the libraries are good, and you've read the All the related the doc Before. |
|||
|
|
|
|
Make it go, then make it better. Avoid premature optimization. Comment as you go along. Use unit tests. Each building block needs to be solid before integrating it. When integrating add one thing at a time. When debugging change one thing at a time. |
|||
|
|
|
|
IMHO, in addition to all the above given tips like - keep up to date on technologies and trends, change of attitude (keep the end in mind before you start). I strongly suggest a time tracker tool plus a few simple diversion techniques (read Browser addons) to keep one from being distracted by the whole plethora of sites we are addicted to. |
|||
|
|
|
|
Set up a black list for time-wasting web sites. |
|||
|
|
According to this article, heavy drinking is something every programmer should practice regularly. |
|||
|
|
|
|
|
|||
|
|
|
|
Learn something new everyday. When you don't have time constraint, try to use a new tool to do the job. Use the right tool for anything else. Find a proof that it is the right tool. Don't take for granted that your code is foolproof. You don't and can't know all. The only advise that I should give is accept that programmers have flaws. Just hope that your team doesn't have the same flaws. And work on it. Reread the 7 (now 8 habits) |
|||
|
|
|
|
Some of the habits posted so far are fantastic. Here's mine: Take mental breaks and listen to the perspectives of other programmers. There's a scene in the movie Pi where the character Saul, an old mathematician, describes the story of Archimedes wrestling with the problem of measuring the mass of gifts given to the King to determine if they have real or fake gold in them. Frustrated, his wife tells him to go take a bath and relax. Archimedes takes a bath and solution occurs to him while soaking in the tub. Displacement of water can measure mass. He famously shouts "Eureka!". Saul finishes the story and asks the other character, Max, what the moral of the story is. Max replies: "that a breakthrough will come". Saul replies "Wrong! Listen to your wife, she will give you perspective! You need to take a bath!". In other words, brute force rarely works well on finding the solution to vexing problems, but taking a break and discussing the problem with other folks, or even discussing something else, can do wonders for the background processes of your brain. Many programmers here would agree there are diminishing returns to working extremely long hours and killing yourself while trying to be the hero programmer. Sometimes you just need to take a bath :). |
|||
|
|