Skip to content

Instantly share code, notes, and snippets.

@nickyleach
Created December 1, 2010 21:08
Show Gist options
  • Save nickyleach/724227 to your computer and use it in GitHub Desktop.
Save nickyleach/724227 to your computer and use it in GitHub Desktop.
Bookmarklet to convert from unixtime
javascript:ts = prompt("Unix timestamp:"); date = new Date(ts*1000); alert(date.toUTCString());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment