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
#!/bin/sh | |
usage() { | |
cat << EOF | |
USAGE: | |
$0 [options] "book title" "book author" | |
OPTIONS: | |
-c [red, brick, orange, gold, yellow, lime, (default is plasma) |
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 python3 | |
# SPDX-License-Identifier: Unlicense | |
"""Convert SVG to black and white.""" | |
import sys | |
import argparse | |
import pathlib | |
import re | |
import colorsys |
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/python | |
# -*- coding: utf-8 -*- | |
# | |
# author: rex | |
# blog: http://iregex.org | |
# filename trie.py | |
# created: 2010-08-01 20:24 | |
# source uri: http://iregex.org/blog/trie-in-python.html | |
# escape bug fix by fcicq @ 2012.8.19 |