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
output.dir=output/ | |
output.file.summary=summary_report.txt | |
output.file.unique=unique_tokens.txt | |
output.file.bigwords=big_words.txt | |
output.file.token.count=token_count.txt | |
output.file.token.size=token_size.txt | |
output.file.keyword=keyword_locations.txt | |
# Big Words Minimum Word Length |
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
mogenerator --model CoreDataIssue.xcdatamodeld/CoreDataIssue.xcdatamodel --template-var arc=true |
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
Map<String, String> map = new TreeMap<String, String>(); | |
map.put("WI", "Wisconsin"); | |
map.put("MN", "Wisconsin"); | |
map.put("MI", "Wisconsin"); | |
map.put("IA", "Wisconsin"); | |
for (Map.Entry<String, String> entry : map.entrySet()) { | |
System.out.println("Key: " + entry.getKey() |
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
DCIDrawView *view = (DCIDrawView *)[self.view hitTest:location withEvent:nil]; | |
if (self.view != view) { | |
self.highlightedView = view; | |
self.highlightedView.highlighted = YES; | |
[self.highlightedView setNeedsDisplay]; | |
} else { | |
self.highlightedView = nil; | |
self.highlightedView.highlighted = NO; | |
} |
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
- (void)drawRect:(CGRect)rect | |
{ | |
// Drawing code | |
CGContextRef context = UIGraphicsGetCurrentContext(); | |
CGContextMoveToPoint(context, 100, 100); | |
CGContextAddLineToPoint(context, 200, 200); | |
CGContextAddRect(context, CGRectMake(200, 200, 100, 100)); | |
CGContextStrokePath(context); |
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
A Book on C: Programming in C (4th Edition) | |
by Al Kelley & Ira Pohl | |
http://www.amazon.com/Book-Programming-4th-Edition/dp/0201183994/ref=sr_1_1?ie=UTF8&qid=1333742037&sr=8-1 | |
Objective-C Programming: The Big Nerd Ranch Guide | |
by Aaron Hillegass | |
http://www.amazon.com/Objective-C-Programming-Ranch-Guide-Guides/dp/0321706285/ref=sr_1_10?s=books&ie=UTF8&qid=1333742247&sr=1-10 | |
Understanding Pointers in C | |
Yashavant Kanetkar |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<array> | |
<string>'</string> | |
<string>A</string> | |
<string>B</string> | |
<string>C</string> | |
<string>D</string> | |
<string>E</string> |
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
http://dl.dropbox.com/u/16988659/WordsPlists.zip |
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
- Textastic http://www.textasticapp.com/ | |
- Simplenote http://www.simplenoteapp.com/ | |
- Pandora http://www.pandora.com/ | |
- Instapaper http://www.instapaper.com/ | |
- GoodReader http://goodiware.com/goodreader.html | |
- Tweetbot http://tapbots.com/software/tweetbot/ | |
- Flipboard http://flipboard.com/ | |
- NPR http://www.npr.org/services/mobile/ipad.php | |
- WeatherBug http://weather.weatherbug.com/mobile/weatherbug-elite-apple-ipad.html | |
- Deliveries https://junecloud.com/ |
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
NSLog(@"\n\tFunction\t=>\t%s\n\tLine\t\t=>\t%d", __func__, __LINE__); |