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
puts " . ." | |
puts " ) ( " | |
puts " ((____/))" | |
puts " ( @) (@ )" | |
puts " ) ( " | |
puts " (_o_^_o_)" | |
puts " V V " | |
puts "" |
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
class Year | |
def happy_new(year) | |
puts "happy new year!".upcase | |
puts year | |
end | |
end | |
tomorrow = Year.new |
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
#!/bin/bash | |
cd /etc | |
echo "nameserver 8.8.8.8" > resolv.conf | |
echo "nameserver 4.4.4.4" >> resolv.conf |