vote up 0 vote down star
1

Has this ever happened to you? What was the bug or situation which was ended up becoming a feature? What was your experience with this?

flag
1  
Kudos on making this CW from the start. – Dav Nov 6 at 5:00
Thanks a ton Dav. – curious_geek Nov 6 at 8:29

2 Answers

vote up 0 vote down

I am working for an Insurance Company and once I was working on a quote and buy website. There were two payment options.

  1. Creadit Card (Full Payment) - 10% Discount
  2. Direct Debit (monthly payment)

But paying via direct debit was not easy. In order to stop frauds the customer has to pay 2 months advance premium through credit card and then pay the rest 10 via Direct Debit.These were two entire process and the client wanted the project ASAP and I made a mistake of collecting 12 months premium via CC (instead of 2 months) and then activate 10 months via Direct Debit.

During Testing with the payment gateway this was found out but business,after seeing this bug, wanted to changed the design a little bit and thought about providing discount if they paid via CC. So instead of 2 months (by default) we had dropdown having values 2,4,6,12 months and discounts were given based on users choice.

link|flag
vote up 0 vote down

Kind of. I was writing some kernel code that under some cases dereferenced the NULL at the end of a linked list. (In kernel mode this did not cause a segfault.)

I discovered this while trying to find a bug, and was about to fix it when I realised that it didn't cause any harm (it was only a read, not a write, and did not result in any unwanted effects). Furthermore, avoiding the NULL dereference would result in a minor performance penalty. So I left it there.

link|flag

Your Answer

Get an OpenID
or

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