Linux 环境变量

环境变量 (environment variables) 和 shell 变量 (shell variables) 的有区别吗?环境变量在进程之间是怎么传递的?

tmux 终端复用神器

tmux is a terminal multiplexer: it enables a number of terminals to be created, accessed, and controlled from a single screen. tmux may be detached from a screen and continue running in the background, then later reattached.

为什么会出现 segmentation fault 之与虚拟内存

在最初的开始学编程并接触 C 的时候,相信大家或多或少的遇到过“锟斤拷”和“烫烫烫”的错误,严重时还会出现段错误(segmentation fault)导致程序崩溃,那么为什么会段错误?或者说我访问越界了程序/操作系统怎么知道?要想弄明白这一点就需要学习下虚拟内存映射是怎么回事。

Django logging

要想放心的在生产环境下使用 Django,其 Logging 的配置和使用是不可或缺的。