Stackless Python 探秘
提到stackless python, 相信很多人早已对其有所耳闻。作为Python解释器的另一种实现,其设计思路对整个Python世界产生了 深远影响。坦白的讲,我并没有大规模stackless python 的应用经 …
2016-06-01 22:00
A Simple Guide To Setup Hostname Of 127.0.0.1 On MacOS Yosemite
Sometimes we have to map a hostname to loopback address 127.0.0.1 by some reasons of development. This is a simple guide to show how to...
2015-11-19 21:29
SSH from A through B to C, using private key on B on Mac OS X
Schematic: ssh ssh A ------> B ------> C ^ ^ using A's using B's ssh key ssh key Preconditions: A is running ssh-agent; A can access B;...
2015-07-07 23:29
How To Customize Save In Django Admin Inline Form
Background This is a common case in django ORM. from django.db import models class Author(models.Model): name =...
2014-10-01 23:00