Showing posts with label clean code. Show all posts
Showing posts with label clean code. Show all posts

Friday, April 26, 2013

"The cleaner and nicer the program, the faster it's going to run. And if it doesn't, it'll be easy to make it fast."
Joshua Bloch

Tuesday, March 19, 2013

When the hierarchy is correct, anyone can successfully create a new subclass.
~ Sandi Metz 

Thursday, August 4, 2011

The best line of code, ever

"The way you get programmer productivity is not by increasing the lines of code per programmer per day. That doesn’t work. The way you get programmer productivity is by eliminating lines of code you have to write.

The line of code that’s the fastest to write, that never breaks, that doesn’t need maintenance, is the line you never had to write."

-- Steve Jobs

Thursday, July 14, 2011

Who cares if the computer takes a few more cycles to compile something?

"Someone will try to read your code in a few months' time to make some changes. We easily forget that extra user of the code, yet that user is actually the most important. Who cares if the computer takes a few more cycles to compile something? It does matter if it takes a programmer a week to make a change that would have taken only an hour if she had understood your code."

-- Martin Fowler in Refactoring