For faster connection speed and more flexibility.
- Start Xcode in command line by running this in commandline
/Applications/Xcode.app/Contents/MacOS/Xcode - Start downloading of the simulator
- Cancel it. YES CANCEL IT!
- You will get a message like this:
For faster connection speed and more flexibility.
/Applications/Xcode.app/Contents/MacOS/XcodeUpdate: For those interested, here's the version for updating from Android 5.1.0 (LMY47D/LMY47I) to Android 5.1.1 (LMY48B):
https://gist.github.com/eyecatchup/dab5cf7977008e504213
UPDATE `NEXUS 5`
SET `VERSION`='5.0.1', `BUILD`='LRX22C', `RECOVERY`='CUSTOM', `ROOTED`=1
WHERE `VERSION`='5.0' && `BUILD`='LRX21O' && `RECOVERY`='CUSTOM' && `ROOTED`=1
&& `WANNA_KEEP_USERDATA`=1;| #!/usr/bin/ruby | |
| # Create display override file to force Mac OS X to use RGB mode for Display | |
| # see http://embdev.net/topic/284710 | |
| require 'base64' | |
| data=`ioreg -l -d0 -w 0 -r -c AppleDisplay` | |
| edids=data.scan(/IODisplayEDID.*?<([a-z0-9]+)>/i).flatten | |
| vendorids=data.scan(/DisplayVendorID.*?([0-9]+)/i).flatten |
| -----BEGIN PGP SIGNED MESSAGE----- | |
| Hash: SHA1 | |
| // Generated on: 2012-04-13 23:44:46 GMT+00:00 | |
| // ************** Tweet 1 of 47455 ************** | |
| { | |
| "in_reply_to_screen_name": null, |
| # saved from: http://pastie.org/private/bclbdgxzbkb1gs2jfqzehg | |
| import sublime | |
| import sublimeplugin | |
| import subprocess | |
| class RunExternalCommand(sublimeplugin.TextCommand): | |
| """ | |
| Runs an external command with the selected text, | |
| which will then be replaced by the command output. |