
常用命令
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 · 188 阅读 · 0 评论 -
openssl常用命令
1、How do I generate an RSA key?# default 512-bit key, sent to standard outputopenssl genrsa# 1024-bit key, saved to file named mykey.pemopenssl genrsa -out mykey.pem 1024# same as above,...原创 2014-03-11 11:32:20 · 192 阅读 · 0 评论 -
Mac常用技巧
1、Mac下DNS缓存刷新sudo dscacheutil -flushcache原创 2014-03-25 17:26:26 · 221 阅读 · 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 · 104 阅读 · 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 · 86 阅读 · 0 评论 -
CocoaPods使用
安装sudo gem install cocoapodspod setup升级gemsudo 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 · 105 阅读 · 0 评论 -
外网IP地址
1、ifconifg.me/all2、http://ifconfig.jd-app.com/3、http://ip-api.com/4、http://icanhazip.com/原创 2014-12-25 10:03:37 · 280 阅读 · 0 评论