Live data from Hacker News

Happy New Year 2025

news.ycombinator.com

11–20 of 269 posts

Re: Happy New Year 2025

#17
The days are getting longer in the northern hemisphere and shorter in the southern hemisphere. And the start of the ISO 8601 dates is changing!

I also monitor the changes of the hexadecimal unix timestamps. The next time the first of 8 hex digits changes is in 2029.

    from datetime import datetime
    '{:02X}'.format(int(datetime.now().timestamp()))
    datetime.fromtimestamp(0x70000000)
And this spits out the year in Python: 3**2**2*5**2
Post reply on HN