up vote 24 down vote favorite
38
share [g+] share [fb]

I'm searching for articles, blogs, books etc. for a while now but all I can find are some articles about "girl code". I read the book Code Craft, Beautiful Code and I also want to order Code Complete. I read a lot about design patterns as well and of course I'm programming a lot in my job as a programmer as well as in my spare time (and during my studies in business informatics).

Can you recommend a few links, books or do you have any other tips how I can improve my programming skills?

link|improve this question
show 3 more comments
feedback

closed as not constructive by George Stocker, Brad Larson, sarnold, Jay Riggs, Josh Caswell Nov 8 '11 at 4:28

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

46 Answers

1 2

Write more code

link|improve this answer
5  
But if it's a comment, then it's not an answer. Just because the answer is only a link (with an admittedly very short description of the article), does not mean that it is not an answer. – nilamo Aug 27 '09 at 5:14
show 1 more comment
feedback

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|improve this answer
2  
"Project Euler" Thx for that! I registered, looks like fun! – Boltimuss Jun 27 '09 at 17:23
5  
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 '09 at 17:36
1  
I second Project Euler, it is a great way to learn a new language. – Lee Jun 27 '09 at 17:39
show 2 more comments
feedback

Read The Pragmatic Programmer by Andy Hunt and Dave Thomas.

Well worth it!

Watch Dave's talk over at InfoQ and take heed of what he says about keeping your skill set up to date.

link|improve this answer
show 1 more comment
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
show 4 more comments
feedback

IMHO, the first thing to understand is that we're all different. So there is no "best way" for all of us, just an individual best way. This means: You must examine how you learn things and then apply that pattern.

Personally, I apply three patterns. First, I have a broad range of interests which allows me to look for similar problems and their solutions and apply them.

Then I like to look through existing code and improve that. Software development is one of the rare engineering arts where we don't study great works of the past which is a shame. There is so much to learn from the mistakes and successes of others.

Lastly, I'm not afraid to make mistakes. The day when a production system fails because of something you did and you can face this, you can be proud. After fixing the issue, of course.

link|improve this answer
1  
+1 for I'm not afraid to make mistakes. – this. __curious_geek Aug 9 '10 at 7:40
show 1 more comment
feedback

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|improve this answer
feedback

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|improve this answer
show 2 more comments
feedback

Look at the list of skills and competencies in the Programmer Competency Matrix, and work to learn the ones you don't know.

link|improve this answer
feedback

Get a Job! (of course programming related)

There is no better way to learn the languages and all that code writing philosophy then to work with a real projects. Many companies are hiring for a junior developer jobs. If you will work in a team, then you will also get many help and experience from it's members.

link|improve this answer
2  
No way... In a job you are working in a team, using team patterns, team standards... Thats a real lesson! – ŁukaszW.pl Aug 9 '10 at 7:09
1  
ŁukaszW.pl is right. In a real jab you will be restricted to learning what the team(leader) tells you. And in today's day an age this is strongly influenced by the bean counters. Like: we use Java because Java programmers are easiest to hire. – Martin Aug 9 '10 at 7:16
1  
I didn't down vote: i35.tinypic.com/33210yo.png – fardjad Aug 9 '10 at 9:16
show 6 more comments
feedback

There is a pretty cool wiki about different programming methods here, stuff like Extreme Programming, pattern matching etc..:

http://c2.com/cgi-bin/wiki?ExtremeProgrammingRoadmap

It's pretty entertaining

link|improve this answer
show 1 more comment
feedback

The more time I spend on this site, the more I am tempted to say: by reading other's posts on stackoverflow.com.

I suggest you check out some topics here about good design pattern books.

link|improve this answer
feedback

Visit www.accu.org and join!

Their journals (C Vu and Overload) cover loads of topics of relevance. Their book reviews are unbiased and well informed. Their mailing lists are full of interesting items. Oh, and they also run "mentored developer" programmes for members.

link|improve this answer
feedback

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|improve this answer
show 2 more comments
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

There is no one thing that can make you a better programmer, it comes from experience. There are books and articles which can point you in the right direction, but it always comes back to experience.

The best way to get experience is to (in no particular order):

  • get a programming job
  • read books and do the tasks they advise you to do
  • write random personal projects
  • go to university

And the best part: rinse and repeat :)

Some SO Questions about programming books ...

link|improve this answer
feedback

Beyond trial and error, you can try checking out examples from other programmers (open source is a biggie here).

Scott Hanselman has a blog where he regularly deconstructs interesting code. (http://www.hanselman.com/blog/CategoryView.aspx?category=Source+Code)

Another suggestion would be to find an experienced mentor, or even do some mentoring of your own. It is amazing how much you can learn when you are teaching somebody else.

link|improve this answer
feedback

Find an Open Source project that you use/are interested in and search for one of their open bugs. Fix it and repeat. The exposure to multiple programming languages, multiple coding styles, multiple mistakes, etc. is much more enlightening than reading a dry text ... not that you should avoid the texts, but this type of immersive experience is a good way to see the reasons behind the lessons of a text and to actually understand their import. And if you contribute your solution back to the community, then you have helped an Open Source project advance as well.

link|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
feedback

learn ,unlearn and relearn

link|improve this answer
show 2 more comments
feedback
  1. Practice practice practice

  2. Interacting with other programmers and learning from existing code

  3. Learning other languages (broadens the mind)

link|improve this answer
feedback

For book I recommend reading book from the pragmatic programming series rather than teach yourself programming book.

For best practices, read book on design patterns and if you are C# programmer you can start reading series of books/articles published by the Micrsoft Pattern and Practice group

Other than that, I will just advice practicing, find project that interest you in codeplex and download some of them and use it to learn about how others approach the design and code

link|improve this answer
feedback

I think writing proper Code and writing Proper logic are 2 different steps in learning proper Coding.

  1. Trying Topcode.com/tc for learning Logic.
  2. Read some good Book.
  3. Practice a lot.
  4. Practice a lot.
link|improve this answer
feedback

You can read the answers from this question from a while ago.

link|improve this answer
feedback

One way you could do it is to study an opinionated framework like Ruby on Rails. This could be like a case study. You have programmers who have made decisions based on solid design principles. I would suggest taking single decisions on Rails design and then asking "Why?". For example, why follow the MVC pattern? What are it's advantages, what are the disadvantages? What type of software projects does it work best for? etc.

link|improve this answer
feedback

I suggest you to read code of other people (not just your co-workers). Go to http://sourceforge.net/index.php'>source forge, pick some random (small) project and try to read/understand it. When you see some crapy code that you need hours to understand, then you know what not to do.
See your own old code also.

link|improve this answer
feedback

Read The Pragmatic Programmer. An eye-opening book.

A general tip: practice. I know it sounds boring and trivial, but it's the best way. You will encounter real problems you will have motivation to solve, and will test your own solutions in real life. You will probably have to maintain your code, which will give you very needed range of skills. You may even start an open-source project and learn how to collaborate in this environment. Witch a bit of luck it can be very rewarding. Good luck.

link|improve this answer
feedback
1 2

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