Skip to content

Instantly share code, notes, and snippets.

@ishideo
Last active November 22, 2018 14:59
Show Gist options
  • Save ishideo/0f510791b6f2d4e4ac2e19ae94779e30 to your computer and use it in GitHub Desktop.
Save ishideo/0f510791b6f2d4e4ac2e19ae94779e30 to your computer and use it in GitHub Desktop.
unix time generator bookmarklet
javascript: (function() {
var date = new Date();
prompt("unix time:", date.getTime());
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment