vote up 100 vote down star
216

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.

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

68 Answers

vote up 2 vote down

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

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

How to become a hacker by Eric Steven Raymond.

link|flag
vote up 1 vote down

"What is Software Design" by Jack W. Reeves

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

Ian Griffiths again on deadlock complexities.

link|flag
vote up 1 vote down

Secrets of the Little Blue Box by Ron Rosenbaum

link|flag
vote up 1 vote down

The Pinocchio Problem by Steve Yegge

link|flag
vote up 1 vote down

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

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

link|flag
vote up 1 vote down

10 Useful Techniques To Improve Your User Interface Designs by Dmitry Fadeyev.

link|flag
vote up 1 vote down

Practice To Perfect: The Quality First Model by Bertrand Meyer.

link|flag
vote up 1 vote down

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

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

Exploding Offer Season by Joel Spolsky.

link|flag
vote up 1 vote down

Coding: It's Just Writing by Jeff Attwood.

A short article on writing style.

link|flag
vote up 1 vote down

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

The Hundred-Year Language by Paul Graham.

link|flag
vote up 1 vote down

XP Software Programming Paradigm by Guy Lecky-Thompson.

link|flag
vote up 1 vote down

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

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

Evidence Based Scheduling by Joel Spolsky.

link|flag
vote up 1 vote down

Notes on the Foundations of Programming I and II

By Alexander Stepanov

link|flag
vote up 1 vote down

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|flag
show 1 more comment
vote up 1 vote down

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

The beginning of Google. This must be the research with the biggest ROI of all times:

The Anatomy of a Large-Scale Hypertextual Web Search Engine

link|flag
vote up 1 vote down

Fire And Motion by Joel Spolsky

It’s brief but true inspiration. Remember, long lines of code does not mean it’s a good programs

link|flag

Your Answer

Get an OpenID
or

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