vote up 9 vote down star
10

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?

flag
Should this be comm wiki ? - subj.. and possibly diff to prove if a definite ans exists or not.. – Gishu Aug 27 at 5:13
Not sure why you're so dismissive of "girl code". Give honest advice, Don't leave anyone behind, Don't fight over guys - it all seems pretty sensible to me :) – APC Aug 27 at 5:45

25 Answers

vote up 2 vote down

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|flag
"a pretty cool wiki"? That's Ward Cunningham's wiki. He invented wikis. – Kristopher Johnson Oct 10 '08 at 19:12
vote up 2 vote down

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|flag
vote up 10 vote down

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|flag
Agreed! One of the best books I have read about general programming – Ryan Jul 2 at 14:14
vote up 2 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

In addition to the 'Code Complete' I would recommend another book by the same author - 'Rapid Development'. To able to understand the principles of development better will really help to become a better programmer.

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

The pragmatic programmer was an excellent book, and I highly recommend it. I also agree with practicing. Jump into something new that you've never tried before, watch the training videos that are out there for it, read through samples, come up with a simple program and try it out. I'm currently learning Silverlight now and although it gets frustrating at times, it is very cool to jumping into a new language without much background on it.

So yeah... practice, practice, practice.

link|flag
vote up 3 vote down

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

link|flag
vote up 0 vote down

Seek out projects that are very different than ones you work on, and learn how to solve them. If you know procedural programming, play with a functional language. If you do text processing, try writing a simple socket server. Look for projects that will stretch you.

link|flag
vote up 0 vote down

Simple: never stop learning - and understand what you learn !

link|flag
vote up 0 vote down

I have to recommend the book I'm currently reading: Refactoring: Improving the Design of Existing Code by Martin Fowler.

A great free magazine is RedmondDeveloperNews.

link|flag
vote up 0 vote down

I'd recommend that you sign up to the Freshmeat daily newsletter. That has indeed increased my productivity. You'll discover other peoples libs and probably try some of them in your own projects, or perhaps by contributing to them with your own bugfixes or changes.

link|flag
vote up 16 vote down

Write more code

link|flag
I think that answer that consist only of link should be a comment, not a real answer. – Kirill V. Lyadvinsky Aug 27 at 4:56
3  
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 at 5:14
vote up 0 vote down

learn ,unlearn and relearn

link|flag
Now what is that supposed to mean? – Zaki Sep 30 at 15:37
its just not a catch phrase.google it , u can know what does it mean. – Rajesh Oct 2 at 7:08
vote up 0 vote down

Don't take the easy way out.

When you find yourself thinking, "I should really rewrite this to handle other cases than just this one" or "I should really implement error logging" - do it. Don't say, "I'll do that for version 1.1."

You'll learn valuable lessons by forcing yourself to do things correctly.

In the same vein, when you finish with a function, look it over closely and see if it can be re-factored. Does it do just one thing? Does it do it well? Until you get experience, 90% of the time, the answer to both will be "no." Don't give into the temptation to go onto the "DrawFlashyStuff()" routine because it sounds more fun to write. Take the time to refactor this one.

link|flag
vote up 0 vote down

Josh has linked to a piece by Jeff Atwood called Quantity Always Trumps Quality, which extols the benefits of learning through just doing it.

Jeff wrote another great article (in fact he has written many) entitled How To Become a Better Programmer by Not Programming. Money quote:

You won't-- you cannot-- become a better programmer through sheer force of programming alone. You can only complement and enhance your existing programming skills by branching out. Learn about your users. Learn about the industry. Learn about your business.

In short, writing more code is necessary but not sufficient.

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

The key is maintaining your interest. You're super keen right now, which is great, but will you still be interested in 4 years? 10 years? 15?

Everyone goes through periods of drought, but if you maintain interest, that's the most important thing. Keep learning and learning.

link|flag
vote up 0 vote down

A good coding is RELATIVE. Depends on requirements.

Avoide HardCoding is a good practice. But in some cases HardCoding becomes helpful.

Normalization is mandatory. But Some times it may not me practical.

We will become better programmer day by day through 1,Experiences 2,Books 3,This sort of Communities...

Happy Coding.........

link|flag
vote up 0 vote down

U only need to like programming.

link|flag

Your Answer

Get an OpenID
or

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