Thonburi
- Thonburi-Bold
- Thonburi
Snell Roundhand
- SnellRoundhand-Bold
- SnellRoundhand-Black
- SnellRoundhand
Academy Engraved LET
struct NetworkInterfaceFlags : OptionSetType { | |
let rawValue: UInt | |
static let None = NetworkInterfaceFlags(rawValue: 0) | |
static let Up = NetworkInterfaceFlags(rawValue: 1 << 0) | |
static let Broadcast = NetworkInterfaceFlags(rawValue: 1 << 1) | |
static let Debug = NetworkInterfaceFlags(rawValue: 1 << 2) | |
static let Loopback = NetworkInterfaceFlags(rawValue: 1 << 3) | |
static let PointToPoint = NetworkInterfaceFlags(rawValue: 1 << 4) | |
static let Smart = NetworkInterfaceFlags(rawValue: 1 << 5) | |
static let Running = NetworkInterfaceFlags(rawValue: 1 << 6) |
#!/usr/bin/env ruby | |
# Script to generate random images. Based on http://www.imagemagick.org/Usage/canvas/#random_blur | |
require 'optparse' | |
options = {} | |
optparse = OptionParser.new do |opts| |
Pod::Spec.new do |s| | |
s.name = "LetsMove" | |
s.version = "1.9" | |
s.summary = "Move a running Mac application to the /Applications directory." | |
s.description = <<-DESC | |
Move a running Mac application to the /Applications directory. | |
DESC | |
s.homepage = "https://github.com/potionfactory/LetsMove/" | |
s.license = 'Public Domain' |
Pod::Spec.new do |s| | |
s.name = "socket.IO" | |
s.version = "0.4.0.1" | |
s.summary = "socket.io v0.7.2+ for iOS devices." | |
s.description = <<-DESC | |
Interface to communicate between Objective C and Socket.IO with the help of websockets. It's based on fpotter's socketio-cocoa and uses other libraries/classes like SocketRocket, json-framework (optional) and jsonkit (optional). | |
DESC | |
s.homepage = "https://github.com/pkyeck/socket.IO-objc" | |
s.license = 'MIT' |
@interface CAFMatchedTextViewController () | |
@property (strong, nonatomic) IBOutlet UITextView *matchedTextView; | |
@end | |
@implementation CAFMatchedTextViewController { | |
- (void)viewDidLoad { | |
[super viewDidLoad]; | |
[self.matchedTextView.rac_textSignal subscribeNext:^(NSString *string) { |
Thonburi
Snell Roundhand
Academy Engraved LET
Pod::Spec.new do |s| | |
s.name = 'TouchJSON' | |
s.version = '1.1' | |
s.license = 'Simplified BSD License' | |
s.summary = 'TouchJSON is an Objective-C based parser and generator for JSON encoded data.' | |
s.homepage = 'https://github.com/TouchCode/TouchJSON' | |
s.author = { 'Jonathan Wight' => '[email protected]' } | |
s.source = { :git => 'https://github.com/TouchCode/TouchJSON.git', :tag => '1.1-NonARC' } | |
s.source_files = 'Source/**/*.{h,m}' | |
s.framework = 'Foundation' |
if (result.resultType == NSTextCheckingTypeOrthography) { | |
NSLog(@"resultType: %@", ); | |
} else if (result.resultType == NSTextCheckingTypeSpelling) { | |
NSLog(@"resultType: %@", ); | |
} else if (result.resultType == NSTextCheckingTypeGrammar) { | |
NSLog(@"resultType: %@", ); | |
} else if (result.resultType == NSTextCheckingTypeDate) { | |
NSLog(@"resultType: %@", ); | |
} else if (result.resultType == NSTextCheckingTypeAddress) { | |
NSLog(@"resultType: %@", ); |
#import <QuartzCore/QuartzCore.h> | |
- (UIImage *)caf_imageRepresentation | |
{ | |
UIGraphicsBeginImageContextWithOptions(self.bounds.size, self.opaque, 0.0); | |
[self.layer renderInContext:UIGraphicsGetCurrentContext()]; | |
UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); | |
UIGraphicsEndImageContext(); | |
return image; |
for f in "$@" | |
do | |
/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash -o "$f" "$f" | |
done |