This file contains 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 chriszs on github. | |
* I am chriszs (https://keybase.io/chriszs) on keybase. | |
* I have a public key ASCPTZgM93KmdLhIcWU8IMbBxNl--zE644Vwhb1NupJHywo | |
To claim this, I am signing this object: |
This file contains 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
LOAD CSV WITH HEADERS FROM 'https://static01.nyt.com/newsgraphics/2017/07/21/opposite-job/32175e8ee679c6b87f5ca1cc675fe555dbb5d8da/matches.csv' AS line | |
MERGE (job1:Job { title: line.title}) | |
MERGE (job2:Job { title: line.opposite_job}) | |
CREATE (job1)-[:OPPOSITE_OF]->(job2) |
This file contains 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
FilingType | Description | |
---|---|---|
A | Amendment Report | |
C | Candidate Report | |
D | Campaign Notice | |
G | Gift Disclosure Waiver Request | |
H | New Filer Report | |
O | Annual Report | |
P | Periodic Transaction Report | |
T | Terminated Filer Report | |
W | Withdrawal |
This file contains 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
license: gpl-3.0 |
This file contains 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
var turf = require('turf'), | |
_ = require('lodash'); | |
// iterate through markets | |
markets = markets.map(function (stations) { | |
// and stations within those markets | |
var transmitters = stations.map(function (station) { | |
// reduce the stations to coordinates, or null | |
if (station.fcc_station && station.fcc_station.transmitter && station.fcc_station.transmitter.coordinates) { | |
return turf.point(station.fcc_station.transmitter.coordinates); |
This file contains 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
var archieml = require('archieml'), | |
google = require('googleapis'); | |
var drive = google.drive('v2'); | |
var OAuth2 = google.auth.OAuth2; | |
var oauth2Client = new OAuth2(process.env.GOOGLE_CLIENT_ID, process.env.GOOGLE_CLIENT_SECRET, 'http://localhost'); | |
var docId = process.env.DOC_ID; | |
var exportLinkCache = null, |
This file contains 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
var express = require('express'); | |
var app = express(); | |
app.get('/your/route/here',function(req, res){ | |
res.send('hello world'); | |
}); | |
function request(method,route,cb) { | |
app.handle({ |
This file contains 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
Domain Name Agency | |
ACUS.GOV Administrative Conference of the United States | |
ACHP.GOV Advisory Council on Historic Preservation | |
PRESERVEAMERICA.GOV Advisory Council on Historic Preservation | |
ADF.GOV African Development Foundation | |
USADF.GOV African Development Foundation | |
ABMC.GOV American Battle Monuments Commission | |
AMTRAKOIG.GOV AMTRAK | |
ARC.GOV Appalachian Regional Commission | |
ASC.GOV Appraisal Subcommittee |
This file contains 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
#target photoshop | |
var destHeight = 800 | |
var destWidth = 800 | |
function resize (sourceDoc,dest_w,dest_h) { | |
var source_w = sourceDoc.width.as("px") | |
var source_h = sourceDoc.height.as("px") | |
if (dest_w == 0 && dest_h != 0) { |
This file contains 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
[ | |
{ | |
"user": "616672539", | |
"page_id": "d38ums", | |
"posts": [ | |
[ | |
"feed_tracking", | |
{ | |
"ft": { | |
"evt": 51, |