Thonburi
- Thonburi-Bold
- Thonburi
Snell Roundhand
- SnellRoundhand-Bold
- SnellRoundhand-Black
- SnellRoundhand
Academy Engraved LET
function findPos(obj) { | |
var curleft = curtop = 0; | |
if (obj.offsetParent) { | |
do { | |
curleft += obj.offsetLeft; | |
curtop += obj.offsetTop; | |
} while (obj = obj.offsetParent); | |
} | |
return [curleft,curtop]; | |
} |
for f in "$@" | |
do | |
/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash -o "$f" "$f" | |
done |
#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; |
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: %@", ); |
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' |
Thonburi
Snell Roundhand
Academy Engraved LET
@interface CAFMatchedTextViewController () | |
@property (strong, nonatomic) IBOutlet UITextView *matchedTextView; | |
@end | |
@implementation CAFMatchedTextViewController { | |
- (void)viewDidLoad { | |
[super viewDidLoad]; | |
[self.matchedTextView.rac_textSignal subscribeNext:^(NSString *string) { |
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' |
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' |
#!/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| |