Skip to content

Instantly share code, notes, and snippets.

@denisdefreyne
Last active October 10, 2015 15:48
Show Gist options
  • Save denisdefreyne/3713929 to your computer and use it in GitHub Desktop.
Save denisdefreyne/3713929 to your computer and use it in GitHub Desktop.
Retardedly simple egg timer
start = Time.now ; duration = 5*60 ; while ((diff = Time.now - start) < duration) do sleep 1 ; q, r = (duration - diff).divmod(60) ; puts "%imin %2.0fs" % [ q, r ] ; end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment