Skip to content

Instantly share code, notes, and snippets.

@msroot
Last active January 31, 2016 09:38
Show Gist options
  • Select an option

  • Save msroot/89b93252cd574d7067b2 to your computer and use it in GitHub Desktop.

Select an option

Save msroot/89b93252cd574d7067b2 to your computer and use it in GitHub Desktop.
Yiannis Deliyiannis bday
# bash < <(curl -s http://mywebsite.com/myscript.txt)
require 'rubygems'
require 'nokogiri'
require 'open-uri'
page = Nokogiri::HTML(open("http://www.wishesquotes.com/birthday/top-50-friends-birthday-wishes"))
line ||= 100.times.map{"-"}.join << "\n"
icons = %w(πŸŽ‚ πŸŽ‰ ❀️ πŸ‘ πŸ™ 😎 πŸ’ͺ 🎈 🎁 )
wishes = page.xpath('//*[@id="post-3186"]/div/ul[1]').css('li').to_a
beer = -> {
Array(1..31).sample.times.map{"🍺"}.join(" ")
}
while true
puts "\e[32m #{icons.sample} Yiannis Deliyiannis:\e[0m"
puts line
puts wishes.sample.text
puts beer.call
puts line
sleep 5
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment