I hereby claim:
- I am kjam on github.
- I am kjam (https://keybase.io/kjam) on keybase.
- I have a public key whose fingerprint is E197 50BD D484 DFF5 671D 7874 1F54 1EC6 1DE7 119B
To claim this, I am signing this object:
[{'user': 'can you please tell me how to negotiate a raise when my boss is a ' | |
'raging sexist?'}, | |
{'agent': '\n' | |
'\n' | |
'i am a woman working in a male dominated field. my boss is a ' | |
'sexist jerk who makes inappropriate comments all the time. i would ' | |
"love to negotiate a raise but am afraid to because i don't want to " | |
"give him leverage to say i'm asking for special treatment because " | |
'of my gender.\n' | |
'\n' |
# geturl.tcl: retrieve document from URL | |
# input has form [http://]abc.def.com[/whatever...] | |
regsub "http://" $argv "" argv ;# remove http:// if present | |
regsub "/" $argv " " argv ;# replace leading / with blank | |
set so [socket [lindex $argv 0] 80] ;# make network connection | |
set q "/[lindex $argv 1]" | |
puts $so "GET $q HTTP/1.0\n\n" ;# send request |
I hereby claim:
To claim this, I am signing this object:
import json | |
import agate | |
from print_int_table_issue import * #note: to not throw the other error you'll need to comment out the last line | |
def get_country(country_row): | |
return country_dict.get(country_row['Country / Territory'].lower()) | |
country_dict = {} | |
country_json = json.loads(open('earth-cleaned.json', 'rb').read()) |