start new:
tmux
start new with session name:
tmux new -s myname
As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/usr/bin/python -u | |
| """ | |
| Python port of PHP serialize() and unserialize() | |
| by Samuel Cochran <sj26@sj26.com> | |
| I couldn't find a nice, fairly efficient implementation of serialize/unserialize for Python... so I wrote one. I didn't use str().partition because I wanted Python <2.5 compatibility. | |
| TODO: Performance review. There's an awful lot of string copying. >.> |