Last active
August 29, 2015 14:06
-
-
Save mattantonelli/3d5eaa8399a84dd8df96 to your computer and use it in GitHub Desktop.
A Ruby script to stroke your ego! Or not!
This file contains 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 | |
# encoding: utf-8 | |
ego_level = ARGV[0].to_i | |
if ego_level == 0 | |
puts "You're pretty average." | |
else | |
puts "You are s#{'o' * ego_level.abs} #{ego_level < 0 ? 'un' : ''}cool!!!" | |
end |
Author
mattantonelli
commented
Sep 18, 2014
████████╗██╗ ██╗ █████╗ ███╗ ██╗██╗ ██╗███████╗
╚══██╔══╝██║ ██║██╔══██╗████╗ ██║██║ ██╔╝██╔════╝
██║ ███████║███████║██╔██╗ ██║█████╔╝ ███████╗
██║ ██╔══██║██╔══██║██║╚██╗██║██╔═██╗ ╚════██║
██║ ██║ ██║██║ ██║██║ ╚████║██║ ██╗███████║
╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚══════╝
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment