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 python3 | |
""" | |
Mapfile format: | |
## More than meets the eye | |
@ -a2 -q19 | |
1 1x09 - Fire on the Mountain |
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 bash | |
# vim: ts=4 sw=4 sts=4 et ai | |
set -eu | |
### Usage: mapfile arguments | |
### | |
### Mapfile format: | |
### 1 1x09 - Fire on the Mountain |
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
" Vim syntax file | |
" Language: Escoria Script | |
" Maintainer: Markus Törnqvist | |
" Last Change: 2018 09 18 | |
" Inspired heavily by python's syntax stuff | |
setlocal foldmethod=syntax | |
"" Magic words |
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 python3 | |
""" | |
Assumes you have three templates: "Linux/X11", "Mac OSX" and "Windows Desktop" | |
all propertly configured with export templates and settings. | |
Version information should be %VERSION% throughout. | |
This script will replace that and some project settings for the build and then | |
reset them back. |
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/python3 | |
from collections import namedtuple | |
import itertools | |
import operator | |
import re | |
import sys | |
DialogSpec = namedtuple('DialogSpec', ('fname', 'id', 'dialog', 'comment')) |
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 bash | |
# vim: ts=4 sw=4 et ai | |
# Markus Törnqvist <[email protected]> 2016 | |
# Licensed under the DWTFYW public license | |
set -eu | |
FP2_BLOBS=fp2-sibon-16.11.0-blobs.sh |
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 python3 | |
from collections import namedtuple | |
import concurrent.futures | |
import os | |
import subprocess | |
import sys |
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/python | |
import os, sys, string, getopt, filecmp | |
from path import path | |
from types import * | |
from stat import * | |
optlist = [] | |
"""Global default parameters""" |
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 bash | |
set -eu | |
VIM_BASE=/home/mjt/.local/neovim-linux64/ | |
export VIMRUNTIME=${VIM_BASE}/share/nvim/runtime/ | |
exec ${VIM_BASE}/bin/nvim $@ |
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
/* | |
* License: WTFPL | |
* Markus Törnqvist <[email protected]> | |
* | |
* Influenced heavily by http://www.linuxquestions.org/questions/programming-9/read-from-a-usb-barcode-scanner-that-simulates-a-keyboard-495358/ | |
* and the hidapi README example | |
*/ | |
#include <errno.h> | |
#include <stdio.h> |
NewerOlder