vote up 18 vote down star
39

We all have had the experience... Somebody opened our eyes at some point with a very good blog post about our work as developers. And from that day with strive to do a better job.

What was the most influential development blog post for you? And how did it effect you in realizing or doing something different from that moment on?

flag

50% accept rate
2  
238 views and 6 upvotes in an hour. Glad I reopened it. – Rich B Oct 9 '08 at 21:31

24 Answers

vote up 10 vote down

Joel on Software: Can Your Programming Language Do This?

Closures and functional programming just clicked.

link|flag
vote up 10 vote down

Another one would be Joel Spolkey's post on "12 Steps to better code". Including the notorious Joel test, which can help you indicate if you're doing the right things in your project (and if not, you can fight or flight ;-)

This one helped me in realising that our company was beyond help. I helped implementing a few of the items in the Joel test, but at some point it's a lonely battle and I decided to quit my job.

http://www.joelonsoftware.com/articles/fog0000000043.html

Another related post (in my view) is the one titled "A Field Guide to Developers" which also helped me realize we weren't being taken serious by our management since a lot of trivial things (being able to order books, go on courses, get good hardware, etc.) were not trivial for us.

http://www.joelonsoftware.com/articles/FieldGuidetoDevelopers.html

link|flag
vote up 8 vote down

One of my favorites would have to be Scott Berkun's blog post on "ADD" - Also known as "Ass-hole Driven Development" (and the gazillion other funny acronyms for frequently seen, but not so frequently documented methodologies ;-) (No, this is not offensive... it's a real good eye-opener! Go read it now, you'll love it. I guarantee it)

http://www.scottberkun.com/blog/2007/asshole-driven-development

link|flag
Yes I have certainly witnessed ADD :-) What to do about it is more tricky. Sometimes the "A" is an expert con-man & convinces management he is an expert in everything, which means he can and will have you fired if you argue with him. – finnw Oct 9 '08 at 20:13
vote up 7 vote down

Yosefk, the man behind the also-excellent C++ FQA, wrote an excellent piece on Redundacy vs. Dependency that I think should be required reading for anyone about to start or manage a project:

I believe that there are just two intrinsic forces in programming:

You want to minimize redundancy and, ideally, define every piece of knowledge once. You want to minimize dependencies - A should depend on B only if it absolutely must.

Understanding the tradeoffs between redundancy and dependency are really what separate the good from the great in this field, IMO.

link|flag
1  
The extra n in "Redundnacy" is redundant. Or at least misplaced ;) – fluffels Oct 9 '08 at 20:40
my fingers have a sense of humor today. – Ryan Oct 9 '08 at 20:51
vote up 5 vote down

Don't forget one of the best Spolsky's ever:

http://www.joelonsoftware.com/articles/HighNotes.html

link|flag
vote up 5 vote down

More of an article: Why Getters and Setters Are Evil

link|flag
vote up 4 vote down

How Microsoft Lost the API War

http://www.joelonsoftware.com/articles/APIWar.html

It made me realize I really needed to carefully evaluate the development software for my huge upcoming project.

link|flag
I like this part of "Enter The Web": But there's a price to pay in the smoothness of the user interface. Here are a few examples of things you can't really do well in a web application: (next) – Diodeus Oct 9 '08 at 20:29
Almost all of those problems have now been solved. – Diodeus Oct 9 '08 at 20:30
vote up 3 vote down

Every time I sit down to write a graphical interface, I am really just attempting to channel Joel's Interface Design for Programmers, which is a proper book, but the first few chapters are available online in blog format.

Who knew that a bread factory could be such a great place to learn programming?

link|flag
vote up 3 vote down

I'm not sure if this counts, but Eric S. Raymond's The Cathedral and the Bazaar taught me a lot about open source development.

link|flag
vote up 3 vote down

This isn't exactly a blog post, but an essay posted on Peter Norvig's website back in 2001.
Teach Yourself Programming in Ten Years. I liked his "recipe for programming success." It's a short read and I think it's helpful if you need some ideas or direction in becoming a better programmer.

link|flag
vote up 2 vote down

"SQL Injection"? Wonder what that's about.

link|flag
The first time I saw a clear example of how sql injection works, it was a real eye-opener, and I'm pretty sure it was a blog post somewhere that explained it. – Joel Coehoorn Oct 9 '08 at 20:27
vote up 2 vote down

Erik Sink's Source Control HowTo.

link|flag
vote up 1 vote down

A) Derik Whitakers post "What the &@$#* is a 'Best Practice' anyway?" - this made me realize that just because something is termed a "Best Practice" it doesn't mean that all other ways are crap.

B) Jeff Atwood's post "We Make Shitty Software.. With Bugs!" - I finally understood that even the "uber coders" aren't perfect. We all need to be constantly improving.

link|flag
vote up 1 vote down

OK, last one from me. Clay Shirky turns "Web 2.0" from meaningless buzzword to groundbreaking insight into the nature of organization:

Ontology is Overrated

link|flag
vote up 1 vote down

Mostly Steve Yegge's Drunken Blog Rants.

In particular: Five Essential Phone Screen Questions and Practicing Programming.

link|flag
vote up 1 vote down

Michael Abrash's graphics articles from 15 years ago (although not technically blog entries) made me realize that highly technical material could also be entertaining -- an approach I've attempted to apply to documentation.

Paul Graham's Hackers and Painters essay discussing the similarities between coding and fine art struck a chord.

I've always split my time between programming and music and Graham's essay reinforced my opinion that programmers should spend a significant amount of time engaging in other activities so that they have a basis for their art.

link|flag
His books were also excellent for this too. – cletus May 11 at 15:28
vote up 0 vote down

Mark Pilgrim's excellent blog series dive into accessibility.

It really opened my eyes towards what it means to build accessible web apps.

It's not recent, but it still mostly applies.

link|flag
vote up 0 vote down

A lot of Jeff Attwoods blog entries.

Most recently his what's wrong with Turkey entry.

Yeah, got to use that damn invariantculture ><

link|flag
vote up 0 vote down

Robert L. Read's "How To Be a Programmer" set me off on a course that I have thoroughly enjoyed mostly because it introduced me to two authors that really influenced me:

  • Pual Graham - His articles on lisp (not arc) encouraged me to learn LISP which has been a blast. From there I got into Ocaml, and Haskell, and Erlang.
  • Eric S. Raymond - His book "The Art of Unix Programming" was a great read and has greatly influenced my perspective on system design.

Honestly, I don't think I ever finished reading Robert L. Read's article.

Robert C. Martin also has a few articles that are still influencing the industry:

He has a bunch more up on his web site but these are the most often cited articles.

David Parnas is another author who wrote some timeless articles about Software Engineering. If you haven't heard of him, I'm sure you've seen him quoted a bunch (He developed the concept of information hiding and much more).

Enjoy!

Note: I try to answer questions within the constraints given, but I felt that the original poster could best attain his goal (lasting improvement caused by an eye opening experience) by widening his "search" beyond blogs.

link|flag
vote up 0 vote down

Eric Wendelin's "[blank] is a beautiful tool" articles set me on the path to understanding CLIs.

link|flag
vote up 0 vote down

For me, it wasn't a blog entry. It was the ORM Smackdown episode of DotNetRocks. It opened my eyes to a whole new way of doing things.

link|flag
Is there a link you could provide for that? – Joel Coehoorn Oct 9 '08 at 21:09
Never mind: I found it for you ;) – Joel Coehoorn Oct 9 '08 at 21:10
vote up 0 vote down

The very first blog post I read--before such a term even existed really--what Joel's Controlling Your Environment Makes You Happy, which to me is the seminal developer-focused work on software usability and user behaviour that it should be a must read for every programmer who touches a user interface.

link|flag
vote up 0 vote down

This was the All about Agile blog, in particular: 10 Key Principles of Agile Software Development .

link|flag

Your Answer

Get an OpenID
or

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