Skip to content

Instantly share code, notes, and snippets.

View remyroy's full-sized avatar

Rémy Roy remyroy

View GitHub Profile
running freeze
running compile_catalog
compiling catalog cddagl\locale\en\LC_MESSAGES\cddagl.po to cddagl\locale\en\LC_MESSAGES\cddagl.mo
compiling catalog cddagl\locale\fr\LC_MESSAGES\cddagl.po to cddagl\locale\fr\LC_MESSAGES\cddagl.mo
compiling catalog cddagl\locale\it\LC_MESSAGES\cddagl.po to cddagl\locale\it\LC_MESSAGES\cddagl.mo
compiling catalog cddagl\locale\ja\LC_MESSAGES\cddagl.po to cddagl\locale\ja\LC_MESSAGES\cddagl.mo
compiling catalog cddagl\locale\ru\LC_MESSAGES\cddagl.po to cddagl\locale\ru\LC_MESSAGES\cddagl.mo
wrote C:\Users\R�my Roy\Projects\CDDA-Game-Launcher\launcher.spec
now run pyinstaller.py to build the executable
95 INFO: PyInstaller: 3.5.dev0+51429f8fc
@remyroy
remyroy / make-new-hampshire.sh
Created May 18, 2018 04:32
Create Garmin maps from OSM+SRTM data
#!/usr/bin/env bash
# MAPID and CMAPID must be unique, my Garmin device only loads 1
MAPID=5121
CMAPID=5131
REMOTEPBF=new-hampshire-latest.osm.pbf
REMOTEPBFURL=https://download.geofabrik.de/north-america/us/$REMOTEPBF
REMOTEPOLY=new-hampshire.poly
REMOTEPOLYURL=https://download.geofabrik.de/north-america/us/$REMOTEPOLY
MAPDESCRIPTION="New Hampshire"
@remyroy
remyroy / compile.py
Created December 5, 2016 18:55
Cataclysm DDA: Survey Compilation Script
import csv
from ascii_graph import Pyasciigraph
from collections import OrderedDict
def lchoices(choices):
return map(lambda x: (x, 0), choices)
def main():
questions = OrderedDict()