Skip to content

Instantly share code, notes, and snippets.

@torgebo
torgebo / .gitconfig
Created November 16, 2015 15:03 — forked from pksunkara/config
Sample of git config file (Example .gitconfig)
[user]
name = Pavan Kumar Sunkara
email = pavan.sss1991@gmail.com
[core]
editor = vim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore
[sendemail]
smtpencryption = tls
smtpserver = smtp.gmail.com
@torgebo
torgebo / z_order_curve.sql
Last active August 31, 2015 19:57 — forked from ajw0100/z_order_curve.sql
The Z-Order Curve and Amazon Redshift's Interleaved Sort Keys
with
years(year_id, year) as (
select i, 'Year ' || i
from generate_series(0, 3) i
),
regions(region_id, region) as (
select i, 'Region ' || i
from generate_series(0, 3) i