常用命令
iteye_1723
这个作者很懒,什么都没留下…
展开
-
framework生成
# Sets the target folders and the final framework product. # 如果工程名称和Framework的Target名称不一样的话,要自定义FMKNAME # 例如: FMK_NAME = "MyFramework" FMK_NAME=${PROJECT_NAME} # Install dir will be the final outp...原创 2015-08-21 09:04:26 · 162 阅读 · 0 评论 -
openssl常用命令
1、How do I generate an RSA key? # default 512-bit key, sent to standard output openssl genrsa # 1024-bit key, saved to file named mykey.pem openssl genrsa -out mykey.pem 1024 # same as above,...原创 2014-03-11 11:32:20 · 173 阅读 · 0 评论 -
Mac常用技巧
1、Mac下DNS缓存刷新 sudo dscacheutil -flushcache原创 2014-03-25 17:26:26 · 197 阅读 · 0 评论 -
集成Reveal
一、创建.lldbinit [code="shell"] command alias reveal_load expr (void*)dlopen((char*)[(NSString*)[(NSBundle*)[NSBundle mainBundle] pathForResource:@"libReveal" ofType:@"dylib"] cStringUsingEncoding:0x4]...原创 2014-05-10 12:59:38 · 84 阅读 · 0 评论 -
Git版本管理
一、代码撤消与回退 1、回退已提交的代码 git reset --hard HEAD 回退整套代码到最近一次提后的状态。 git reset --hard 回退代码到指定的某次提交状态。 2、撤消已暂存的文件 git reset HEAD 3、撤消已修改的文件 git checkout -- 二、代码添加与提交 1、添加代码 git add . 2、...原创 2014-05-30 17:02:03 · 77 阅读 · 0 评论 -
CocoaPods使用
安装 sudo gem install cocoapods pod setup 升级gem sudo gem update --system 将官方的ruby源替换成国内淘宝的源 gem sources --remove https://rubygems.org/ gem sources -a http://ruby.taobao.org/ gem sources -l 使用Co...原创 2014-05-31 16:11:52 · 90 阅读 · 0 评论 -
外网IP地址
1、ifconifg.me/all 2、http://ifconfig.jd-app.com/ 3、http://ip-api.com/ 4、http://icanhazip.com/原创 2014-12-25 10:03:37 · 256 阅读 · 0 评论