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
wolf-air1:HelloMesmerizeapp wolf$ mesmerize --verbose release 1 | |
Faraday: you may want to install system_timer for reliable timeouts | |
Found project "HelloMesmerizeapp". | |
Looking up current release information... | |
Select a scheme: | |
1. | |
? Error: The input stream is exhausted. | |
/Library/Ruby/Gems/1.8/gems/highline-1.6.12/lib/highline.rb:785:in `get_line': The input stream is exhausted. (EOFError) | |
from /Library/Ruby/Gems/1.8/gems/highline-1.6.12/lib/highline.rb:820:in `get_response' | |
from /Library/Ruby/Gems/1.8/gems/highline-1.6.12/lib/highline.rb:262:in `ask' |
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
wolf-air1:HelloMesmerizeapp wolf$ mesmerize --verbose release 0.1 | |
Faraday: you may want to install system_timer for reliable timeouts | |
Found project "HelloMesmerizeapp". | |
Looking up current release information... | |
Specify a release version | |
wolf-air1:HelloMesmerizeapp wolf$ |
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
$ mesmerize --verbose release | |
Faraday: you may want to install system_timer for reliable timeouts | |
Found project "HelloMesmerizeapp". | |
Looking up current release information... | |
Specify a release version |
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
wolf-air1:~ wolf$ gem install mesmerize | |
Fetching: highline-1.6.12.gem (100%) | |
ERROR: While executing gem ... (Gem::FilePermissionError) | |
You don't have write permissions into the /Library/Ruby/Gems/1.8 directory. | |
wolf-air1:~ wolf$ sudo gem install mesmerize | |
Password: | |
Fetching: highline-1.6.12.gem (100%) | |
Fetching: commander-4.1.2.gem (100%) | |
Fetching: faraday-0.8.1.gem (100%) | |
Fetching: faraday_middleware-0.8.7.gem (100%) |
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
Process: Day One [34697] | |
Path: /Applications/Day One.app/Contents/MacOS/Day One | |
Identifier: com.dayoneapp.dayone | |
Version: 1.5.5 (15) | |
App Item ID: 422304217 | |
App External ID: 6523371 | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [112] | |
Date/Time: 2012-04-16 23:13:54.925 -0500 |
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
http://www.google.com/search?tbm=isch&q={query} |
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
defaults write com.red-sweater.FastScripts ScriptTreePathsKey '("FSSP%%%$HOME$/Library/Scripts")' |
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
var hibari = [JSTalk application:'Hibari']; | |
var currentTweet = [hibari selectedTweet]; | |
[hibari compose:'RT: @' + currentTweet.screenName + ': ' + currentTweet.tweetText]; |
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
// https://twitter.com/rob_rix/status/155082958443786241 | |
// https://twitter.com/rob_rix/status/155083105739341824 | |
@interface ClassA : NSObject { | |
@private | |
int topSecretIvar; | |
} | |
- (void)publicMethod; | |
@end |
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
NSView *contentView = [[self window] contentView]; | |
rootLayer = [[[CALayer alloc] init] autorelease]; | |
[contentView setLayer:rootLayer]; | |
[contentView setWantsLayer:YES]; | |
NSLog(@"%@", [rootLayer valueForKey:@"view"]); // => <NSView: 0x32fbf0> | |
NSLog(@"%@", rootLayer.delegate); // => (null) |