Skip to content

Instantly share code, notes, and snippets.

@alexslade
Created January 29, 2013 16:51
Show Gist options
  • Save alexslade/4665735 to your computer and use it in GitHub Desktop.
Save alexslade/4665735 to your computer and use it in GitHub Desktop.
subjects = [
"Youre",
"Your dad is",
"Your lightbulb is",
"Your Mum is",
"You have no friends and youre",
"I dont mean to be rude, but youre"
]
severities = [
"really",
"quite",
"amazingly",
"kind of",
"extremely",
"very",
"sort of",
"slightly"
]
insults = [
"smelly",
"dodgy",
"ugly",
"retarded",
"stupid",
"boring",
"lazy"
]
subject = subjects.sample
insult = insults.sample
severity = severities.sample
string = "#{subject} #{severity} #{insult}"
puts string
exec("say #{string}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment