Skip to content

Instantly share code, notes, and snippets.

@pbojinov
Last active April 26, 2017 20:01
Show Gist options
  • Save pbojinov/0b04ff7c8197686e5f5d0ea109307a47 to your computer and use it in GitHub Desktop.
Save pbojinov/0b04ff7c8197686e5f5d0ea109307a47 to your computer and use it in GitHub Desktop.
seconds since epoch
function seconds_since_epoch() {
return Math.floor( Date.now() / 1000 )
}
epoch_time = seconds_since_epoch();
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