I hereby claim:
- I am sigurdga on github.
- I am sigurdga (https://keybase.io/sigurdga) on keybase.
- I have a public key whose fingerprint is 2AB5 8FD5 CFC4 0E90 AC07 61B5 92E2 2B10 A02E 9526
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
backend default { | |
.host = "127.0.0.1"; | |
.port = "8080"; | |
} | |
backend skravvel { | |
.host = "127.0.0.1"; | |
.port = "3001"; | |
} |
DAEMON_OPTS="-a :80 \ | |
-T localhost:6082 \ | |
-f /etc/varnish/default.vcl \ | |
-S /etc/varnish/secret \ | |
-s malloc,256m" | |
const GeocodeGlib = imports.gi.GeocodeGlib; | |
let location = new GeocodeGlib.Object(); | |
location.add('city','Milwaukee'); | |
let result = location.resolve(); | |
print(result); |
const GeocodeGlib = imports.gi.GeocodeGlib; | |
let location = new GeocodeGlib.Object.new_for_coords(37.416275, -122.025099); | |
let result = location.resolve(); | |
print(result); |
#!/bin/sh | |
echo "$(tput setab 1 )====== pylint $1 ======$(tput op)" | |
pylint --output-format=colorized --reports=n $1 | |
echo "$(tput setab 1 )====== pep8 ======$(tput op)" | |
pep8 --show-source $1 | |
echo "$(tput setab 1 )====== pyflakes ======$(tput op)" | |
pyflakes $1 |