#Fabric
Lord Junior 6th Gregory Eric Sanderson Turcot Temlett MacDonnell of Glengary Forbes of Linden
#!/usr/bin/env python2 | |
import urllib | |
import json | |
URL="HTTPS://mtgox.com/api/1/BTCUSD/ticker" | |
print json.loads(urllib.urlopen(URL).read())['return']['last_local']['value'] |
CONFIGFILE_PATH = "~/.tiktok.conf" | |
config = None | |
def get_config(): | |
global config | |
if not config: | |
config = loadconfig( configfile ) | |
return config | |
letters = { | |
'a': 'ka', | |
'b': 'zu', | |
'c': 'mi', | |
'd': 'te', | |
'e': 'ku', | |
'f': 'lu', | |
'g': 'ji', | |
'h': 'ri', | |
'i': 'ki', |
from sh import ifconfig, git, cd, touch, wc, find, ps, tail, ls, mkdir | |
def iface_info(iface='wlan0'): | |
print(ifconfig(iface)) | |
def create_git_repo(path): | |
mkdir(path, p=True) | |
cd(path) |
from __future__ import unicode_literals | |
from datetime import datetime | |
WHOLE_NOTE = "\U0001D15D" | |
HALF_NOTE = "\U0001D15E" | |
QUARTER_NOTE = "\U0001D15F" | |
EIGHTH_NOTE = "\U0001D160" | |
WHOLE_REST = "\U0001D13B" | |
HALF_REST = "\U0001D13C" |