Mines definatly well out if this is true.
http://img52.exs.cx/img52/8122/Untitled-1copy120.jpg
:lol: :lol:
Printable View
Mines definatly well out if this is true.
http://img52.exs.cx/img52/8122/Untitled-1copy120.jpg
:lol: :lol:
mine is always wrong
i fix it n then within 24 hours its wrong again so i finally gave up
Dont you mean atomic chips. Or is that fission chips.:wacko:Quote:
Originally Posted by JPaul
i think mine synchronises when it reports my porn to microsoft :huh:
Windows 2000 doesn`t have that option. :angry:Quote:
Originally Posted by TheDave
fyi its 21:20:42
:PCode:import java.net.*;
import java.io.*;
import java.util.*;
class Time
{
/* Network time is seconds from 1 Jan 1900
* Java time is milliseconds from 1 Jan 1970
* DIFFERENCE is number of seconds between these dates
*/
static long DIFFERENCE = 2208988800L;
public static void main (String [] args ) throws IOException
{
int b1,b2,b3,b4;
long remoteTime;
Socket sock = new Socket("time.nist.gov",37);
InputStream in = sock.getInputStream();
// read and pack four bytes
b1 = in.read();
b2 = in.read();
b3 = in.read();
b4 = in.read();
remoteTime = (((long)b1*256 + b2)*256 + b3)*256 + b4;
remoteTime -= DIFFERENCE;
sock.close();
Date remoteDate = new Date(remoteTime*1000); // convert to milliseconds
System.out.println("Remote time: "+remoteDate);
Date localTime = new Date();
System.out.println("Local time: "+localTime);
}
}
that a java thing that syncs time for win 2000?
It doesn't sync the time, just displays the remote time from the time server and then your own local system time, allowing you to see the difference.Quote:
Originally Posted by TheDave