# File lib/plugins/saykanji.rb, line 46
def say(who, text)
  text_to_say = text.gsub(URI.regexp(['http', 'https']), 'U.R.I.')
  voices = %w(Alex Alex Bruce Fred Ralph Agnes Kathy Vicki)
  voice = voices[who.hash % voices.size]
  system 'say', '-v', voice, text_to_say
end