Debugging an application today before launch I noticed a problem where it seemed to be parsing a specific time value (0900) incorrectly as (12:00 AM or ‘0000’). During my search I ran across this oddity with the parseInt function of Javascript. Apparently parseInt can also work with different base notations […]
time
Today I had an interesting task of figuring out why a piece of code I’d written a few weeks ago for autosaving user changes wasn’t being called as uniformly as we’d thought. That is, on IE6 and FF, we were seeing a particular piece of code take almost twice as […]