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
@boardstretcher
boardstretcher / bower_install.sh
Created June 11, 2014 15:49
Install bower web package manager + node.js + npm
#!/bin/bash
# Install bower web package manager + node.js + npm
# Centos 6.5+
# Attribution-NonCommercial-ShareAlike
# CC BY-NC-SA
# https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode
# This script will install node.js, npm and bower. All great programs to have for developing
@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() );