Skip to content

Instantly share code, notes, and snippets.

View fabienvauchelles's full-sized avatar
💭
Happy !

Fabien Vauchelles fabienvauchelles

💭
Happy !
View GitHub Profile
#!/bin/bash
# Install pip
wget https://bootstrap.pypa.io/ez_setup.py -O - | python
easy_install pip
# Install dependencies
pact install libffi-devel libxml2-devel libxslt-devel
# Install Scrapy
#!/bin/sh
# Command is:
# curl --silent --location <URL> | sudo bash -
# Install NodeJS
curl --silent --location https://deb.nodesource.com/setup_0.12 | bash -
apt-get install --yes nodejs
# Install proxy
@fabienvauchelles
fabienvauchelles / proxy.js
Last active October 17, 2015 21:32
ProxyUp
'use strict';
var http = require('http'),
net = require('net');
var config = {
port: process.env.port || 3128,
};