Skip to content

Instantly share code, notes, and snippets.

@Nautigsam
Last active December 1, 2015 17:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nautigsam/3e4b45ca3a626db9fbca to your computer and use it in GitHub Desktop.
Save Nautigsam/3e4b45ca3a626db9fbca to your computer and use it in GitHub Desktop.
Print a fancy rolling guy in your terminal.
# 340 characters
def s; sleep 0.2 end
alias p puts
while 1 do
l="LOL"
e=' '
a="\e[H\e[2J#{e*8}/\\o\n#{e*9}/\\/\n#{e*8}/\\\n#{e*7}/ \\\n"+e*6+(l+e)*2+"\n:-D LOLLERSKATES :-D"
s()
p a
a[15..16]=" _"
a[27..30]="//|_"
a[40..41]=" |"
a[50..53]=" /| "
a[61..68]=" LLOL "
s()
p a
a[16]=e
a[27..30]=" /_ "
a[40..41]="|\\"
a[50..53]="/ |"
a[60..65]=l*2
s()
p a
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment