It's definitely new year's countdown.
Code:
import java.util.Calendar;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
public class Test{
public static void main(String args[]){
DateFormat formatter = new SimpleDateFormat("dd/MM/yyyy hh:mm:ss.SSS");
long now = (System.currentTimeMillis()/1000 + X)*1000;
/* X should have the value of the number shown on google countdown */
Calendar calendar = Calendar.getInstance();
calendar.setTimeInMillis(now);
System.out.println(now + " = " + formatter.format(calendar.getTime()));
}
}
This game me the date:
01/01/2010 12:00:00.000