Skip to content

Instantly share code, notes, and snippets.

@MintPaw
MintPaw / guess.py
Created August 14, 2016 09:20
Attempts to guess your opponents HS deck.
from bs4 import BeautifulSoup
from urllib.request import urlopen
import re
import pickle
import sys
from colorama import Fore, Back, Style, init
init()
decks = list()
@MintPaw
MintPaw / createAnim.sh
Created January 5, 2016 22:04
Create temporary animation frames
if [ "$1" = "--help" ] || [ "$1" = "" ]; then
echo "createAnim <animName> <numberOfFrames> <dims> <bgColour>"
echo "Example: createAnim walking 3 200x200 white"
echo "Use NONE as animName for no text"
exit
fi
for a in `seq $2`
do
label=$1_$a