一个网页距离爬虫上次访问是否更新了,这个是重要但是又非常难判断的问题。如果只是一次性抓取来一些数据来用,那这个 […]
Continue reading…
Posts by laixintao
Vim缩进有关的设置总结
|
1 2 3 4 5 6 7 |
set expandtab "Use softtabstop spaces instead of tab characters for indentation set shiftwidth=4 "Indent by 4 spaces when using >>, <<, == etc. set softtabstop=4 "Indent by 4 spaces when pressing <TAB> set autoindent "Keep indentation from previous line set smartindent "Automatically inserts indentation in some cases set cindent "Like smartindent, but stricter and more customisable |
tabstop : 一个tab等于多少个空格 […]
Continue reading…
Shell单引号、双引号和反引号的区别
每次在shell用到引号的时候,都会因为用单引号还是双引号纠结不已。最近看了《Shell十三问》,终于弄清楚了 […]
Continue reading…
副作用还是Feature?
我们的Python应用需要一个全局变量保存一些公用的值,但是不希望其他人随意往里面添加属性,导致这个对象很乱。 […]
Continue reading…
无处不在的同化
电影《Detachment》里面,有一幕是Henry在黑板上写了两个词:assimilate,ubiquito […]
Continue reading…