63108.45288

Updated the small python countdown script.

import sys
import time
import re
t = (2011, 1, 4, 8, 0, 0, 0, 0, -1)
endCount = time.mktime(t)
currentCount = time.time()
count = (endCount) - (currentCount)

def main():
  while (True):
    currentCount = time.time()
    count = (endCount) - (currentCount)
    >countString = str(count)
    eagleweiner = countString.split(‘.’)
    moosepenis = len(eagleweiner[0])
    print trunc(moosepenis, count),
    sys.stdout.flush()
    print “\r”,
    time.sleep(.1)

def trunc(n, f):
  slen = len(‘%.*f’ % (n, f))
  return str(f)[:slen]

if __name__ == ‘__main__’:
  main()