Use chef-solo driven by soloist to apply recipes to a mac and configure it just how you like.
bit.ly/chef4mac < this presentation (meta)
- chef-solo : Dont concern yourself with this much?
| // When the `accessibility inspector' is enabled on the iOS Simulator the private `UIAccessibility' | |
| // framework is loaded. In turn it will try to load a list of bundles amongst which is one that has | |
| // only resources, no executable. This leads to `CFBundleLoadExecutableAndReturnError' logging this | |
| // offending error message. | |
| // | |
| // This code omits the `SDK_ROOT/System/Library/AccessibilityBundles/CertUIFramework.axbundle' | |
| // bundle from ever being attempted to load. | |
| // | |
| // This code is available under the MIT license: http://opensource.org/licenses/MIT | |
| // |
Use chef-solo driven by soloist to apply recipes to a mac and configure it just how you like.
bit.ly/chef4mac < this presentation (meta)
| INSERT INTO 'snippets' ('title', 'body') VALUES | |
| (':+1:', '👍'), | |
| (':-1:', '👎'), | |
| (':100:', '💯'), | |
| (':1234:', '🔢'), | |
| (':8ball:', '🎱'), | |
| (':a:', '🅰'), | |
| (':ab:', '🆎'), | |
| (':abc:', '🔤'), | |
| (':abcd:', '🔡'), |
Generate the list yourself:
$ cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS*.sdk/System/Library/Frameworks/UIKit.framework/Headers
$ grep UI_APPEARANCE_SELECTOR ./* | \
sed 's/NS_AVAILABLE_IOS(.*)//g' | \
sed 's/NS_DEPRECATED_IOS(.*)//g' | \
sed 's/API_AVAILABLE(.*)//g' | \
sed 's/API_UNAVAILABLE(.*)//g' | \
sed 's/UI_APPEARANCE_SELECTOR//g' | \
| # Mac OS X clipboard integration | |
| set-option -g default-command "reattach-to-user-namespace -l zsh" | |
| bind y run "tmux save-buffer - | reattach-to-user-namespace pbcopy" | |
| # Optional keybindings: Enter Copy-mode and Copy and Paste sorta like Vim. | |
| unbind [ | |
| bind Escape copy-mode | |
| unbind p | |
| bind p paste-buffer | |
| bind -t vi-copy 'v' begin-selection |
| i386 : iPhone Simulator | |
| x86_64 : iPhone Simulator | |
| arm64 : iPhone Simulator | |
| iPhone1,1 : iPhone | |
| iPhone1,2 : iPhone 3G | |
| iPhone2,1 : iPhone 3GS | |
| iPhone3,1 : iPhone 4 | |
| iPhone3,2 : iPhone 4 GSM Rev A | |
| iPhone3,3 : iPhone 4 CDMA | |
| iPhone4,1 : iPhone 4S |
#Mac OS X
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh