This is a bit of a whimsical question inspired in part by the publicity for the movie 2012 but it is one that could have real implications for software systems. (If not in 2012, then definitely in 2038.)
There are all sorts of doomsday predictions for the year 2012 and i was wondering if there's a date time/timestamp system out there that is due to expire in 2012? (i thought i ran across one years ago but i don't recall the specifics. i could also be remembering 2038.)
For example, a commonly-used date time system starts at 1970/1/1 and counts by seconds from that time. If you add the max value of unsigned int as seconds to that value, you get a date that falls in 2038. 1/19/2038 3:14:07 AM to be exact.
So, is there a date time system where:
epoch start + max of common int type = date in 2012 ?
btw, i am not trying to fan any flames of paranoia. This is whimsy aligned with real systems design considerations.
UPDATE Donut found this page which contains the following reference but no further info: 2012-07-13 Fri - UNIX time_t $50000000 at 11:01:20 UTC
Any ideas?