Skip to content

Instantly share code, notes, and snippets.

@hernanvicente
Forked from emad-elsaid/age.rb
Created February 25, 2014 06:34
Show Gist options
  • Save hernanvicente/9203873 to your computer and use it in GitHub Desktop.
Save hernanvicente/9203873 to your computer and use it in GitHub Desktop.
require 'time'
Date_of_birth = '1988-8-31'
# Credit to : http://stackoverflow.com/questions/4136248/how-to-generate-a-human-readable-time-range-using-ruby-on-rails
# and modified a little bit
def humanize secs
[
[60, :seconds],
[60, :minutes],
[24, :hours],
[365, :days],
[100, :years]
].map do |count, name|
if secs > 0
secs, n = secs.divmod(count)
"#{n.to_i} #{name}"
end
end.compact.reverse.join(' ')
end
loop do
distance = Time.new - Time.parse(Date_of_birth)
print humanize(distance)+"\r"
sleep 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment