2 comments

[ 4.8 ms ] story [ 13.0 ms ] thread
I created this site to enhance my New Year's Eve experience.

There are plenty of websites with countdown timers, but I couldn't find one solely dedicated to watching the year increment.

It's also super useful if you wake up from a long cryosleep, have access to a time machine, or otherwise need confirmation of your place in history.

Hope you find this a useful addition to your celebrations!

Not much to it... time better spent kissing someone... he he

    function refresh() {
        document.getElementById("year").innerText = new Date().getFullYear();
        window.requestAnimationFrame(refresh);
    }
    refresh();