Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

Milliseconds since 1970

 [1/3] from: hallvard::ystad::oops-as::no at: 15-May-2004 20:09


Hi, everyone Many computers calculate their time as the number of milliseconds since January 1, 1970. How do I get that number out of rebol's date! or time!? HY Better hurry, loads of them pass by while I'm sitting here.

 [2/3] from: greggirwin:mindspring at: 15-May-2004 13:03


Hi Hallvard, HY> Many computers calculate their time as the number of milliseconds HY> since January 1, 1970. How do I get that number out of rebol's HY> date! or time!?
>> 1000 * to decimal! difference now/precise 01-jan-1970
== 1084647682996 -- Gregg

 [3/3] from: hallvard:ystad:oops-as:no at: 15-May-2004 22:37


Brilliant. Thanks, Gregg!Dixit Gregg Irwin (21.03 15.05.2004):