Skip to content

Instantly share code, notes, and snippets.

[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
Verifying my Blockstack ID is secured with the address 17XA76TiyPcbne81V4kdoD5adYDQrsRARr https://explorer.blockstack.org/address/17XA76TiyPcbne81V4kdoD5adYDQrsRARr
### Keybase proof
I hereby claim:
* I am chadwpry on github.
* I am blockjumper (https://keybase.io/blockjumper) on keybase.
* I have a public key ASBsSUVlSoeVlzJpMPKIKrJW9pqJpEFrf6vvL1r0Fjal4wo
To claim this, I am signing this object:
### Keybase proof
I hereby claim:
* I am chadwpry on github.
* I am chadwpry (https://keybase.io/chadwpry) on keybase.
* I have a public key whose fingerprint is 05A5 F443 783B 48A8 63E5 A093 892E 2FA7 1A92 6B30
To claim this, I am signing this object:
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:crime-in-chicago/web.git
[branch "master"]
@chadwpry
chadwpry / gist:1608769
Created January 13, 2012 21:22
Postgres database.yml
# SQLite version 3.x
# gem install sqlite3-ruby (not necessary on OS X Leopard)
development:
adapter: postgresql
host: localhost
port: 5432
username: chad
password:
database: fudtruck_development
schema_search_path: public
ssh-add; ssh -tqA -ljoin palisade.pairmill.com 4784c03e0e6f75093551
SELECT DISTINCT l.id, f.id, c.id
FROM public.lobbyists r
INNER JOIN public.chi_lobbyists l
ON r.first_name = l.first_name and r.last_name = l.last_name
INNER JOIN public.chi_firms f
ON r.employer_name = f.name
INNER JOIN public.chi_clients c
ON r.client_name = c.name
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
# Initial code project
#!/usr/bin/env ruby
class Person
attr_reader :name
def initialize(name)
@name = name
end