up vote 23 down vote favorite
52
share [g+] share [fb]

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?

link|improve this question

56% accept rate
3  
238 views and 6 upvotes in an hour. Glad I reopened it. – GEOCHET Oct 9 '08 at 21:31
feedback

closed as off topic by cHao, Lasse V. Karlsen Oct 28 '11 at 7:35

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

24 Answers

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|improve this answer
feedback

Joel on Software: Can Your Programming Language Do This?

Closures and functional programming just clicked.

link|improve this answer
feedback

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|improve this answer
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
feedback

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|improve this answer
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
feedback

More of an article: Why Getters and Setters Are Evil

link|improve this answer
Allen Holub has several other good pieces on OOD misconceptions, and a book. I don't agree with everything he says, but this piece is spot-on and highlights one of the biggest mis-teachings to afflict Java/OOP. – Sam Brightman Jan 23 '11 at 15:48
feedback

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

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

link|improve this answer
feedback

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|improve this answer
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
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

Erik Sink's Source Control HowTo.

link|improve this answer
feedback

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

link|improve this answer
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
feedback

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|improve this answer
feedback

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|improve this answer
His books were also excellent for this too. – cletus May 11 '09 at 15:28
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

A lot of Jeff Attwoods blog entries.

Most recently his what's wrong with Turkey entry.

Yeah, got to use that damn invariantculture ><

link|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
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
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

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