This file contains hidden or 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 | |
// ProtectTest | |
// Demonstrates newer versions of iOS now support PROT_EXEC pages, for just-in-time compilation. | |
// | |
// Must be compiled with Thumb disabled | |
// | |
// Created by Stuart Carnie on 3/4/11. | |
// Copyright 2011 Manomio LLC. All rights reserved. | |
// |
This file contains hidden or 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
@interface NSArray(BlocksAdditions) | |
- (NSArray*)mapUsingBlock:(id (^)(id obj))block; | |
- (NSSet*)mapToSetUsingBlock:(id (^)(id obj))block; | |
- (id)firstUsingBlock:(BOOL(^)(id obj))block; | |
@end |
This file contains hidden or 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(){ | |
cat << EOF | |
usage: $0 options | |
This script create links for PLBlocks, which is useful | |
if you are installing the beta SDK into a separate folder. | |
OPTIONS: |
This file contains hidden or 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
// | |
// PerfTester.h | |
// TollFreeBridingTests | |
// | |
// Created by Stuart Carnie on 1/24/10. | |
// Copyright 2010 Manomio. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
NewerOlder