Work withTAI64 timestamps:
http://cr.yp.to/libtai/tai64.html
TAI64 is amazing. You should be using it for your logs.
Add this line to your application's Gemfile:
gem 'tai64'
And then execute:
$ bundle
Or install it yourself as:
$ gem install tai64
require 'tai64'
l = Tai64.parse '@400000005083208a00ffffff'
l.to_time.to_s # => "2012-10-20 22:06:56 UTC"
t = Tai64::Time.new Time.at(1350770816)
t.to_label.to_s # => "@400000005083208a000001f4"
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request