-
Witchblade
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
bad_l_tt_r = chr(101) | |
num_rals = { | |
"M": 1000, | |
"CM": 900, | |
"C": 100, | |
"XC": 90, | |
"L": 50, | |
"XL": 40, | |
"X": 10, |
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
from builtins import chr | |
from random import choice, randint | |
def random_emoji(): | |
return chr(choice([ | |
randint(0x1F601, 0x1f64f), | |
randint(0x2702, 0x27b0), | |
randint(0x1f680, 0x1f6c0), | |
randint(0x24c2, 0x1f251), |
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
http://jsbin.com/soneyefeye/4/edit?html,js,output <- go here to see what this code actually does |
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
from mcpi import minecraft, vec3, block | |
from collections import defaultdict, Counter | |
from random import choice | |
mc = minecraft.Minecraft.create() | |
INSTRUCTIONS = {} | |
INVENTORY = defaultdict(int) | |
def register(command): |
NewerOlder