Skip to content

Instantly share code, notes, and snippets.

View binury's full-sized avatar

Robin Ury binury

  • Texas
  • 19:20 (UTC -05:00)
View GitHub Profile
@binury
binury / keybase.md
Created July 28, 2016 06:58
My keybase verification

Keybase proof

I hereby claim:

  • I am teddy-error on github.
  • I am du (https://keybase.io/du) on keybase.
  • I have a public key whose fingerprint is 2BF6 D5D8 C51F 9CD8 D59A AD19 2BFC ED30 84EA 35C4

To claim this, I am signing this object:

{
"room": "Radiant Music",
"author": "Origin",
"icon": "https://cdn.radiant.dj/rcs/icons/radiant/logo.png",
"css": "https://cdn.radiant.dj/rcs/rs_room.css",
"rules": {
"allowAutorespond": true,
"allowAutowoot": true,
"allowAutojoin": false,
"allowAutograb": true,
original = raw_input('Enter a word:')
if len(original) > 0 and original.isalpha():
word = original.lower()
first = word[0]
if first == 'a' or 'e' or 'i' or 'o' or 'u':
new_word = word + 'ay'
print new_word
else:
new_word = word[1:] + 'ay'