Skip to content

Instantly share code, notes, and snippets.

View stankiewicz's full-sized avatar

Radosław Stankiewicz stankiewicz

View GitHub Profile
@stankiewicz
stankiewicz / gist:a43e8d7cd2850ca7691a
Created January 18, 2015 18:49
Sample Sales Data
wget https://www.dropbox.com/s/c4qkctgdxvq41fe/SalesJan2009_final.csv?dl=0
mv SalesJan2009_final.csv* SalesJan2009_final.csv
@stankiewicz
stankiewicz / gist:506466d68fb2fbb89cd4
Last active August 29, 2015 14:13
Install, Configure Kibana to Localhost ES instance
wget https://download.elasticsearch.org/kibana/kibana/kibana-3.1.2.zip
unzip kibana-3.1.2.zip
cd kibana-3.1.2
touch SimpleCorsHTTPServer.py
#! /usr/bin/env python2
# http://stackoverflow.com/a/21957017/4368212 - poke
from SimpleHTTPServer import SimpleHTTPRequestHandler
import BaseHTTPServer
class CORSRequestHandler (SimpleHTTPRequestHandler):
@stankiewicz
stankiewicz / gist:050d63e3bd59d9064638
Created January 18, 2015 18:06
Elastic Search Download and Run
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.4.2.zip
unzip elasticsearch-1.4.2.zip
cd elasticsearch-1.4.2
echo "http.cors.enabled: true" >> ./config/elasticsearch.yml
./bin/elasticsearch