This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[color] | |
ui = auto | |
[color "branch"] | |
current = yellow reverse | |
local = yellow | |
remote = green | |
[color "diff"] | |
meta = yellow bold |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying my Blockstack ID is secured with the address 17XA76TiyPcbne81V4kdoD5adYDQrsRARr https://explorer.blockstack.org/address/17XA76TiyPcbne81V4kdoD5adYDQrsRARr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[core] | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
ignorecase = true | |
[remote "origin"] | |
fetch = +refs/heads/*:refs/remotes/origin/* | |
url = [email protected]:crime-in-chicago/web.git | |
[branch "master"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-add; ssh -tqA -ljoin palisade.pairmill.com 4784c03e0e6f75093551 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[color] | |
ui = auto | |
[color "branch"] | |
current = yellow reverse | |
local = yellow | |
remote = green | |
[color "diff"] | |
meta = yellow bold | |
frag = magenta bold | |
old = red bold |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Initial code project | |
#!/usr/bin/env ruby | |
class Person | |
attr_reader :name | |
def initialize(name) | |
@name = name | |
end |
NewerOlder