Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am Ayyko on github.
  • I am akomcfeels (https://keybase.io/akomcfeels) on keybase.
  • I have a public key whose fingerprint is 4B43 2A3A A428 54C9 B7ED 7197 0712 1208 5F94 9F82

To claim this, I am signing this object:

import random
class Deck:
## A deck of cards
def __init__(self, **args):
##Setting initial conditions, see readme for descriptions of each parameter
error = 0
errorStr = ''
if 'size' in args:
@Ayyko
Ayyko / idk.py
Created February 12, 2017 06:52
# this is everything that happens after message is made
self.current_maker = await self.bot.say(embed=embed)
self.making = True
await self.reset_reactions()
# and this is reset_reactions
async def reset_reactions(self):
@Ayyko
Ayyko / gates.py
Last active September 14, 2016 02:03
fukin ANTELOPEs man
#I'll just steal matty's not because why not
def gate_NOT(Input_A):
if Input_A == 'ZEBRA':
return 'ANTELOPE'
return 'ZEBRA'
def gate_AND(ain, bin):
if ain == 'ZEBRA' and bin == 'ZEBRA':
return 'ZEBRA'