Created
July 2, 2020 08:36
-
-
Save pyrsmk/5fb871ea23ef42c59643b46d04d214b2 to your computer and use it in GitHub Desktop.
A fancy dots loader
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def fancy_loader(current, total) | |
glyph = "⠹⠼⠶⠧⠏⠛"[(Time.now.to_f * 10).to_i % 6] | |
print "\r#{glyph} #{current}/#{total}" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment