start new:
tmux
start new with session name:
tmux new -s myname
| #!/usr/bin/python2.7 | |
| #-*- coding=utf-8 -*- | |
| import shlex | |
| import subprocess | |
| from tornado.gen import coroutine, Task, Return | |
| from tornado.process import Subprocess | |
| from tornado.ioloop import IOLoop | |
| @coroutine |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>WebSocket Client</title> | |
| <style> | |
| #output { | |
| border: solid 1px #000; | |
| } | |
| </style> | |
| </head> |
| #!/usr/bin/env bash | |
| # Usage: {script} [ OPTIONS ] TARGET VERSION | |
| # | |
| # TARGET Default target is "/usr/local". | |
| # VERSION If not defined tries to get the build into the Sublime Text 2 website. | |
| # | |
| # OPTIONS | |
| # | |
| # -h, --help Displays this help message. | |
| # |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <yahoo-weather-codes> | |
| <code number="0" description="tornado"/> | |
| <code number="1" description="tropical storm"/> | |
| <code number="2" description="hurricane"/> | |
| <code number="3" description="severe thunderstorms"/> | |
| <code number="4" description="thunderstorms"/> | |
| <code number="5" description="mixed rain and snow"/> | |
| <code number="6" description="mixed rain and sleet"/> | |
| <code number="7" description="mixed snow and sleet"/> |
| <?php | |
| /* | |
| Levi Thornton from boogybonbon and wordze generously posted his php Markov | |
| Chain class.. unfortunately there is a missing $nn++ thus the class can hang, | |
| the working version is below all credit to Levi for the code, i just fixed a | |
| bug. | |
| Example Usage: | |
| ------------------ |