↧
Django deployment, FastCGI and UNIX-domain sockets
For various (mostly security) reasons I prefer to deploy Django applications as separate processes, with web server and actual application running under different UIDs, communicating with each other...
View ArticlePython care and feeding, the Dropbox way
I've just revealed (by pure accident, actually), that Dropbox client binary (i.e. Dropbox.exe file) is in fact a zip file with compiled Python files inside (.pyc files, that is). Interesting, huh? A...
View ArticleGevent monkey patching versus sniffer & nose
Unless you already know, gevent is a great library built on top of greenlet module and libevent event loop, that allows for easy coroutine-based cooperative multitasking in networked applications. By...
View Article