
Mac
lizhongkan
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Versions 配合 Xcode 4.3 的 FileMerge
Versions cracked download url:http://www.fly3q.com/2010/10/mac-used-to-send-the-next-best-cracked-version-of-versions-svn-client.html剛剛把 Xcode 升級到 4.3.2 發現 Versions 的文件對比功能無法使用了。因為 Xcode 自從转载 2012-05-09 14:03:00 · 3764 阅读 · 1 评论 -
把当前目录和子目录下的java文件,从GBK转换成UTF-8字符集的shell脚本
题目很长,不罗嗦了,直接上代码:filelist=`find . -name *.java`for file in $filelistdo echo converting: $file iconv -f GBK -t utf-8 $file > $file.t mv $file.t $file doneecho DONE原创 2012-06-22 10:10:28 · 2906 阅读 · 0 评论 -
Mac知识点
1、在shell下,使用默认的应用程序打开文件的命令:open 文件 比如:open main.cpp open something.xcodeproject 甚至用Finder打开目录: open Downloads/open .使用特定的程序打开某文件:open abc.json -a UltraEdit2. 在原创 2012-04-20 15:21:40 · 2249 阅读 · 0 评论 -
Mac远程登录到Linux桌面环境
参考资料:http://narnia.cs.ttu.edu/drupal/node/132ssh -X username@192.168.1.233passwordgnome-session (注:对于openSUSE,使用startkde)原创 2012-12-13 12:30:26 · 21864 阅读 · 0 评论 -
MAC下搭建discuz论坛
1、开启web共享。(Mountain Lion参考:http://www.guomii.com/posts/30136)2、支持php。http://www.cnblogs.com/elfsundae/archive/2010/11/27/1889570.html3、下载、安装mysql。http://www.cnblogs.com/elfsundae/archive/2010/原创 2012-06-06 16:31:07 · 8175 阅读 · 0 评论 -
自动编译、安装iOS安装包ipa
1. 自动编译cd ..rm -rf build/*xcodebuild -configuration Release# zip ipacd buildmkdir -p ipa/Payloadcp -r ./Release-iphoneos/abc.app ./ipa/Payload/cd ipa zip -r abc.ipa *cd ../../deploycp ..原创 2013-01-21 16:41:54 · 7223 阅读 · 0 评论 -
python知识点
1、在mac下,安装支持PIL库。 1.1 下载安装Combo Installer libpng & libjpeg: http://ethan.tira-thompson.com/Mac_OS_X_Ports.html 1.2 sudo easy_install pil 测试代码:!/usr/bin/env python imp原创 2012-12-06 13:07:35 · 2308 阅读 · 0 评论