Skip to content

Instantly share code, notes, and snippets.

@flying3615
flying3615 / tmux-cheatsheet.markdown
Created December 19, 2018 03:01 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@flying3615
flying3615 / introrx.md
Created June 24, 2017 00:40 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@flying3615
flying3615 / elasticsearch.md
Created November 14, 2016 09:16 — forked from nicolashery/elasticsearch.md
Elasticsearch: updating the mappings and settings of an existing index

Elasticsearch: updating the mappings and settings of an existing index

Note: This was written using elasticsearch 0.9.

Elasticsearch will automatically create an index (with basic settings and mappings) for you if you post a first document:

$ curl -X POST 'http://localhost:9200/thegame/weapons/1' -d \
'{
  "_id": 1,