vote up 10 vote down star
7

Hello everyone, I will first give a somewhat brief background before I ask my question to put it in context...

My first career was as an Electrician in the Navy for 8 years then followed by another 9 years of work as a robotic technician. During my stint as a robotics technician, I went back to school and earned my B.S. in C.S. with a minor in Computer Eng. I've been programming since I was 12 (I am now 39) and have learned quite well how to be resourceful and teach myself. School added a lot of theory to what I was doing and I am grateful for that. I have been an "official" programmer in a new career now for almost 2 years. My question is to the senior programmers out there, what routines do you normally follow to become a better programmer outside of coding itself. I compare coding to a martial artist, where you need to learn the moves (algorithms, design patters, theory) and then practice them daily. I like to read technical journals and anything else I can find, however I would really like to hear from those who are more experienced what kinds of things they do to keep their "Warrior" skills up.

Thanks for your input!

White belt in training, ~Bolt ...

flag
Read code. Read great code. Write code. Repeat... – Mitch Wheat Jun 27 at 17:12
4  
And stop worrying about stupid buzzwords. – ldigas Jun 27 at 17:23
Learn Haskell ;-) – Dario Jun 27 at 19:10
should be community wiki – SilentGhost Jun 27 at 21:47

15 Answers

vote up 11 vote down check

While I am in no way senior, my routine includes using Google Reader loaded with some of the most prominent blogs for my current primary technology, reading Hacker News, solving problems on Project Euler, and taking problems that I encounter in the wild and try to solve them with some new or different technology. I also try to program in many different paradigms to get a wider basis for problem solving. Smalltalk style OOP and functional programming have probably been the most interesting for how they influence how I use other languages.

Also, work life balance is important. Being an entity of pure code is a poor idea and is only harmful to the quality of output.

link|flag
"Also, work life balance is important. Being an entity of pure code is a poor idea and is only harmful to the quality of output." Could you elaborate? Do you mean being coding all the time even at home? I must admit, I am guilty of that. I code at work and then write the code I want to at home ... yeah the wife gets a little mad at me at times, but I really enjoy the freedom/creativity I find in coding. – Boltimuss Jun 27 at 17:20
1  
"Project Euler" Thx for that! I registered, looks like fun! – Boltimuss Jun 27 at 17:23
4  
It's common, especially for good programmers, for coding to be both a job and a hobby. This is good and necessary to an extent, but it is very easy to be overwhelmed by it. This can lead to burnout, unhappiness, and diminished problem solving ability. You should program for fun, but just balance it with nontechnical pursuits. – Ben Hughes Jun 27 at 17:36
1  
I second Project Euler, it is a great way to learn a new language. – Lee Jun 27 at 17:39
Wow! Project Euler, I think I'll spend less free time in SO – victor hugo Jun 28 at 0:52
vote up 0 vote down

Privately tell your manager you wish to improve your skills and can you please be assigned to projects with the top developers in your group.

Purchase and read and highlight your own books. Keep them on your desk and refer to them.

Start proper code reviews in your team. Proper code reviews are not 'showing your code to the whole team' but rather, having one other coder examine your code and vice versa on a regular basis. 'Sifting trough' combinations of coders examining their code brings a lot of new perspective to your team and to yourself.

Seek out resources that discuss better coding practices and standards. Code Complete by Steve McConnell, and Clean Code by Robert C. Martin are excellent resources.

Beware that business value should always trump design elegance in coding and architecture, anything else is a form of suboptimization.

Finally, if you really want to become more valuable to your company ask you manager how they get bonused and make that your goal. You will get your managers attention if you do that!

link|flag
vote up 0 vote down

Learn to always ask yourself, "How could things be better?"

When you make mistakes, don't ignore them. Think about what you could have done differently to avoid the problem. This ranges from little mistakes to big ones. When you find a bug in your code, think about how you could avoid that type of bug in the future. I don't mean in the simple sense of telling yourself to "watch out for fence-post errors." Rather, are there coding practices or testing practice you could adopt that would automatically avoid those errors, or bring them to light quickly. The book "Writing Solid Code" has lots of examples of this type of thinking.

But this applies beyond programming. Senior engineer usually need to do more than just write code. They have to be able to mentor and make decisions and recommendations in the context of the companies larger business needs, and so forth. So think about these "big picture" issues too. If you feel like your company makes it hard for junior programmers to figure out how to do something, then ask yourself how to fix that. If you interview somebody and like them, and they turn out to be a bozo, ask yourself what you should have done differently in the interview.

And do likewise with what everyone else is doing around you. If the build process is too slow, don't just grumble about it, figure out how to make it better, even if it's not your job---this could range from actually doing it to learning more about it so you can make useful suggestions to the people who own it. If you don't like or don't understand what your managers or executives are doing, ask yourself what you'd do differently.

Don't be afraid to ask your peers these questions. I find these types of questions great fodder for lunchtime conversations and it's a great way to learn from other people's experience.

link|flag
vote up 0 vote down

Scott gu says ... For learn develop in c#, try a new language feature every day.

I develop my personal framework based on framework 2.0 and c# with this i learned c# at beginning i don't know c# only vb.net, actually in don't develop only support my vb.net, stepping to c#. Implement your own classes and you learn a lot. With me resulted.

link|flag
vote up 1 vote down

All of the answers posted so far share the same theme, and it is the underlying principle for becoming a great programmer: an unquenchable thirst for knowledge. So my answer to your question is, never stop learning.

Our profession is ever-changing. For the vast majority of people, that single fact is terrifying. Constantly having to learn a new technology or technique leaves most mere mortals quaking. For those of us who sincerely love being a software developer, it's exactly this constant, pervasive metamorphosis that interests us.

Aside from being persistently autodidactic, I suggest the following:

  1. Code - a lot;
  2. Read code from acknowledged experts (see Jon Skeet) ;-)
  3. Read some of the aforementioned books. I could suggest some but you really need to find those that suit you. There are plenty of lists ripe for Googling;
  4. Goto 1 (this use of Goto authorized by Dijkstra (look him up))

Enjoy writing code. See it for the creative pursuit that it really is. Live long and prosper.

link|flag
vote up 1 vote down

Practice abstraction in all its forms and ignore all the buzzwords and latest fads. Programming at its core is the process of creating useful abstractions. Most programmers think it's twiddling bits.

link|flag
vote up 5 vote down

Learn weird languages. Many less popular but actively developed languages center around concepts that seem strange to programmers with a more mainstream background. Some things that come to mind are:

  • pervasive immutability (Haskell, Clojure, Erlang)
  • code as data (anything in the Lisp family)
  • monads (Haskell)
  • prototypes (Self, Javascript)
  • message-passing/actor model (Erlang and maybe Smalltalk)
  • multimethods (Common Lisp, Dylan, Clojure)

Many programmers find that a deep understanding of concepts like these helps them design programs no matter what languages they're using. Of course, it sometimes comes with the downside of causing frustration with whatever mainstream language external requirements are forcing you to use.

link|flag
I never thought about what you are suggesting. Great idea! – Boltimuss Jun 27 at 22:11
Continuations as in scheme and coroutines as in lua – tkadlubo Jul 7 at 11:54
vote up 1 vote down

Regularly read other people's source code to become a better developer. Scott Hanselman writing regular posts on this subject that points developers to good source code.

link|flag
I just checked out the site! Awesome thx! This kind of reminds me of chess where I would review alot of played games to see how they did and the strategies that were used behind each move. – Boltimuss Jun 28 at 2:55
vote up 5 vote down

A few ideas:

  • Surround. Take on tasks where you are surrounded by people from whom you can learn.
  • Immerse. Challenge yourself with extracurricular activities (dancing, board games, musical instrument).
  • Contribute. Get involved with open source projects.
  • Study. No artist stands alone.
  • Read Websites. Technical websites are a great way to see how people are solving problems.
  • Read Books. Many great books have been listed in this thread. Read them.

Surround

By far the easiest way to hone your skills is to put yourself in an environment where other people around you raise the bar of expectations. Not only will you get challenged throughout the day, but you will also be exposed to different ways of approaching problems -- both specific and general.

As well, you will be introduced to technologies that you might not have investigated on your own.

Immerse

Adopt hobbies that challenge your imagination. The brain's right side sees the "big picture", so exercise the right side of your brain to enhance lateral thinking.

Contribute

It is not always possible to find a job where you are surrounded by gurus. However, there are many open source projects that have genius++ software developers working on them. A great quality of the people who work on open source projects is that they are not afraid of telling you when an idea is bunk. Plus, they are often eager to illuminate alternatives that you might not have thought of yourself. (This is from my own experience, YMMV.)

Study

Study the techniques of great programmers. See how they approach problems and what tools they used to solve them. Using the most appropriate tool for the task can mean the difference between a project being completed, or a project dying due to insurmountable technical hurdles.

Read Websites

A number of technical websites abound. In no particular order:

If you enjoy any others, do post them!

link|flag
vote up 0 vote down

Change projects as often as possible, and don't feel bad about it. You always learn something new with every new project. Unfortunately it might take you few projects to start making something useful, and not waste your employers money. :)

link|flag
vote up 2 vote down

I like that analogy. What I find helpful is to spend some time solving already solved problems (yep... Project Euler is a great place to start.) Inventing your own way of doing things and then seeing (usually) why it's wrong/inefficient is how you get better as opposed to just reading about the right approach in a book.

Coding, like martial arts, is not rigid. Like Bruce Lee said, you want to flow like water. You want your approaches to adjust to the problem at hand. You don't want to just have a grab bag of rigidly defined ways of solving specific problems.

And of course, programming isn't just about solving problems. One skill that isn't talked about much is designing models. Being able to figure out how you can map your tool-set of data structures to a real life problem is invaluable. The only way to get better at that is to broaden the fields you write applications for. Write a numerical integrator this week. Next week, make a simple database engine.

link|flag
vote up 2 vote down

Don't limit yourself in what you learn.

Keep going deeper and wider - learning more about things you know, as well as learning about new things.


There are lots of different programming tools - languages, concepts, software, etc.

Learn as many tools as you can. Work out when each tool is for, and most importantly when a problem requires a different tool.


For learning, try different techniques to determine what works best for you - some people like books, others prefer blogs, some like listening to podcasts, others prefer conferences - figure out which ones you prefer, and dive right in. But don't forget to experiment and use what you find. :)

Oh, and don't blindly believe anything a programmer tells you ('senior' or otherwise), without trying it out for yourself, and deciding if you agree.

link|flag
vote up 1 vote down

code, code, code, read as much opensource code as possible, github is your friend here. Participate in irc channels and when it's all become overwhelming, go to the beach, crack open a brew, and soak in as much bikini clad women as possible ( and if your a gal, feast on those men with the beautiful abs!)

link|flag
Unfortunately, I have yet to learn how to "let go of work" sometimes I'll be out and about with my family doing something fun and then the problem I am working on creeps back in... ack! – Boltimuss Jun 27 at 17:35
yes I know, but sometimes that when a solution finally materializes! – ennuikiller Jun 27 at 18:16
vote up 7 vote down

In addition to reading SO as Victor Hugo suggested, I read a lot of "best practices" or "style" books, such as:

  • Code Complete
  • The Pragmatic Programmer
  • The Practice of Programming
  • About Face
  • Design Patterns: Elements of Reuseable Object-Oriented Software (a.k.a. Gang of Four book)
  • Head First Design Patterns (Probably should read this first and then read the Gang of Four book for the nitty-gritty)

And even language-specific ones can be helpful, even the ones I disagree with their practices because it gives me deeper insight into the language and how others use it.

  • Effective C++/More Effective C++ (great books)
  • CLR via C# (not so much a style book, but gives great insight into how the CLR was designed)
  • Effective C#/More Effective C# (only agree with some of it)
link|flag
Great references!! I actually have two of the ones you mentioned: Code complete and design patterns (a.k.a. the gang of four) I will look into the other ones you mentioned. Thx! – Boltimuss Jun 27 at 17:30
Actually, if you like the Gang of Four book, I'd strongly recommend "Head First Design Patterns" as a more understandable and accessible take on the subject. Edited to add it. – Lee Jun 27 at 17:35
Very good references. I think he is refering to resources for a diary or periodical reading though – victor hugo Jun 27 at 19:15
vote up 5 vote down

I find reading stackoverflow questions that I don't have idea how to solve -or about things I've wondered before but was afraid to ask- a very healthy exercise.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.