解决mac dock cpu跑满的问题
原因是vmware fusion引起的。
解决方法:
在虚拟机的 *.vmx文件里加一行: isolation.tools.hgfs.notify.enable = “FALSE”
然后重启vmware,重启里面的虚拟机。
使用vimdiff作为svn diff工具
http://www.blogjava.net/stone2083/archive/2011/05/24/350917.html
http://hi.baidu.com/spare_h/blog/item/d4311cee2b72c801fcfa3c1e.html
http://www.ccvita.com/445.html
1、
编写svndiff脚本,放在/usr/local/bin下,
~~~~~~~~~~~~~~~~~~~~~
#!/bin/sh
#去掉前5个参数
shift 5
#使用vimdiff比较
vimdiff -f “$@”
#~~~~或者~~~~~~~~~~~~~~~
#!/bin/sh
# 配置你喜欢的diff程序路径
DIFF=”vimdiff”
# SVN diff命令会传入两个文件的参数
LEFT=${6}
RIGHT=${7}
# 拼接成diff命令所需要的命令格式
$DIFF $LEFT $RIGHT
~~~~~~~~~~~~~~~~~~~~~~
2、 修改 ~/.subversion/config
diff-cmd = svndiff
试用SecureCRT
rm -rf ~/Library/Application\ Support/VanDyke
dnssec相关技术
http://blog.csdn.net/wuwentao2000/article/details/6448666
http://netarchlab.tsinghua.edu.cn/~liuby/DNSSec_LiuBingyang.pdf
python llvm
mac route table flush
/usr/bin/sudo /sbin/route flush
分布式版本控制工具 bazaar — bzr
Bazaar-NG 采用 Python 语言编写
http://bazaar.canonical.com/en/
Part of the GNU Project, Bazaar is free software sponsored by Canonical.
bzr 五分钟教程
http://3444542.blog.163.com/blog/static/422666022008311105520792/
加速 Apple App Store 下载速度
How to Disable Recent Items in Lion’s Dock
自定义vim color theme的一个另类方法
手动修改vim的colortheme比较麻烦,有一个方法就是,在textmate里调整好主题颜色,然后copy出来。
再去http://coloration.sickill.net/此网站,他可以把textmate的主题颜色转化为vim的主题颜色,这样就容易多了。
这个东西还有一个命令行工具: 作者网站是这么描述的:
If you like to install coloration on your own machine to do some batch conversion or for some other reason just gem install coloration. It gives you tm2vim, tm2jedit and tm2katepartbinaries to do the conversion on command line.
