Recent Posts

Limit CPU Usage

这里有一些网页,描述了如何限制 CPU 的使用:

What is the Linux CPU Load

The load average represents the average system load over a period of time. It conventionally appears in the form of three numbers which represent the system load during the last one-, five-, and fifteen-minute periods. https://en.wikipedia.org/wiki/Load_(computing)

按照网上看到的一 …

Using Git-P4

平时一直使用 git,习惯了各种离线操作和强大的分支功能,所以总觉得要比 Perforce / p4 好用太多。

对于目前项目里用到的 p4 仓库 …

Sysfs

在 linux 里,sysfsprocfs 都是没有存储介质的虚拟文件系统,用于内核与用户态的交互。以下是摘自《Professional Linux Kernel Architecture》的一段话,对两者在概 …

More Use of Pelican

经常会去 LinuxTOY, 看看有哪些新的 Linux 相关的信息。

好吧,最近它也已经 从 WordPress 迁移到 Pelican,现在访问速度快了不是一点点。

Upgrade to Pelican 3.6

Pelican 3.6 发布了。

可以使用万能的 easy_install 来更新:

$ easy_install --upgrade pelican
Searching for pelican
Reading http://pypi.python.org/simple/pelican/
Best match: pelican 3.6.0
Processing pelican-3.6.0-py2.7.egg
...

$ pelican --version
3.6.0

浏览了 …

Use subprocess.Popen class in Python

subprocess.Popen 是 Python 标准库提供的一个类,用于进程的创建、管理以及数据交互。在实现上,它尽可能地屏蔽了操作系统之间相关语义 …

Use txt2tags in Pelican

1. txt2tags

MarkdownPelican 默认支持的标记语言。其语法简洁,功能实用,多数情况下,可以满足实际的使用需求。

txt2tags 是一个类似的项目:

  Txt2tags is …

Pelican 使用记录


  1. Why Here?
  2. Why Pelican?
  3. Use Pelican
  4. Publish


1. Why Here?

之前博客搭在 Baidu Hi 上面,前后 …

GCC Linker Order

※ 问题

在程序开发过程中遇到了这样的问题:

程序比较大,因而拆分成了若干个静态库:

  1. 编译:OK!
  2. 链接:把静态库链接到可执行 …