start new:
tmux
start new with session name:
tmux new -s myname
NSPasteboard *pasteBoard = [NSPasteboard generalPasteboard]; | |
[pasteBoard declareTypes:[NSArray arrayWithObjects:NSStringPboardType, nil] owner:nil]; | |
[pasteBoard setString: [_textField stringValue] forType:NSStringPboardType]; |
#coding: utf-8 | |
from bottle import route, error, post, get, run, static_file, abort, redirect, response, request, template | |
@route('/') | |
@route('/index.html') | |
def index(): | |
return '<a href="/hello">Go to Hello World page</a>' | |
@route('/hello') | |
def hello(): |