Skip to content

Instantly share code, notes, and snippets.

@jgeurts
jgeurts / install-graphite-ubuntu-12.04.sh
Created July 14, 2012 16:36 — forked from tkoeppen/install-graphite-ubuntu-10.04.sh
Install Graphite 0.9.10 on Ubuntu 12.04
####################################
# BASIC REQUIREMENTS
# http://graphite.wikidot.com/installation
# http://geek.michaelgrace.org/2011/09/how-to-install-graphite-on-ubuntu/
# Last tested & updated 10/13/2011
####################################
cd
sudo apt-get update
sudo apt-get upgrade
@abhin4v
abhin4v / CoderWeeklyToInstaper.py
Created July 3, 2012 07:53
Python script to push latest Coder Weekly article links to Instapaper
from bs4 import BeautifulSoup
import requests
from urlparse import urlparse
import sys
if len(sys.argv) != 3:
print "Usage: python CoderWeeklyToInstapaper.py <instapaper_username> <instapaper_password>"
sys.exit()
else:
(_, username, password) = sys.argv