Skip to content

Instantly share code, notes, and snippets.

@rsheldiii
Created October 6, 2016 19:00
Show Gist options
  • Save rsheldiii/feba5b06b866ed88795e1b7a06e77389 to your computer and use it in GitHub Desktop.
Save rsheldiii/feba5b06b866ed88795e1b7a06e77389 to your computer and use it in GitHub Desktop.
automatic compliment sandwich generator
#!/usr/bin/env ruby
top = ['this looks awesome! ', 'this is excellent!', 'My eyes, they can\'t handle the glory!', 'but soft! what code through yonder window breaks?', 'Stellar!', 'Radical dude!', 'Perfect! I love it!']
bottom = ['You got it, dude!', 'keep rockin, pal!', 'But that\'s just a small suggestion.', 'But everything else is wonderful!', 'But I love how everything else looks!']
puts [top.sample, ARGV.join(' '), bottom.sample].join(' ')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment