Skip to content

Instantly share code, notes, and snippets.

View philiphacks's full-sized avatar

Philip philiphacks

  • Arkadiko
View GitHub Profile
@Florent2
Florent2 / gist:1220951
Last active September 12, 2016 07:28
The technical books I've read
@karmi
karmi / tagcloud.sh
Last active September 4, 2017 02:01
Simple tag cloud with ElasticSearch `terms` facet
# (Re)create the index
curl -X DELETE "http://localhost:9200/tagcloud"
curl -X PUT "http://localhost:9200/tagcloud"-d '{
"settings" : {
"index" : {
"number_of_shards" : 1,
"number_of_replicas" : 0
}
}
}'