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

prev 1 2 3
vote up 0 vote down

Effective Unit Testing by Tim Burns.

link|flag
vote up 0 vote down

Coding: It's Just Writing by Jeff Attwood.

A short article on writing style.

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

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

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

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

link|flag
vote up -7 vote down

An article? But a book I recommend this: Code Complete 2nd Edition

link|flag
1  
There is a page for books already. – lillq Nov 25 '08 at 19:13
show 1 more comment
prev 1 2 3

Your Answer

Get an OpenID
or

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