vote up 10 vote down star
2

All too often I see other people reinventing the wheel, and when I do, I wonder what factors played into their decision to do so.

There are times I reinvent the wheel consciously, merely because I am interested in the mental exercise, and other times without realizing it because of a lack of research.

What are considerations you use before making the decision to reinvent the wheel?

flag

14 Answers

vote up 14 vote down check

Here are some thoughts:

  • Is what is available free or paid? If paid, do I need all the features, and if not, then compared to the cost of developing the features I need, is the already available less or more?
  • If you don't like the performance, usability, etc. of what is available.
  • Licensing restrictions.
link|flag
vote up 2 vote down

I keep wondering why we spend so much energy reinventing wheels, when we ought to be inventing wings.

For me, reinventing the wheel is almost always a waste of time; there isn't enough time to do all the creative non-wheel coding I have in my mind as it is. Why diminish availability even further?

link|flag
vote up 2 vote down

If we don't reinvent the wheel, how can we improve it? A wheel is much more than just a round thing. In fact, not every wheel is the same. Ever seen the steering wheel of a 19th century cutter? Try driving with that on your axles.

My point is, "reinventing the wheel" is a cliche that is all too often applied to any situation where someone is doing something that's already been done. Just because something has been done before doesn't mean it's not worth doing again. That's how we learn and improve.

link|flag
While it seems a bit of an injustice to apply a simple analogy to something as complex as software development, it works because the analogy is abstract enough. I agree that we can learn & improve from doing this, and that is why I asked about the_considerations_to_use before doing it. – Jason Bunting Feb 23 at 17:36
vote up 2 vote down

I often reinvent the wheel when existing wheels would require enough brittle glue code to make them more trouble than they're worth to reuse, or would constrain other aspects of the project too much. For example, maybe the wheel I need is in a different language than the one I'm using or want to use and interfacing things would be non-trivial. Maybe the existing wheel is a command line tool without a well-defined/documented API and I would have to invoke it using a bunch of shell commands and then read in and parse its output, rather than just calling a function. Maybe the existing wheel only does approximately what I want it to (for example, expects input in a completely different format than I'm using, or outputs data in a completely different format than I want), and wrapping it to make it do exactly what I want would result in lots of brittle kludges.

link|flag
Thank you for your response, I hadn't thought of some of the issues you brought up because I haven't really had occasion to find myself in those situations as yet, but imagine it will happen eventually. – Jason Bunting Feb 23 at 17:30
vote up 6 vote down

I reinvent a lot of wheels myself, generally either because:

a) The existing wheel is just far enough off from what I actually need that I'll end up spending more time customizing it than it would take to write my own.

or

b) I need a simple screwdriver, but all I can find are 42-function swiss army knives and I don't want all the baggage of the existing tool's extra complexity and/or find it to be documented poorly-enough that figuring out how to make it just do what I need (without invoking any of the other 41 functions) would be likely to take longer than just writing my own.

Reading over that, I guess it basically comes down to "I reinvent wheels when the existing wheels are either too specific or too general."

link|flag
vote up 1 vote down

I was about to duplicate this post because I was annoyed that so many of the hints and suggestions coming out suggest the adoption of some framework that would simplify my job, but take me out of the loop.

Fortunately, my job affords me countless hours to re-invent the wheel. I don't necessarily consider it a bad thing because it lets me understand new concepts that I wouldn't otherwise have grasped. I can sift and winnow useful coding practices from non-useful.

Essentially our educations were 99% reinvention of the wheel. Did you ever make a better-than-C compiler in your compilers class?

And I'd say there are too many entrepreneurs getting paid for designing Wordpress templates. Reinventing the wheel is the noble thing to do in almost every case. Only out of your naivete can come your great geniousete.

link|flag
vote up 3 vote down

One consideration I think is often overlooked is the "experience cost" that's already built into existing, working systems. That's the sum of all the time spent debugging problems and doing the tweaking needed to integrate with other code. Often, this makes the code uglier or the interface more complicated that you'd expect when first defining whatever problem is to be solved, but you shouldn't disregard that making some wrapper code to hide the warts of an existing library or component is a lot easier than writing new code that gets all the little unexpected details right.

link|flag
vote up 4 vote down

Consider that you may inadvertently reinvent the flat tire. If what you're developing is for production work you should do your research and use an existing wheel. If it's for learning purposes, then you should feel free to experiment.

link|flag
vote up 16 vote down

I recently built a blogging tool from scratch. No, I'm not joking.

The problem was I knew that even if I started off with a good off-the shelf solution (like Wordpress) I was going to spend a lot of time customizing it. For example, it needed to integrate with the existing authorization system and it needed to use the existing WYSIWYG editor. (No, I didn't reinvent the editor, but I had customized it. :-)) And it had a couple of extra (albeit minor) features that you don't find in a typical blog.

In the end, I think I saved myself a lot of frustration. Building a basic blog was easy. It's a well understood problem, and I had no trouble designing and programming the specific features I needed. I spent most of the time on the "custom" parts that I would have had to build into an off-the-shelf solution anyway. And that work was easier because I was starting from scratch rather than modifying an existing system.

I felt vindicated the other day when I came across this nugget in Robert L. Glass's Facts and Fallacies of Software Engineering.

Fact 19: Modification of existing code is particularly error-prone. If more than 20 to 25 percent of a component is to be revised, it is more efficient and effective to rewrite it from scratch.

link|flag
vote up 2 vote down

Sometimes you need to build a wheel.

link|flag
vote up 10 vote down

Before re-inventing, make sure you really need a wheel.

link|flag
vote up 2 vote down

It always depends on what your going to be using it for. For example, if something that does what you need exists, but it doesn't perform as fast as you would like or it's not quite as extensible as you want, it may be a good case to write your own version.

Many software projects that rely on other people's code can run in to problems because that code wasn't written with their specific usage in mind.

This is why the whole "Lego building block" method of programming still isn't really a possibility, as most of those "legos" would have to be tailored to that specific project in the end anyways.

Often times I've even found that I've spent the time to write a complete abstraction/compatibility layer to a third-party API so that it will mesh with my code better and I have more control.

link|flag
vote up 1 vote down

Here's another way to think about it: the things you do yourself are the things you provide value for and differentiate yourself with. If it doesn't do either of those, don't bother. If it does any of those, then you should probably bother.

Of course, research and education are valid reasons also. Just don't ship those.

MSN

link|flag
vote up 5 vote down

Your lack of faith in already existing implementations could move you to reinvent the wheel. Often there are libraries available, but they have not been tested enough or you just think (or know) their quality is poor.

Also, license compatibility!

link|flag

Your Answer

Get an OpenID
or

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