This file contains 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 | |
import argparse, logging | |
from collections import namedtuple | |
import numpy as np | |
# TODO: | |
# - diff scan_code and key_id? | |
LOG_MOUSE_EVENTS = { | |
512 : 'mouse movement', |
This file contains 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 | |
''' | |
Quick and dirty hack to get the SIKS dissertation list in LaTeX. | |
''' | |
import argparse, re, operator, itertools, sys | |
parser = argparse.ArgumentParser( | |
description='Convert SIKS dissertation list to LaTeX.') | |
parser.add_argument('txt') | |
parser.add_argument('tex') |
NewerOlder