Skip to content

Instantly share code, notes, and snippets.

View n1ywb's full-sized avatar

Jeff Laughlin n1ywb

View GitHub Profile
@n1ywb
n1ywb / git-working-history
Last active August 29, 2015 14:25 — forked from gabro/git-working-history
Github-like working directory history
#!/bin/bash
FILES=`git ls-tree --name-only HEAD .`
MAXLEN=0
IFS=$(echo -en "\n\b")
for f in $FILES; do
if [ ${#f} -gt $MAXLEN ]; then
MAXLEN=${#f}
fi
done
import math
from qgis.core import *
from processing.core.VectorWriter import VectorWriter
##degspacing=number 30
##distance=number 5000000
##numrings=number 4
##centerx=number 0.0
##centery=number 0.0