This is an overview of my screenscale
project that i worked on today.
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
https://scryfall.com/card/sok/35/erayo-soratami-ascendant-erayos-essence | |
https://scryfall.com/card/uds/118/rofellos-llanowar-emissary | |
https://scryfall.com/card/cn2/77/leovold-emissary-of-trest | |
https://scryfall.com/card/ody/117/braids-cabal-minion | |
https://scryfall.com/card/avr/106/griselbrand | |
https://scryfall.com/card/roe/4/emrakul-the-aeons-torn | |
https://scryfall.com/card/shm/257/painters-servant | |
https://scryfall.com/card/exo/72/recurring-nightmare | |
https://scryfall.com/card/ons/118/trade-secrets |
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
Board of Canada: Music has the Right to Children | |
Easy Star All-Stars: Dub Side of the Moon | |
The Glitch Mob: Love Death Immortality | |
Justice: † | |
Miike Snow: Miike Snow | |
Miike Snow: Happy To You | |
Royksopp: Senior | |
Royksopp: Junior | |
Royksopp: Melody A.M. | |
Royksopp: The Understanding |
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
#!/usr/bin/env python | |
from math import log, ceil | |
def get_longest(array): | |
return int(ceil(log(max(array), 10))) | |
def get_digit(number,digit): | |
return number / (10 ** digit) % 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
import sys | |
print sys.argv[1] if len(sys.argv) > 1 else 'dummy' |
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
def fibn(count, cur=0, old=1): | |
if count <= 0: | |
return curr | |
else: | |
return fibn(count - 1, curr + old, curr) |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import sys | |
import os | |
using_unicode = True | |
using_color = True | |
_bar = '│' if using_unicode else '|' |