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. |
||||
|
|
|
DON'T BUILD PROTOTYPES! Sorry for shouting that out but I can't stress that enough. Reason: the prototypes usually become the real product. When you code don't take shortcuts thinking - "this is just a prototype, it'll never be used in the 'real world'" - hehe... year right! You'll regret it later. Or more like, someone else will be cursing at your code in the future! The joke is, that person might be you several years later when you have forgotten what you wrote. :) |
|||
|
|
|
|
Going to bed early? |
|||
|
|
|
|
|
|||
|
|
|
|
Take back control over your time and your tasks to maximize your efforts. I'm just starting with the Pomodoro Techique upon the suggestions of my friends at our XP User Group. |
|||
|
|
|
|
Don't give up. |
|||
|
|
|
|
Attaining this requires a lot of willpower, but works fine and does wonders:
The strongest part is actually closing your email, im, news reader and social site while working, and opening it just for the time you are going to focus on it. If you can work on your own machine and don't need the internet connection, the simplest way of achieving that is to just unplug the network cable / turn off the wifi. Works wonders! :) |
|||
|
|
I have seen real good programmers. Most of them have following habits/traits - 1.) Learn more than 2 programming languages - e.g. 1 structural (C), on OO (C++/Java), one dynamic language quick but powerful e.g. Perl, Bash, Python, which enables to do them tasks around their main project task. 2.)They Are really good in understanding others code. They almost dive into any unknown code and figure it out to a point where they can use it,change it,re-write it. 3.) Consider no work as small/trivial. Do every activity with equal seriousness and thoughtfullness. 4.)Have a very large working memory, which enables them to keep many things which they are new to, or dont know in thei 'working memory' so that they can apply those things more and more, and in the process they get it clearly understood or they can find a reference to these concepts in some other place from which they understand it. 5.) Tremendous confidence in their abilities which enables them to take up any unknown task, difficult task and yet they can apply their knowledge and skills and deliver in it. -AD. |
|||
|
|
|
|
Doubt your own solution. Try to find a better one. |
|||
|
|
|
|
Always be up to date. Follow blogs, read websites.. |
|||
|
|
|
|
Cope with procrastination, roll up your sleeves, and do the job. |
|||
|
|
|
|
Planning and preparation is always a good start on the road of being a good programmer. You need to be able to block out the distractions that are all over the internet and modern life, stuff like youtube, gaming, IM etc. Then you have to know what it is you want to achieve and work out how you are going to do it, oh and finally plan in some breaks too ;-) |
|||
|
|
|
|
I cant said for myself That I am programmer with good habits or that I am good programer at all.But thing that always help me is sabr (patience), things cant happened over the night , And I sometime say to myself easy and slowly just do the thing as its going to be best, and does you remember how looks liked "win 3.1" when its cammed out and what we got now. |
|||
|
|
|
|
be adaptive to changes, and understand things really well. |
|||
|
|
|
|
I think we should focus on the simple things since being simple is beautiful. We should focus on managing our tasks, sleeping 8 hours a day, exercising, not multitasking, writing unit tests, automated builds, learning to use new tools, reading articles, writing blog posts, working on a side project, taking part in discussion boards and forums. These are all simple things that most of you already do! The main point is do what makes you happy! If C# is not for you try Ruby! In the end the more comfortable you are with your life the more effective you are as a programmer. |
|||
|
|
|
|
I found one Kent Beck’s idea from his Implementation patterns book really useful (does this mean I am highly effective programmer?), to paraphrase it: “Think in term of patterns for every single line that you write” He is not talking here about GOF or Design Patterns. These patterns are on a lot lower level. As I understand it, it’s like having a bunch of code snippets in your head. If you analyze the OO code you write, it mostly gets down to delegation, iteration, inheritance. |
|||
|
|
|
|
Its definitely the ability to concur the fear of change. From time to time a programmer faces the dilemma of rewriting code against patching. Patching is good for the short term goal of finishing the next feature quickly. Rewriting is good for the long term maintainability of the software which is obviously more important but less urgent. Most programmers will fear the change which may leave their code in an unsteady state for a couple of days (the scariest thing for a programmer). The best will delve into the change without fear and end up with code which is not patched but written cleanly as if its the first version of the code. These ones are more effective for the long run, and the ones you want to employ or work with. |
|||
|
|
|
|
Understand the technology you implent solutions on top of. |
|||
|
|
|
|
Have a moan with colleagues about how as developers were always going against the grain when trying to get things done! |
|||
|
|
|
|
Keep code simple. Simple "ain't" easy. Amateur code can often be identified by modules at all levels (including libraries, classes, methods, etc.) that try to do too many things. Ultimately a single task is enough, but there is room for some elaboration. When additional tasks for a module are discovered they should be refactored out into new modules. This is often scary or tedious (depending on how confident the programmer is) and so it is sometimes avoided. Deep nesting is another indication of overly complicated code. Some advocate using no more than one level of nesting. The important thing though is to examine why the nesting was introduced in the first place. It probably indicates multiple tasks depending on various conditions. Factor out those tasks to separate modules. The very difficult task of taking already complicated code and simplifying it leads to code that is less likely to have bugs, but more importantly to be far more maintainable. Future modifications to that code are much less likely to cause side effects. (Don't get me started on purposely using side effects :) This quote from the link sums it up. |
|||
|
|
|
|
Get the Source Control Religion - Having the flexibility to completely trash the code to try and idea and be able to get it back in a couple of seconds to something that works allows you to try wild ideas and not to care if they don't work. I know developers doing "Professional Development" (mostly that they are being paid to program) whose teams don't use any version control. Ever. It doesn't matter if you use git, mercurial, bitkeeper, Perforce, or whatever. Just do it! |
|||
|
|
|
|
Good ole hard work.. like everything in life. |
|||
|
|
|
|
Eating directly before your PC. |
|||
|
|
|
|
A highly effective programmer is one that programs the least amount possible. I call him the lazy programmer. The lazy programmer spends more time researching and designing to maximize code reuse and extensibility. The lazy programmer isn't compelled to go reinvent new code if there is something else that will fulfill the need. I've seen time and time again where projects are only concerned about the here and now without concern about the consequences of design choices and flaws. The lazy programmer looks to the future to solve problems today, so that he doesn't have to revisit them later. |
|||
|
|
|
|
DRY - Don't Repeat Yourself. Make it a habit to never easyily accept duplication in any form: - writing the same code twice - performing the same manual installation steps again and again - making documentation by copying the same content to several locations - stepping through pages of QA protocols before every release This principle first of all does not make you lazy - though this can happen :-) - but helps you to focus on automation, simplicity, consistency. Sometimes you are forced to enlargen your toolbox, which is good either. |
|||
|
|
|
|
One thing at a time. Multitasking kills productivity. Seriously. |
|||
|
|
|
|
Keep a daily todo list and leave a little and easy task as a "hook" for tomorrow (and maybe for after-lunch), to ease yourself getting back into the programming flow. |
|||
|
|
|
|
From the wall of a corporate building in Zurich:
I used PowerPoint to create an image from that. It's not my desktop wallpaper. |
|||
|
|
The best advice is probably
This includes not jumping straight into coding, talking things over with your colleagues (they may know stuff you don't - algorithms, libraries and stuff), consider if massaging the data you have a little may make your code much simpler. etc. Then some runner-ups:
Don't use the framework of the week because it does something in a new interesting/fun/challenging way, because then every project will have its own framework which nobody really knows and nobody WANTS to know. Keep it simple, it pays.
Decide on a coding convention and use it. We have Eclipse fixing imports and formatting the source on every save -> everything is always correctly indented and formatted. Saves time for the maintainers since things look the same everywhere.
The code should be clean and compile without errors and warnings. This gets rid of a lot of pesky problems usually showing up in late night hours. This naturally only works if the warnings were not just suppressed but actually fixed :)
This actually has more to it than it seems. One is that nested if's gets to get refactored into methods. Another that a lot of helper variables are necessary, and these can be given meaningful names. The third is that I personally think it is nicer to read and easier to understand. But this is for coding, not for habits. Personally I hear music while coding, and have a quiet office otherwise. I can only strongly recommend:
This is much more important than many think. Noise stress you... |
|||
|
|
|
|
Keep it simple ;) |
|||
|
|