Skip to content

Instantly share code, notes, and snippets.

@eiri
Created June 10, 2014 00:26
Show Gist options
  • Save eiri/74f7c9a107d7eb858df7 to your computer and use it in GitHub Desktop.
Save eiri/74f7c9a107d7eb858df7 to your computer and use it in GitHub Desktop.
erlang:now() to unix timestamp and back
now_to_timestamp() ->
now_to_timestamp(erlang:now()).
now_to_timestamp({Mega, Sec, _}) ->
Mega * 1000000 + Sec.
timestamp_to_now(TS) ->
{TS div 1000000, TS rem 1000000, 0}.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment