last update: Dec 4, 2020
- macOS >= 10.14 (Mojave); tested with 10.15 (Catalina)
- homebrew properly installed
last update: Dec 4, 2020
| # deb http://mirrors.aliyun.com/ubuntu trusty main restricted | |
| # deb http://mirrors.aliyuncs.com/ubuntu trusty main restricted | |
| # deb http://mirrors.aliyun.com/ubuntu trusty-updates main restricted | |
| # deb http://mirrors.aliyuncs.com/ubuntu trusty-updates main restricted | |
| # deb http://security.ubuntu.com/ubuntu trusty-security main restricted | |
| # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
| # newer versions of the distribution. | |
| deb http://mirrors.aliyun.com/ubuntu trusty main restricted |
disable_flush and disable_recovery (TD)| #!/usr/bin/env python | |
| __author__ = 'Kevin Warrick' | |
| __email__ = 'kwarrick@uga.edu' | |
| import cPickle | |
| from functools import wraps | |
| def redis_lru(capacity=5000, slice=slice(None)): | |
| """ | |
| Simple Redis-based LRU cache decorator *. |
| server { | |
| index index.php; | |
| set $basepath "/var/www"; | |
| set $domain $host; | |
| # check one name domain for simple application | |
| if ($domain ~ "^(.[^.]*)\.dev$") { | |
| set $domain $1; | |
| set $rootpath "${domain}"; |
| import gevent | |
| from gevent import monkey, queue | |
| monkey.patch_all() | |
| import urllib2 | |
| from time import sleep | |
| import traceback | |
| import logging |
| var http = require('http'); | |
| var qs = require('querystring'); | |
| function parse_response(res, callback) { | |
| var list = []; | |
| res.on('data', function(chunk) { | |
| list.push(chunk); | |
| }); | |
| res.on('end', function() { | |
| callback(Buffer.concat(list).toString()); |
| i386 : iPhone Simulator | |
| x86_64 : iPhone Simulator | |
| arm64 : iPhone Simulator | |
| iPhone1,1 : iPhone | |
| iPhone1,2 : iPhone 3G | |
| iPhone2,1 : iPhone 3GS | |
| iPhone3,1 : iPhone 4 | |
| iPhone3,2 : iPhone 4 GSM Rev A | |
| iPhone3,3 : iPhone 4 CDMA | |
| iPhone4,1 : iPhone 4S |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Tornado WebSocket Sample</title> | |
| </head> | |
| <body> | |
| <input type="text" id="username" value="myname" /> | |
| <button id="connect">connect</button> | |
| <div id="result"></div> |