vote up 1 vote down star

I often hear of situations where a bug in a program is passed off as a feature. This seems like a useful skill to have.

Please describe a technique for doing this - preferably with specific examples.

flag

69% accept rate
1  
should be community wiki – Neil Butterworth Jun 28 at 11:51
1  
You will mostly get a -ve point for this question. I think this question is like asking how to rob a bank legally. If you know this is a bug & it is only trouble for the end user you should own up rather than pass it off as a feature. – Ganesh R. Jun 28 at 11:52
3  
most often bugs are 'passed off' a features in a joking manner. i assume this post should be too. – akf Jun 28 at 11:55
2  
This was meant to be slightly tongue in cheek (hence the humor tag) - But I think that seeing specific examples of this would be helpful in recognising situations where someone is trying to pass bugs off as features in code that you might be a user of. – Pablojim Jun 28 at 11:55
I didn't realise slightly humorous questions were not allowed. Sorry – Pablojim Jun 28 at 12:15
show 1 more comment

closed as not a real question by OrbMan, SilentGhost, Aiden Bell, Paolo Bergantino, Noldorin Jun 28 at 12:03

2 Answers

vote up 0 vote down

It is not a good idea to accept bugs as features as it corresponds to unordered development.

  • Accept all accidental features as bugs and re-implement such features.
  • Accidental features can be avoided by writing tests first. Have a look at Test Driven Development.
link|flag
vote up 0 vote down

I don't know. I once used the argument that if my program throws a particular exception (ArrayIndexOutOfBoundsException in my case) is because the user circumvented the javascript length validation on the JSP form.

Of course I fixed this issue later by returning a more gently "Please do not mess with the form." kinda answer instead of just the 500 Server Error page.

But please, use static analysis tools and unit testing to prevent such kind of silly bugs slip into the production.

link|flag

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