2013年8月29日 星期四

Create a static library(framework) on ios

Create a static library(framework) on ios

如何在 xcode 上建立自己的 ios framework,
目前有好幾種解法,下列方法是我覺得目前問題最少且最有效率的方式。

2013年8月15日 星期四

Switching from bash to zsh on OSX

I switched from bash to zsh and installed oh-my-zsh.
Here are my dotfiles.

Screenshots:

console(ys theme)

How to stop a launchd process

osx 啟動服務都是由 launchd 來管理,

開機時會啟動下列目錄內的 plist
/System/Library/LaunchDaemons
/Library/LaunchDaemons

使用者登入後會啟動下列目錄內的 plist
/System/Library/LaunchAgents
/Library/LaunchAgents
~/Library/LaunchAgents

移除某個 service 可以用 launchctl 來控制 launchd
launchctl list
launchctl remove com.google.keystone.user.agent

這種做法重開機後,就失效,
解決辦法直接編輯 plist 加入
<key>Disabled</key>
<true/>

enjoy it~~