/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
% gets a timestamp in ms from the epoch get_timestamp() -> {Mega,Sec,Micro} = erlang:now(), (Mega*1000000+Sec)*1000000+Micro.