-
-
Save mooreniemi/73e1a1fc024fa1fc7c9a to your computer and use it in GitHub Desktop.
Revisions
-
everm1nd revised this gist
Apr 4, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ # all emoji # 1000.times { |i| emoji(127740 + i) + ' ' } # moon phases # 8.times { |i| emoji(127761 + i) } -
everm1nd revised this gist
Apr 4, 2014 . 1 changed file with 8 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -8,20 +8,20 @@ # clean screen def clean puts "\e[H\e[2J"; end def emoji(n) print [n].pack('U*'); end clean() 64.times do 8.times do |i| clean emoji(127768 - i) puts sleep DELAY end end -
everm1nd renamed this gist
Apr 4, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
everm1nd created this gist
Apr 4, 2014 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ # all emoji # 1000.times { |i| emoji(127740 + i) } # moon phases # 8.times { |i| emoji(127761 + i) } DELAY = 0.3; # clean screen def clean puts "\e[H\e[2J"; end def emoji(n) print [n].pack('U*'); end clean() 64.times do 8.times do |i| clean emoji(127768 - i) puts sleep DELAY end end