up vote 178 down vote favorite
337
share [g+] share [fb]

Part of being a good software developer is keeping current with what people are saying in the community. There are many good articles out there on the Internet about the wide subject of computer programming. What articles have you found worth your time?

Please provide the article's title, author and a link if possible.

link|improve this question
1  
Just about to start one myself.. before SO related questions showed me this one. Thanks for being a visionary! – Gishu Apr 22 '09 at 5:03
1  
Related question: 'Favorite Essay about Programming', stackoverflow.com/questions/194696/… – Jonik Jun 20 '09 at 8:27
feedback

closed as not constructive by Michael Myers Oct 24 '11 at 18:25

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.

protected by Conrad Frix Sep 15 '11 at 15:30

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

72 Answers

Picture Hanging by Colin MacDonald.

This wonderful essay on picture hanging as an analogy to software development made a huge impression on me when I first read it. The relentless accumulation of facts is just as important as talent or skill.

link|improve this answer
feedback

How to be a Programmer: A Short, Comprehensive, and Personal Summary by Robert L. Read

«To be a good programmer is difficult and noble. The hardest part of making real a collective vision of a software project is dealing with one's coworkers and customers. Writing computer programs is important and takes great intelligence and skill. But it is really child's play compared to everything else that a good programmer must do to make a software system that succeeds for both the customer and myriad colleagues for whom she is partially responsible. In this essay I attempt to summarize as concisely as possible those things that I wish someone had explained to me when I was twenty-one.»

link|improve this answer
feedback

An insightful article about good software development practices - not strictly about programming as in writing code.

Continuous Integration by Martin Fowler

I remember this was somewhat eye-opening when first reading it a few years ago, and have later come to consider this stuff quite essential.

link|improve this answer
feedback

How to become a hacker by Eric Steven Raymond.

link|improve this answer
feedback

I will recommend Martin Fowler's The new Methodology, it is a great article about Agile.

link|improve this answer
feedback

Chris Brumme's excellent essay on finalization in .NET.

link|improve this answer
feedback

Another excellent essay by Chris Brumme, this time on the gory inner details of the exception model in .NET.

link|improve this answer
feedback

Ian Griffiths again on deadlock complexities.

link|improve this answer
feedback

This is very specific to Java development, but an excellent overview of memory management issues by Attila Szegedi. Makes me want to buy him a beer :)

A day in the life of a memory leak hunter

Yet another day in the life of a memory leak hunter

Memory leak hunting still doesn't end, or: Serialization also requires a bit of manually imposed amnesia

link|improve this answer
feedback

Anything in Hanselminutes, or Scott's Blog. Saved my ass ongoing quite a few times.

link|improve this answer
feedback

This blog post by a Google employee named Ben Sussman talks about how, due to the anonymous nature of the Internet, we programmers will accept nothing but perfection from ourselves and eachother. This is very different from other professions, where mistakes are expected to happen and people are expected to learn from them.

http://blog.red-bean.com/sussman/?p=96

link|improve this answer
feedback

This is a good article on getting your first job offers.

Exploding Offer Season by Joel Spolsky.

link|improve this answer
feedback

Coding: It's Just Writing by Jeff Attwood.

A short article on writing style.

link|improve this answer
feedback

The Hundred-Year Language by Paul Graham.

link|improve this answer
feedback

XP Software Programming Paradigm by Guy Lecky-Thompson.

link|improve this answer
feedback

STEPS Toward The Reinvention of Programming

"The STEPS project is setting out to create “Moore’s Law Software”: a high-risk high-reward exploratory research effort to create a large-scope-and-range software system in 3-4 orders of magnitude less code than current practice."

link|improve this answer
feedback

Here's another article about good development practices, namely version control:

Version Control for Multiple Agile Teams by Henrik Kniberg, posted at InfoQ

From the introduction:

If we have several agile development teams working on the same codebase, how do we minimize the risk of stumbling over each other? How do we ensure that there always is a clean, releasable version at the end of each iteration? This paper describes an example of how to handle version control in an agile environment with multiple teams - it is the scheme that we migrated to at the company described in "Scrum and XP from the Trenches".

The article talks about using short-lived devel branches to achieve stable trunk, into which goes only stuff that is done. At my work, we've generally had good experiences of applying these ideas, with two scrum teams working on one codebase. There's some overhead about the extra branching and merging (some of which can be automated away), but having stable trunk, from where a release could be made at any time, is a big plus.

link|improve this answer
feedback

Evidence Based Scheduling by Joel Spolsky.

link|improve this answer
feedback

Notes on the Foundations of Programming I and II

By Alexander Stepanov

link|improve this answer
feedback

What Stack Overflow Can Teach You by Jeff Atwood.

This article describes eloquently the way that feedback helps you grow as a programmer, and shows how that is a key to success.

link|improve this answer
show 1 more comment
feedback

Any article published in Eric.Weblog by Eric Sink.

For instance, one of the worthwhile articles is My Life as a Code Economist, which briefly describes when to fix a bug. Following picture summarizes his point of view on this topic:

alt text

link|improve this answer
feedback

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