Skip to content

Instantly share code, notes, and snippets.

View omad's full-sized avatar

Damien Ayers omad

View GitHub Profile
@dadoonet
dadoonet / attachment.sh
Created October 17, 2012 17:49 — forked from lukas-vlcek/gist:1075067
Test of attachments plugin
#!/bin/sh
http://cloud.github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.19.10.zip
unzip elasticsearch-0.19.10.zip
elasticsearch-0.19.10/bin/plugin -install elasticsearch/elasticsearch-mapper-attachments/1.6.0
elasticsearch-0.19.10/bin/elasticsearch
sleep 10
@tunaranch
tunaranch / gist:1294370
Created October 18, 2011 01:05
BeautifulSoup wrapper than prettifies stdin
#!/usr/bin/python
from BeautifulSoup import BeautifulSoup
import sys
soup = BeautifulSoup(sys.stdin.read())
print soup.prettify()