Skip to content

Instantly share code, notes, and snippets.

View pasiaj's full-sized avatar
🎯
Focusing

Pasi Jokinen pasiaj

🎯
Focusing
View GitHub Profile

Keybase proof

I hereby claim:

  • I am pasiaj on github.
  • I am pasiaj (https://keybase.io/pasiaj) on keybase.
  • I have a public key whose fingerprint is 731A DD66 0A62 DFD4 2201 A5C0 4FE1 632B 513B 0138

To claim this, I am signing this object:

@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() );