Skip to content

Instantly share code, notes, and snippets.

@noir-neo
Last active August 9, 2018 14:41
Show Gist options
  • Select an option

  • Save noir-neo/bc41882c3f8774c78df8ee67fd0aa88c to your computer and use it in GitHub Desktop.

Select an option

Save noir-neo/bc41882c3f8774c78df8ee67fd0aa88c to your computer and use it in GitHub Desktop.
def draw(s)
puts s
File.write("countdown.txt", s)
end
e = Time.now + (60*60*24)
while 0 < t = e - Time.now
draw Time.at(t).utc.strftime("%T")
sleep 1
end
draw '๐ŸŽ‡ TIME IS UP!!! ๐ŸŽ†'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment