Bartender4 竖着放 September 25, 2009 没有一个选项叫“竖着放”啦,但是只要将“一般设置”里的“行数”改为12。因为按钮总数是也是12,所以就一排一个竖着放了。 Read more
IDLE's subprocess didn't make connection September 23, 2009 安装Python 3.1.1的后,启动IDLE的时候遇到错误: “IDLE's subprocess didn't make connection. Either IDLE can't start a subprocess or personal firewall software is blocking the connection." 简单一点说就是IDLE被防火墙屏蔽,不允许访问网络。实际上了呢,IDLE也根本没有需要去访问网络,只是使用socket来进行进程间的通讯。 在网上找找,解决方案有这么几条: 1. 在防火墙中规则中添加python目录下的pythonw.exe文件,并允许它访问网络。这个对我的情况不适用,公司限定不可以随意更改防火墙设置。 2. 给IDLE的快捷方式加上"-n"参数,让IDLE不使用subprocess。结果查看那个快捷方式的属性: "Target"那个一栏是锁死的,根本没办法改。 3. 修改[Python目录]\Lib\idlelib\PyShell.py文件,在1300行附近,将 use_subprocess = True 修改为: use_subprocess = False Read more
xcode中使用svn的一個奇怪的bug September 20, 2009 我添加中文語言以前,把整個項目上傳到svn,然後再添加中文(zh_Hans),zh_Hans.lproj倒是正常的創建了,但是MainMenu.nib死活不能上傳到svn,老是提示MainMenu.nib已經svn的控制下。去命令行打開MainMenu.nib文件夾,發現果然有存在.svn。估計xcode在"add location"的時候,只是簡單的復制英文的MainMenu.nib文件夾,連同.svn一起拷過來了。 Read more
world of warcarft itemcache.wdb file editor for mac September 13, 2009 download WdbEditor WARNING!!! the first version of WdbEditor(1.0 beta) only can change item display model id. only test on Mac OS X 10.6.1, world of warcarft 3.2 zhTW, if world of warcarft version changed this may be not work. Read more