Skip to content

Instantly share code, notes, and snippets.

View rnix's full-sized avatar
💭
I may be slow to respond.

Robert Nix rnix

💭
I may be slow to respond.
View GitHub Profile
@rnix
rnix / neighborhoods.geojson
Created June 30, 2015 17:32
neighborhoods
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rnix
rnix / .gitignore
Last active August 29, 2015 14:09
PostGIS Tiger Build - Fixes the horribleness that is the PostGIS Tiger script generation
*
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rnix
rnix / bootstrap.sh
Last active August 29, 2015 14:06
Vagrantfile bootstrap
#!/bin/bash
apt-get update -qy
apt-get install -qy python g++ make curl git build-essential software-properties-common python-software-properties
@rnix
rnix / .gitignore
Last active June 25, 2020 04:09 — forked from dbehnke/gorilla-go-json-rpc-test.go
Gorilla RPC/v2 example
gorilla-go-json-rpc-test
gorilla-go-json-rpc-test.out
@rnix
rnix / README.md
Last active August 29, 2015 13:56
Auto-install elasticsesarch service wrapper

Modifies elasticsearch.conf, determines OS bit-depth, optioanlly configures RUN_AS_USER.

e.g. Usage:

curl -ksL https://gist.github.com/rnix/8823390/raw/install-elasticsearch-servicewrapper.sh | bash -s [ES_HOME [RUN_AS_USER]]

@rnix
rnix / postgres-apt.sh
Last active August 29, 2015 13:55
Add PostGreSQL apt repository
#!/bin/bash
URL='http://anonscm.debian.org/loggerhead/pkg-postgresql/postgresql-common/trunk/download/head:/apt.postgresql.org.s-20130224224205-px3qyst90b3xp8zj-1/apt.postgresql.org.sh'
curl -L "${URL}" | sudo bash -s precise
@rnix
rnix / .gitignore
Last active December 19, 2015 08:59
Vagrant mapnik : ubuntu precise64 virtualbox
*
@rnix
rnix / README.md
Last active December 15, 2015 13:09
curl -ks https://gist.github.com/rnix/5265588/raw/neo4j-ubuntu.sh | sudo bash -

debian.neo4j.org

@rnix
rnix / README.md
Last active December 13, 2015 18:49
GDAL Java ./configure and swig/java/java.opt patches for building gdal.jar on Mac OS X.
curl -ks https://gist.github.com/rnix/4958168/raw/build.sh | bash

Then remember to add the following to the JVM's environment that'll be importing gdal:

export LD_LIBRARY_PATH=${PWD}/.libs:${LD_LIBRARY_PATH}
export DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH}:${LD_LIBRARY_PATH}

where ${PWD} is the gdal/swig/java directory (unless you install the libraries).

DISCLAIMER