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
#!/Library/Frameworks/LuaCocoa.framework/Versions/Current/Tools/luacocoa | |
--[[ | |
Controll iOS Simulator | |
--]] | |
LuaCocoa.import("ScriptingBridge") | |
local system_events = SBApplication:applicationWithBundleIdentifier_("com.apple.systemevents") | |
local ios_sim_process = nil |
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
tell application "System Events" | |
tell process "iPhone Simulator" | |
click button "Reload" of window 1 | |
end tell | |
end tell |
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
wget ftp://ftp.mozilla.org/pub/mozilla.org/js/js-1.7.0.tar.gz | |
tar -zxf js-1.7.0.tar.gz | |
cd js/src | |
export CFLAGS="-DJS_C_STRINGS_ARE_UTF8" | |
make -f Makefile.ref | |
sudo JS_DIST=/usr/local/js make -f Makefile.ref export |
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
$ mongo | |
> use github | |
> db.createCollection('feed', { capped: true, size: 100000 }) | |
# require jsawk (with spidermonkey) | |
curl https://github.com/$username.private.json?token=$token | jsawk "this.entry" | mongoimport --jsonArray --upsert -d github -c feed |
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
NSAttributedString *subjectString = | |
[[NSAttributedString alloc] initWithString:@"git" | |
attributes:@{ | |
NSForegroundColorAttributeName : [UIColor blueColor], | |
NSFontAttributeName : [UIFont boldSystemFontOfSize:20] | |
}]; | |
NSAttributedString *verbString = [[NSAttributedString alloc] initWithString:@" push -u "]; | |
NSAttributedString *objectString = | |
[[NSAttributedString alloc] initWithString:@"origin master" |
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
*** Terminating app due to uncaught exception 'UIViewControllerHierarchyInconsistency', reason: 'A view can only be associated with at most one view controller at a time! | |
Clear this association before associating this view with |
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
NSLog(@"%@", [view performSelector:@selector(recursiveDescription)]); |
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
#import "NSString+Unicode.h" | |
@implementation NSString (Unicode) | |
- (NSUInteger)utf8mb4length { | |
const char *bytes= [self UTF8String]; | |
unsigned int length = [self lengthOfBytesUsingEncoding:NSUTF8StringEncoding]; | |
unsigned int calc = 0; | |
for (int i=0; i<length; i++) { |
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
#pragma D option quiet | |
self int level; | |
objc$target:::entry | |
{ | |
printf("%*s[tid=%lld][%s %s]\n", | |
self->level * 2, " ->", | |
(long long)tid, probemod, probefunc); |
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
// | |
// main.m | |
// Insects | |
// | |
// | |
#import <UIKit/UIKit.h> | |
#pragma mark - ViewController |