Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Created June 3, 2010 09:06
Show Gist options
  • Save ELLIOTTCABLE/423671 to your computer and use it in GitHub Desktop.
Save ELLIOTTCABLE/423671 to your computer and use it in GitHub Desktop.
require 'time'
class Time
def to_ujd
("%.6f"%(self.to_f / 86400)).split(".").map.with_index {|e,i| e.reverse! if i.zero?; e = e.scan(/\d{1,3}/).join(" "); e.reverse! if i.zero?; e }.join(" ſ ")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment