Current condition (via Mefi) is a website lurking in the airwaves and wires somewhere between teletext, those high-number cable channels that just play music and weather, and where the planes were in 19A0 or so.
function randomString(length, chars) { var result = ''; for (var i = length; i > 0; --i) result += chars[Math.floor(Math.random() * chars.length)]; return result;}
function year19A0(){var rString = randomString(1, 'A▲△◬◭◮⧊⟁⧋');var sString = randomString(1, '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ');
document.getElementById('A0').innerHTML = rString + sString;
}
setInterval(year19A0, 50);