I hereby claim:
- I am skwerlman on github.
- I am skwerlman (https://keybase.io/skwerlman) on keybase.
- I have a public key whose fingerprint is 5D9D F29E 62C5 C2E2 951A DC69 8628 2389 9AC2 E445
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Find and follow instructions for your particular distro.
import sys | |
def usage(): | |
sys.stdout.write('usage: replace.py pairing [pairing ...]') | |
sys.stdout.write(' a pairing is a char and what to replace it with') | |
sys.stdout.write(' e.g. replace.py a A would replace all \'a\' with \'A\'') | |
sys.exit(1) | |
#!/usr/bin/env python | |
import csv | |
import json | |
import re | |
import requests | |
from bs4 import BeautifulSoup | |
from zenlog import log | |
NAME_CORRECTION_DICT = { |
#!/usr/bin/env python3 | |
""" | |
Run migrations on the servatrice database. | |
Reads migrations from `servatrice/migrations/` and runs them | |
on the database in order. | |
Only runs migrations if they are nedded. This is determined using | |
the cockatrice_schema_version table. |
#!/usr/bin/env bash | |
# linux-torrent.sh | |
# Inspired by this script: | |
# https://github.com/ppaskowsky/Bash/blob/master/auto-linux-downloader.sh | |
# Copyright (C) 2015 by skwerlman | |
# | |
#============================== CONFIGURATION ===============================# |
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:97ca20fe068f554cbd1270bc286dc153c1944242] |
<?xml version="1.0" encoding="UTF-8"?> | |
<cockatrice_carddatabase version="3"> | |
<sets> | |
<set> | |
<name>GNT</name> | |
<longname>Game Night</longname> | |
<settype>Box</settype> | |
<releasedate>2018-11-16</releasedate> | |
</set> | |
</sets> |
#!/usr/bin/env bash | |
# The protobuf source folder | |
IN_DIR='proto_buf' | |
# The folder to place the compilation folder into | |
# The compilation folder always shares a name with the IN_DIR | |
# so this cannot be blank | |
OUT_DIR='lib' | |