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 characters
| #!/usr/bin/env ruby | |
| # | |
| # vtplayer.rb - A simple script to play vt100 animations. | |
| # Made with ❤︎ by redperadot@darkgem.net - v0.1 | |
| # | |
| # Some places to find vt100 animations: | |
| # http://artscene.textfiles.com/vt100/ | |
| # http://www.scovetta.com/archives/textfiles/art | |
| require 'open-uri' |
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 characters
| #!/usr/bin/env ruby | |
| # | |
| # pong.rb v0.1.3 - Monitor network addresses. | |
| # Made with ❤︎ by redperadot@darkgem.net | |
| module Scripter extend self | |
| def clean_exit(message = nil) | |
| Signal.trap("INT") { |signo| Scripter.tput('clear'); puts; puts message if message; exit 0 } | |
| end |
OlderNewer