关于万圣节

2018.10.31

Allhallowtide: 万圣节季.

hallow 与 saint 同意, 意为圣徒. tide 此处不是潮汐之意, 意为 time, season, period of time, 即一段时间, 通常用于复合词. 比如 Christmastide, Yuletide, Easterti......

Use arrow keys in Perl debugger

2018.09.06

Install this module:

cpan -f Term::ReadLine::Perl

cpan -f Term::ReadKey

Reference: https://stackoverflow.com/questions/13783334/arrow-up-and-dow......

Bash Powerline

2018.08.29

Dodumentation:

https://powerline.readthedocs.io/en/master/overview.html

Installation:

pip install powerline-status

Show {repository_root}:

......

Perl 简易教程

2018.08.22

前言

正常情况下, Perl 定义变量直接赋值即可, 但是这样有时候会导致一些问题, 一般建议使用 use strict, 这样定义变量的时候必须使用 my 关键字, 例如:

use strict;

my $var = "var";

另外, Perl 默认的 pr......

进程/线程/协程

2018.08.22

进程 是表示资源分配的基本单位, 又是调度运行的基本单位. 例如, 用户运行自己的程序, 系统就创建一个进程, 并为它分配资源, 包括各种表格, 内存空间, 磁盘空间, I/O 设备等. 然后把该进程放人进程的就绪队列. 进程调度程序选中它, 为它分配 CPU 以及其它有关资源, 该进程才真正运行.......