Mysterious website

Page 9 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.

FeuerFrei

Diamond Member
Mar 30, 2005
9,144
929
126
FWIW here's the script it's running.
var timerID = null;
var timerRunning = false;
var timestart=new Date();
var servertime=new Date('23:03:48 June 30, 2006');
var localdiff=Math.floor(timestart/1000)-Math.floor(servertime/1000);
function showtime() {
var timenow=new Date();
var launch=new Date('00:00:00 July 01, 2006');
diff = ((launch-timenow)/1000)+localdiff;
if(diff<=0 && !document.getElementById('deployed')) {
location.href='/';
/* REDIR UNTIL USER/SERVER SYNC */
}
else {
ldays=Math.floor(diff/24/60/60);
lhours=Math.floor((diff/60/60)-(ldays*24));
lmins=Math.floor((diff/60)-(ldays*24*60)-(lhours*60));
lsecs=Math.floor(((diff)-(ldays*24*60*60)-(lhours*60*60)-(lmins*60)));
if(ldays<0) { ldays=0; }
if(lhours<0) { lhours=0; }
if(lmins<0) { lmins=0; }
if(lsecs<0) { lsecs=0; }

lsecs = lsecs + '';
if (lsecs.length == 1)
{
lsecs = "0" + lsecs;
}

lmins = lmins+ '';
if (lmins.length == 1)
{
lmins = "0" + lmins;
}

lhours = lhours + '';
if (lhours.length == 1)
{
lhours = "0" + lhours;
}

document.getElementById('days').innerHTML=ldays+'d:';
document.getElementById('hours').innerHTML=lhours+'h:';
document.getElementById('minutes').innerHTML=lmins+'m:';
document.getElementById('seconds').innerHTML=lsecs+'s';
timenow=null;
timerID = setTimeout("showtime()",1000);
timerRunning = true;
}
}
var timerID = null;
var timerRunning = false;
function stopclock() {
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}
function startclock() {
stopclock();
showtime();
}

 

xanis

Lifer
Sep 11, 2005
17,571
8
0
Is anyone actually worried about this, there's been a lot of hype. Personally, I'm a little skeptical.