Skip to content

Instantly share code, notes, and snippets.

View jacoblyles's full-sized avatar

Jacob jacoblyles

  • Feeling Good
  • Lancaster, PA
View GitHub Profile
@marcuswestin
marcuswestin / scrape-crunchbase-funding-rounds.js
Created June 27, 2012 21:28
Stay up to date on funding rounds
// sudo npm install request && sudo npm install jsdom
var request = require('request')
var jsdom = require('jsdom')
var pages = process.argv.slice(2)
if (!pages.length) { pages = [0] }
console.error('Scrape Crunchbase funding rounds. Pages:', pages)
@marcuswestin
marcuswestin / upload-images.js
Created June 27, 2012 01:17
Upload all the images of a page to s3
/*
# First, install node and:
sudo npm install jsdom
sudo npm install aws2js
sudo npm install request
*/