Last active
April 26, 2017 20:01
-
-
Save pbojinov/0b04ff7c8197686e5f5d0ea109307a47 to your computer and use it in GitHub Desktop.
seconds since epoch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function seconds_since_epoch() { | |
return Math.floor( Date.now() / 1000 ) | |
} | |
epoch_time = seconds_since_epoch(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
epoch_time = int(time.time()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment