Skip to content

Instantly share code, notes, and snippets.

@jmazzi
Forked from kennethreitz/deploy_complete.py
Created June 22, 2010 19:02
Show Gist options
  • Select an option

  • Save jmazzi/448904 to your computer and use it in GitHub Desktop.

Select an option

Save jmazzi/448904 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
voices = [
"agnes", "kathy", "princess", "vicki", "victoria", "bruce", "fred",
"junior", "ralph", "albert", "bad", "bahh", "bells", "boing",
"bubbles", "cellos", "deranged", "good", "hysterical", "pipe",
"trinoids", "whisper"
]
msgs = [
"deploy is now complete", "deploy complete", "deploy completed",
"sir the deployment has finished", "hey the deploy is done",
"look at this cool deploy", "deployment completeed"
]
system("say -v #{voices[rand(voices.size)]} #{msgs[rand(msgs.size)]}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment