Skip to content

Instantly share code, notes, and snippets.

View menriquez's full-sized avatar
💭
working on easyRETS with my buddy Gene...

mark enriquez menriquez

💭
working on easyRETS with my buddy Gene...
View GitHub Profile
@pasiaj
pasiaj / phantomjs-linkedin.js
Created July 31, 2013 19:57
A phantomjs script to: a) Login to Linkedin.com b) Scrape all your contacts c) Visit all the contacts d) Automatically endorse all contacts' skills.
var auth = {
user: "USERNAME",
pass: "PASSWORD"
};
function ParallelRunner (list, func, runners) {
function createSlots(runners) {
var slots = [];
for (var i = 0; i < runners; i++) {
slots.push( objReturner() );