Skip to content

Instantly share code, notes, and snippets.

View derek-schaefer's full-sized avatar

Derek Schaefer derek-schaefer

View GitHub Profile
@derek-schaefer
derek-schaefer / gist:2925756
Created June 13, 2012 18:50
PostGIS Template Creation Script
#!/bin/sh
# Run a command as the postgres user
AS_POSTGRES="sudo -u postgres"
# Set path to postgresql contrib path
POSTGIS_SQL_PATH=/usr/share/postgresql/9.1/contrib
#Create the template spatial database
$AS_POSTGRES createdb -E UTF8 -T template0 template_postgis
@derek-schaefer
derek-schaefer / qr.html
Created June 6, 2012 12:31
QR Code Generator
<html>
<head>
<title>QR Code Generator</title>
<style type="text/css">
#container {
width: 800px;
margin: auto;
}
#generator {
width: 350px;