Skip to content

Instantly share code, notes, and snippets.

@malpinder
Created March 24, 2014 12:56
Show Gist options
  • Save malpinder/9739531 to your computer and use it in GitHub Desktop.
Save malpinder/9739531 to your computer and use it in GitHub Desktop.
A more readable version of Aaron Patterson's moon tweet. https://twitter.com/tenderlove/status/435590528025899008
moon_id=0x1F311
loop do
8.times do |i|
delete = ("\b"*6)
moon = [moon_id+i].pack("U")
spaces = (" "*5)
line = delete + moon + spaces
print(line)
sleep(0.1)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment