vote up 98 vote down star
211

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

1 2 3 next
vote up 50 vote down check

Teach Yourself Programming in Ten Years by Peter Norvig.

A good article on what it takes to become a great programer and Peter Norvig's recipe for programming success.

link|flag
2  
Nice - I like this idea. People need to understand that learning something is like playing Othello. It might take you a minute to learn the syntax, but the nuances and implications of various paradigms and patterns take a lifetime to master. There is always more to learn! – BenAlabaster Dec 3 '08 at 4:20
show 1 more comment
vote up 0 vote down

The ones that appeared in PC Techniques... Jeff Duntemann's magazine.

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
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

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

Six Styles for Usability Requirements by Soren Lauesen & Houman Younessi

I was looking into how to define usability as a requirement and came across this article. It is well written and was very helpful.

Abstract. A system can have adequate functionality, but inadequate usability because it is too difficult to use. The purpose of usability requirements is to guard against that. This paper shows six styles for usability requirements seen in practice or recommended by experts. For each style we discuss how we can verify the requirements, how we can use them during development, how we elicit the data for the specification, and to what extent the style covers the essence of usability.

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

Notes on the Foundations of Programming I and II

By Alexander Stepanov

link|flag
vote up 2 vote down

How to become a hacker by Eric Steven Raymond.

link|flag
vote up 1 vote down

Evidence Based Scheduling by Joel Spolsky.

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

Architectural Styles and the Design of Network-based Software Architectures

At least chapter 5 and 6 should be read by anyone in doing anything web related.

link|flag
vote up 1 vote down

XP Software Programming Paradigm by Guy Lecky-Thompson.

link|flag
vote up 1 vote down

The Hundred-Year Language by Paul Graham.

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

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

Effective Unit Testing by Tim Burns.

link|flag
vote up 1 vote down

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

link|flag
vote up 3 vote down

They Write The Right Stuff, a timeless article by Charles Fishman published in FastCompany 1996.

link|flag
vote up 1 vote down

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

link|flag
vote up 12 vote down

The Law of Leaky Abstractions by Joel Spolsky.

link|flag
1  
Wow, that guy is good. Made me rethink a few things from just one article. – sdellysse Dec 25 '08 at 14:20
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

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

Characterizing people as non-linear, first-order components in software development by Alistair Cockburn

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

"Being a Software Engineer in the Software Century" By: Barry Boehm Truly Inspirational

link|flag
show 3 more comments
1 2 3 next

Your Answer

Get an OpenID
or

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