-
-
Save jmazzi/448904 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #!/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