Skip to content

Instantly share code, notes, and snippets.

@ahamid
ahamid / art.rb
Created November 28, 2011 07:38 — forked from duckinator/art.rb
#!/usr/bin/env ruby
i=0.0
loop do
print " " * (padding + (Math.sin(i) * 5)),
"Art and technology do coexist, if you let them\n\n"
i += 0.1
sleep 0.03
end