start new:
tmux
start new with session name:
tmux new -s myname
From http://www.darkcoding.net/software/cleaning-up-old-git-branches/
Switch to the main branch, usually 'develop':
git checkout develop
Get a list of fully merged branches:
| import JSON | |
| ################### | |
| ### Write data #### | |
| ################### | |
| # dictionary to write | |
| dict1 = Dict("param1" => 1, "param2" => 2, | |
| "dict" => Dict("d1"=>1.,"d2"=>1.,"d3"=>1.)) | |
| # pass data as a json string (how it shall be displayed in a file) | |
| stringdata = JSON.json(dict1) |