一些经验

积累经验吧

利用 image magick 处理图片——电脑硬盘太小,照片太大占空间,又不好删了,试着修改下尺寸:

#!/bin/sh
# 参考文章:用ImageMagick命令行处理图片

for img in `ls *.JPG`
do
	convert -sample 25%x25% ${img} thm${img}
done


VIM 拼写检查:开启 set spell        <---->     关闭 set nospell

-------------------------------------------------------------------------------------

perldoc Spreadsheet::WriteExcel
<standard input>:5060: warning [p 63, 0.0i]: can't break line
<standard input>:5128: warning [p 64, 1.7i]: can't break line
<standard input>:5128: warning [p 64, 1.8i]: can't break line
<standard input>:5128: warning [p 64, 2.2i]: can't break line
<standard input>:5128: warning [p 64, 2.3i]: can't break line
<standard input>:5309: warning [p 66, 8.7i]: can't break line
<standard input>:5370: warning [p 67, 7.5i]: can't break line
对此,perldocspec 里面说:
Pod formatters should tolerate lines in verbatim blocks that are of any length, even if that means having to break them (possibly several times, for very long lines) to avoid text running off the side of the page. Pod formatters may warn of such line-breaking. Such warnings are particularly appropriate for lines are over 100 characters long, which are usually not intentional.

#==========================================================

Vim代码缩进设置

http://linux-wiki.cn/wiki/zh-hans/Vim%E4%BB%A3%E7%A0%81%E7%BC%A9%E8%BF%9B%E8%AE%BE%E7%BD%AE

#==========================================================

windows XP Vim 字体设置:

"VIM字体
set guifont=Consolas:h14:cANSI

转换为 html ------>    :TOhtml


你可能感兴趣的:(vim,经验,image_magick,perldocspec)