This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#route = 8.0.0.0/252.0.0.0 | |
#route = 16.0.0.0/248.0.0.0 | |
# 23.239 ip.cn (linnode),so sad | |
# 23.0 instagram & facebook CDN.If You Do Not Use ip.cn, | |
# replace the two line below with : | |
route = 23.0.0.0/255.0.0.0 | |
#route = 23.0.0.0/255.128.0.0 | |
#route = 23.174.0.0/255.192.0.0 | |
route = 31.13.0.0/255.255.0.0 | |
#route = 50.0.0.0/255.0.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> brew --config | |
HOMEBREW_VERSION: 0.9.5 | |
ORIGIN: https://github.com/Homebrew/homebrew.git | |
HEAD: fc229eb78c6cd92c5e2592c28567e2e1704d4cb1 | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_CELLAR: /usr/local/Cellar | |
CPU: 8-core 64-bit ivybridge | |
OS X: 10.9.4-x86_64 | |
Xcode: 5.1.1 | |
Clang: 5.1 build 503 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$cats = array( | |
array( | |
'id' => 1, | |
'name' => 'level1_1', | |
'children' => array( | |
array( | |
'id' => 1, | |
'name' => 'level2_1', | |
'children' => array( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
afon-MacBook-Pro:~ afon$ vim | |
Vim: Caught deadly signal SEGV | |
Vim: Finished. | |
Segmentation fault: 11 | |
afon-MacBook-Pro:~ afon$ brew doctor | |
Your system is ready to brew. | |
afon-MacBook-Pro:~ afon$ brew --config | |
HOMEBREW_VERSION: 0.9.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
afon-MacBook-Pro:~ afon$ brew update | |
Error: undefined method `factory' for Formula:Class | |
Please report this bug: | |
https://github.com/mxcl/homebrew/wiki/troubleshooting | |
/usr/local/Library/Homebrew/cmd/update.rb:61:in `update' | |
/usr/local/Library/Homebrew/cmd/update.rb:60:in `each' | |
/usr/local/Library/Homebrew/cmd/update.rb:60:in `update' | |
/usr/local/Library/brew.rb:95:in `send' | |
/usr/local/Library/brew.rb:95 | |
afon-MacBook-Pro:~ afon$ brew --config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## set COCOS2DX_ROOT here ## | |
COCOS2DX_ROOT=/Users/afon/programs/cocos2d-x-2.1.5 | |
echo "input your project dir:" | |
read APP_DIR | |
APP_LIBS_DIR=$APP_DIR/libs | |
cp_mk_cpp_h(){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
USAGE="usage:set-proxy {eth|wifi} {socks|http|auto} {on|off|set} [addr] [port]" | |
if [[ $# -lt 3 ]]; then | |
echo ${USAGE} | |
exit 1 | |
fi | |
INTERFACE="" | |
case $1 in | |
eth|tbt-eth) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
let now_vol=`osascript -e 'output volume of (get volume settings)'` | |
case $1 in | |
up) | |
let vol=$now_vol+10 | |
if [ "$vol" -gt 100 ] ; then | |
vol=100 | |
fi | |
osascript -e "set volume output volume $vol" | |
echo "Volume: $vol" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
afon-MacBook-Pro:local afon$ brew doctor | |
Your system is ready to brew. | |
afon-MacBook-Pro:local afon$ brew --config | |
HOMEBREW_VERSION: 0.9.4 | |
ORIGIN: https://github.com/mxcl/homebrew.git | |
HEAD: 5a9478e5a85475ac664671f1013cf116691103ff | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_CELLAR: /usr/local/Cellar | |
CPU: 8-core 64-bit ivybridge | |
OS X: 10.8.4-x86_64 |