today I'm thinking about how floating point numbers can be treacherous -- what are specific examples of when they've betrayed you?
so far I have:
* money calculations where you need to get the exact correct answer (you have to use integers, not floats)
* twitter's tweet IDs are bigger than 2^53 and can't be represented as a Javascript number, you have to use a string
I'm looking for specific examples of what code you were writing that broke, not general facts about floats