Linux - L2TPServer的搭建

先安装docker,然后一键安装

sips 命令

处理图片的利器 sips

1
2
3
4
5
6
7
8
## 常用命令
sips --out output.png --resampleWidth ${width} input.png

## 批量处理(会覆盖源图片)
#### 指定宽度、保持比例
sips --resampleWidth ${width} *.jpg
#### 指定宽高
sips -z ${height} ${width} *.jpg

Hexo 网页加载慢的问题

经过调试发现,网页中引用了一个 jquery 文件,来源是 ajax.googleapis.com,于是加载慢就很容易解释了。

svn 命令行技巧

面对批量操作,命令行的优势会渐渐浮现~

1
2
3
4
5
6
7
8
# 批量将?状态的文件添加svn控制
svn --force --depth infinity add .

# 批量删除?状态的文件
svn st | grep -v "^.[ \t]*\..*" | grep "^?" | awk '{print $2}' | xargs rm -rf

# 将被自动忽略的.a文件加入版本控制
svn st --no-ignore | grep "^I.*\.a$" | awk '{print $2}' | xargs svn add

Hybrid App 开发实战

转载来源: http://www.infoq.com/cn/articles/hybrid-app-development-combat

关于 edgesForExtendedLayout

Mark.

参考链接: http://stackoverflow.com/questions/18798792/explaining-difference-between-automaticallyadjustsscrollviewinsets-extendedlayo

Linux - 免密码登录

简易教学

Shell 字符串操作整理

参考链接:http://justcoding.iteye.com/blog/1963463

TinyPNG

arc-property-copy

  • 事实上,给不可变对象发送copy并不会复制对象,而是添加一个引用计数后再返回原值。其实对不可变对象调用copy和调用retain效果一样(设定一个strong属性变量时,ARC就会在后台调用retain)。

参考书籍: 《精通iOS开发(第7版)》