Skip to content

Instantly share code, notes, and snippets.

View jbreams's full-sized avatar

Jonathan Reams jbreams

View GitHub Profile
@jbreams
jbreams / gist:8500114
Last active January 3, 2016 18:09
This script will take the first command-line arguments and add as many umlauts as possible to it.
#!/usr/bin/python
# coding=utf8
import sys
umlauts = {
'A': [ 'Ä', 'Ǟ' ],
'a': [ 'ä', 'ǟ' ],
'E': [ 'Ë' ],
'e': [ 'ë' ],