up vote 48 down vote favorite
56
share [g+] share [fb]

I've been thinking lately about a few practices that I have kind of adopted. Not things you see listed all the times, but patterns that you've looked back and said "I'm glad I did that", then adopted for yourself.

I'm not really thinking of the ones you hear all the time, like "Refactoring" or any design patterns listed in common books either, but would include specific refactoring patterns that you find success with but don't hear about very often...

link|improve this question
1  
@sep332 - Good idea. Done. – Paul Tomblin Nov 19 '08 at 19:29
show 1 more comment
feedback

closed as not constructive by Nicol Bolas, bmargulies, Bill the Lizard Oct 16 '11 at 2:38

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

46 Answers

1 2
up vote 65 down vote accepted

When commenting: Tell me WHY you're doing something, not WHAT you're doing. What you're doing is already there plain as day, it's called your code.

link|improve this answer
5  
There are times when "what" is more informative than "why". If you are implementing a complicated algorithm, its useful to know what the algorithm is supposed to be, to compare against the reality of the code, but I'm guessing you are referring to the "add 1 to i" type comment and not the former. – Brian B. Nov 19 '08 at 22:09
7  
This is repeated so much here that I'm coming to hate it. Sometimes things don't tell you what they're doing in the code because it isn't obvious, or it is complicated. Usually WHY is just as obvious as HOW. Comment only when needed, or when something is mission-critical. – Robert K Nov 19 '08 at 23:35
show 2 more comments
feedback

Simplify your design requirements. Trying to bite off too much for version 1.0 has helped kill a few of my own projects, while my successful applications were built with the minimum requirements in mind. Try to figure out the very core functionality you want to accomplish, and save the rest for later. You'll thank yourself when the simple stuff turns out to be not so simple in implementation. Also, by getting your product out faster you'll have a chance to get more feedback from users, which will help decide which "extra" features are worth developing or not.

link|improve this answer
2  
This is a big deal, especially for side projects. – Brian MacKay Nov 19 '08 at 20:44
2  
In other words it is "release early, release often" mantra. – J.F. Sebastian Nov 19 '08 at 20:50
1  
Excellent advice. I launched a site recently wherein the core feature was a large user-searchable database. Due to time constraints, I launched with only a basic search implemented. The super duper awesome advanced search got pushed to the feature wishlist to my great embarrassment... I was quite surprised when user polling one month post-launch revealed the advanced search to be the least desired proposed feature! I'm glad I launched rather than postponed things to code something most people didn't want! – Andrew Heath Jul 15 '10 at 8:37
show 1 more comment
feedback

Never Pass English Language Up To the GUI Low level code should not be producing user visible strings. Instead, they should be passing up objects with codes that can be translated and formatted at the uppermost level. This way, if/when you internationalize, you can do it in one place instead of hundreds. Also, it means that in an environment where the View level is separate from the Model, you can have more than one Viewer using different languages. For instance, your movie theatre management system could be simultaneously viewed by the theatre in France, the regional Network Operations Center in Spain, the studio in Hollywood, and the support site in Rochester NY.

link|improve this answer
feedback

Always assume that some poor schmuck will have to maintain your code.

  • keep it simple,
  • easy to understand,
  • segmented in manageable and logical chunks

Remember, you might be the schmuck that has to maintain the code, give yourself a break, take no "shortcuts", dont use "clever" side effects, avoid cryptic variables, no unrelated comments...

link|improve this answer
7  
Also, assume that the poor schmuck who will have to maintain your code is borderline psychotic and knows your home address. – Paul Tomblin Nov 19 '08 at 20:13
3  
ahh schmuck is a great word when used in this context. – Nathan W Nov 19 '08 at 22:32
1  
I always seem to be the poor schmuck..+1 – discorax Nov 20 '08 at 17:17
3  
My middle name is schmuck (so it feels), boy do I hate to edit my own code. I tend to be embarrassed "I wrote THAT"? – lexu Nov 22 '08 at 19:27
1  
I'm so hugely in favor of this because the poor idiot who has to maintain my code is, often as not, me. Six months later, when I've had a chance to forget most of it. – BlairHippo Aug 23 '10 at 18:31
show 1 more comment
feedback

In OO languages, keep simpler data objects immutable. This builds upon Paul Tomblin's point about keeping code separate from data. Simple data objects are like bits of hard metal currency passed around the more complex agents in your program, in that they're tangible and definite. They're unlike currency in that thin strings attach them to any object that wants them, for as long as the complex objects want. You wouldn't want someone grinding the "Five Cents" off your nickel and etching "Ten Cents" in its place; nothing should change what your complex objects assume about those bits of data.

link|improve this answer
1  
You wouldn't want someone grinding the "Five Cents" off your nickel and etching "Ten Cents" in its place Why not? That gives me 5 cents :D – Camilo Martin Nov 2 '10 at 21:18
feedback

My best change was using the single responsibility principle. Each class I write only does one thing so it is really easy to troubleshoot problems when they are broken down into small chunks. Sure I have many more classes now but by properly namespacing them and placing them in folders I can easily manage them. SRP encourages code re-use and really enables unit testing (and I think is a key concept for test driven development)

link|improve this answer
show 1 more comment
feedback

FIRST write a test that goes red. THEN write the code that makes that one test turn green. Refactor as needed. Rinse. Repeat.

link|improve this answer
1  
@Camilo not sure if you're being sarcastic or not. If not, you should read up on Test-Driven Development ("TDD"), since "red green refactor" is its mantra. en.wikipedia.org/wiki/Test-Driven_Development – Epaga Nov 3 '10 at 9:50
show 2 more comments
feedback

Separate Data from Code. This is one of my biggest driving factors now--my ultimate mantra. I'm not talking about constants you declare in code as scalars, more about identifying patterns where you can extract data and place it in arrays and use them to instantiate collections of objects--eliminating repeated patterns.

This works very well on GUI code, I no longer would ever consider writing "new Button("Click Me")", because "Click Me" is data and should be from an array, as should all the GUI objects and, preferably, most of their locations and handlers.

This pattern allows some remarkable refactorings that are impossible without recognizing what is data and what is code.

link|improve this answer
1  
I think you're describing the technique known as 'data-driven programming', discussed excellently in Eric S. Raymond's "The Art of Unix Programming". – Bobby Jack Nov 20 '08 at 0:27
1  
Data driven programming is amazing. You really start to appreciate it when making games. – Cristián Romo Nov 22 '08 at 21:58
2  
It also sounds like declarative programming - which I also strive to use wherever it makes sense. – philsquared Dec 4 '08 at 13:36
show 1 more comment
feedback

I try to live by the words of Brian Kernighan:

Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.

I summarize to my co-workers as "Clever code kills".

link|improve this answer
feedback

When approaching other people's code I've taken to assuming that I am the biggest idiot on the face of the planet who has never seen a single line of code in his life. That way, whenever I get the urge to "correct" some line of code that seems pointless and wrong, I think to myself

"You know, I'm pretty dumb, and the person who wrote this probably isn't, so maybe I should find out why they wrote it before I go mucking around in here".

Often I will discover that there is in fact a reason for that line of code that I had never considered. Not to mention the number of times someone has "simplified" some piece of my code, only to discover the week before it releases that the code was actually required to handle that one case where if you hit the "o" key at the exact moment that you press OK while simultaneously playing "Eye of the Tiger" in iTunes via your iPod you will crash the application (which is relevant because your customer is a huge Survivor fan who obsessively presses the first letter of whatever dialog button he is clicking on - it happens).

link|improve this answer
3  
This is a really good reason to comment your intention too. They can often indicate to the next person that you aren't (or are) a complete idiot so the next person can react accordingly. – Bill K Nov 19 '08 at 22:03
1  
+1 for the story, and for inspiring me to play "Eye of the Tiger" in iTunes – discorax Nov 20 '08 at 17:22
show 3 more comments
feedback
  • Writing unit tests (first)
  • One (or zero)-step compile/deploy/test cycle
  • Know your tools (editor, build-system, vcs)
  • Use a VCS
  • KISS (keep it simple)
  • Know how the paradigms of your language (object orientation, functional etc)
link|improve this answer
show 1 more comment
feedback
  • Copying and Pasting == Time to Refactor

  • Make your code as simple as possible, but no simpler.

  • Code defensively.

  • Don't try to be smart or clever.

  • Let go of your ego.

  • Cheerfully accept criticism of code that you write.

  • Learn from your colleagues - even the newbie intern has things to teach you.

link|improve this answer
4  
+1 for "Learn from your colleagues - even the newbie intern has things to teach you." – pierr Aug 11 '09 at 2:08
show 2 more comments
feedback

Classes are fine, but don't start there. Instead, analyze flow of information. Where does it come from, where does it go to, how is it encoded, and when is it processed?

For example, if some of the information only changes once a week, possibly you could use a partial-evaluation pattern (i.e. code generator). This can be a divide-and-conquer strategy because the code generator only deals with part of the problem, and the generated code only deals with the remainder. Sounds funny, but it can really simplify things (as well as run a lot faster).

link|improve this answer
feedback

Fewer features, fewer configuration options = usable software = maintainable code = used software.

simple. bye.

link|improve this answer
3  
"fewer", "FEWER", godammit! ;-) – Bobby Jack Nov 20 '08 at 0:28
show 3 more comments
feedback

In OO languages, complex logic objects should have their API be as small and restricted as possible, and what is there should be documented as a contract. This cuts down on maintenance like you wouldn't believe at first. It makes unit tests for those objects possible. The alternative is objects that expose a smorgasbord of methods to others; they may as well be festooned with billboards shouting "Poke me!", and you'll never know what their state is at any given time.

The corollary to this is that you'll be surprised how often extending an existing class turns out not to be the right choice, in the case of logic objects. (It's significantly more frequent for simpler data objects.) For example, queues are one of the simpler data structures out there, and look a lot like lists - but they are not lists. If the list allows random-access insertion and removal, and sorting, and the queue inherits it, then it will have that too, and risks having other objects use it as a list unknowingly. A queue should contain such a list, perhaps, but not extend it; it should have a totally different API - limited, tested, and well-documented.

link|improve this answer
feedback

This has to do more with source control than code writing, but it impacts the way I develop my software:

Coherent and self contained source control commits:

Each time I'm about to develop a new feature or fix some bug, I plan the following two or three programming micro-tasks, and make sure each one is fully contained in a source control commit. Do not mix changes that are not related on the same commit.

Of course I'm talking about commits to my local branches. When pushing to the central repository, you should always commit full bug fixes and working features.

link|improve this answer
feedback

Reduce the number of possible 'states of being' that can exist

Ensure objects are initialized and consistent the instant they are constructed and stay so until they are destructed.

If you know your objects members are all initialized and valid while the object exists you can write methods to rely on that without worrying.

I often see code where the author doesn't recognize how important object lifetimes are. They expect you to construct an object and then call various initialize methods on it to get it bought properly to life. This means their code is littered with checks to see if members are valid before they're used. All these checks reduce the code to an impenetrable mess.

link|improve this answer
show 2 more comments
feedback

Code with sources managed under Version Control System!

That way, any refactoring is less an adventure and more a planified effort, with always the possibility to go back or to compare to a stable state.

link|improve this answer
feedback
  1. Use Subversion or some other sane version control system.

    • Use branching when doing risky work that might kill the whole build.
    • Be sure to carefully merge your risky work back into the trunk.
    • Be sure that you have a Subversion "hook" setup to run unit tests on code and make sure it passes all tests before checking the code in.

      (this way you know when you've broken something of somebody elses)

    • Be sure to comment in detail what the change has done on a check-in. And for pete's sake make sure your commits are atomic! (A.K.A. checking in all files that you changed relivent to the commit at once.)
    • Another good rule of thumb is one working-copy to a task.
  2. Use Unit-Testing on everything (even Javascript)

    • In this way you know what parts of your code work, and what parts of your code don't work.
    • (redundant yet very important) Also if you unit test you'll know when you've broken someone else's code, and thus you'll know when the two of you need to discuss it.
    • Unit-Testing also makes sure that you code is decoupled from other parts of the system (ensures that you've made good use of interfaces).
  3. Use a Dependency Injection Framework (okay not for JS). This is related to the bullet point above as well, and can allow you to do incredible things like using Aspect Oriented Programming to add and remove log statements very easily, also it helps when handling SQL transactions. (making sure your begin and commit statements are run at the right place in your code)

  4. Keep your team small, but highly skilled.

    • Too many cooks in the kitchen spoil the broth...
    • Too many people at the video store never pick out a movie...
  5. Communicate with your team as much as possible!
    Gone are the days when one could hide away in a cubical and just work on your project, it's all about team work now.

    • Have meetings, to discuss what the "team" as a whole is going to do.
    • Take notes in a shared wiki if possible.
    • regular at least weekly code reviews with your peers, discuss which design patterns are going to be used, and make UML design diagrams!
  6. Keep in time with the rest of the world...

    • Or as I like to call this one, "It's really hard to get help with Visual Studio 97' when it's almost 2009!"
    • Keep your frameworks/libraries, tools and compilers up-to-date, as it will make the questions you ask about them much less awkward, and more likely to get answered.
link|improve this answer
feedback

Separate your concerns!

Do not create "UBER" classes which contain a lot of knowledge of your domain, spread it out in logical parts, so that each class has a function in the system.

Also try to decouple a lot, so you can easily plug in your test/mock implementation for testing purposes.

link|improve this answer
feedback

Don't overengineer. Engineer it just enough to get the job done and to be able to maintain it.

link|improve this answer
feedback

1) Be Consistent. Nothing is harder to change or understand than inconsistent code.
Bonus: Comment WHY and perhaps HOW, but leave comments about defects, who, and when the changes were made to the SCM.

link|improve this answer
show 1 more comment
feedback

Consistent object naming and well documented source code. It's not a problem of anybody else reading your code after some months, that person might be you and sometimes you don't know why you did something that way or how something works.

link|improve this answer
show 1 more comment
feedback

Never pass around raw/native/library objects (specifically collections). I try to avoid passing around ANY raw java objects that I can't extend and aren't part of my "domain".

A class accepting a "List" gives no hint as to what you should pass in, a class expecting a "CarCollection" tells you exactly what to pass in, and the CarCollection class itself can ensure it's in a valid state with valid items, a List, even a generic List<Cars> cannot. Finally, you almost always want to add methods, when you use raw objects these usually become crappy utilities distributed throughout your code instead.

This has allowed me a remarkable flexibility when it comes to adding features that weren't planned for in the first place.

link|improve this answer
show 3 more comments
feedback

My personal list:

  • Understanding the bigger IT and domain pictures before writing code.
  • Doing a lot of thinking about what could go wrong, and what's likely to go wrong.
  • Paying my development taxes.
  • Sprinkling assertions liberally across my code and also code I have to maintain.
  • Using Try...Finally much more than Try..Catch.
  • Many comments explaining why certain design and implementation decisions were made.
  • Not sharing state between threads.
  • Poring over the documentation of a type before using it.
  • Refactoring constantly for simplicity and understandability.
link|improve this answer
show 2 more comments
feedback

Generalize the problem, write code that solves the general problem and use it to solve a specific case.

link|improve this answer
1  
Or use the Agile methodology of write the specific way twice, then refactor into the generic. – Bill K Nov 20 '08 at 17:42
feedback
  • Documentation before (What)
  • Coding
  • Documentation after (How) Unit
  • Testing (Validation & Verification)
link|improve this answer
feedback

Errr... document code!

Especially the public API, with a clear definition for each function, and the the list of authorized limit values for parameters.

Even though no other documentation ends up being written, that much can save me when I have to use (or to make other use) my code!


Interesting: the recommandation about

"When commenting: Tell me WHY you're doing something, not WHAT you're doing"

picks up a lot of vote, but this more general recommendation does not.

That would be consistent with what I see amongst the developers I work with:
no one document its API... (or at least, not many ;) )
(I am referring to public API comments, not to internal bits of wisdom left within a code which are simple comments, not documentation)

link|improve this answer
feedback
  • Increase Cohesion + Reduce Coupling between modules within design (eg. objects, threads, any functional blocks)
  • K.I.S.S. principle
link|improve this answer
feedback

When doing design, Create a GUI as one of the first parts of your design. On a whiteboard perhaps, or in simple front-end-only code. This is a GREAT way to communicate with your customers and find out if you are on the same level.

It also becomes about the best project specs you're likely to get.

I'm not saying code before design, the GUI is not actually the first code you write, it's just part of design that you may throw away or redesign when you actually get around to writing code.

link|improve this answer
show 1 more comment
feedback
1 2

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