1 2 3 4 5 6 7 8 9 10 11 12 13 | from twisted.web.server import Site from twisted.web.resource import Resource from twisted.internet import reactor from twisted.web.static import File root = Resource() root.putChild("foo", File("/tmp")) root.putChild("bar", File("/lost+found")) root.putChild("baz", File("/opt")) factory = Site(root) reactor.listenTCP(8880, factory) reactor.run() |
Daily Archive for August 6th, 2010
沢尻エリカの美しき官能の世界が表現された特集がNumero TOKYO 9月号(7/28発売)に掲載。
テーマはズバリ「露出」と「絡み」。
企画段階から沢尻エリカ本人が携わり、クリエーションへのこだわりが感じられる内容に。沢尻エリカはこのために体を作り上げ、撮影に挑んだそう。今の心情を語ったロングインタビューも衝撃的。
- 方法一:先通过
ctrl-z把程序放到后台,再通过bg %<jobid>提交命令到后台,最后使用disown -h %<jobid>。现在就可以退出终端,程序依然还在运行。 - 方法二:使用screen和retty
$ screen -S my_process
$ retty $(pgrep my_process)
/redraw
Recent Comments