The Relevance blog has an excellent post on simplifying code called Refactoring from Ceremony to Essence. In part it explains why people find Ruby on Rails to be a compelling alternative to J2EE, but it also illustrates a number of techniques applied by Ruby on Rails that could just as easily be used regardless of [...]
Skipping the error handling?
May 13th, 2008 · 3 Comments
Tags: · best practices, software development
My rules of thumb for developers: use less indentation
May 11th, 2008 · 6 Comments
Over a month later, post number two in my “rules of thumb” for developers series. The first post was on writing less code, period. This one is on using less indentation.
What I really mean by this is that I’m strongly not in favor of complex nested code structures. I find them to be difficult to [...]
Tags: · best practices, software development
My rules of thumb for developers: less code
April 6th, 2008 · 2 Comments
I was discussing basic coding philosophy today and realized that I have a few rules of thumb that I bring to my programming. I guess you’d call them a basic sensibility of how to write code. The three big rules are:
Write less code. Use less indentation. Write more methods. Externalize everything.
I’ll write separate posts for each of these [...]
Tags: · best practices, software development