##Simply annoying Tweets
Annoyingly extended words (4+ of the same letter in a phrase): OOOOHHHHMMMMYYYYGGGGOOOODDDD
([a-z])/1{4}
Tweet w/ just a single hashtag: #omgthissucks
^ *#[^ ]+$
- (NSArray*)listOfNames { | |
NSFetchRequest *request = [[NSFetchRequest alloc] init]; | |
[request setEntity:[NSEntityDescription entityForName:@"SomeObject" inManagedObjectContext:self.managedObjectContext]]; | |
[request setResultType:NSDictionaryResultType]; | |
[request setPropertiesToFetch:[NSArray arrayWithObject:@"name"]]; | |
[request setPropertiesToGroupBy:[NSArray arrayWithObject:@"name"]]; | |
[request setPredicate:[NSPredicate predicateWithFormat:@"type = %@", @"static"]]; |
text-placement-type: simple; | |
text-placements: "S,N,E,W"; | |
text-dx: 5; | |
text-dy: 5; | |
text-allow-overlap: false; |
build/ | |
release/ | |
package/ | |
*.suo | |
*.user | |
bin | |
!/bin | |
obj | |
_ReSharper* | |
*.csproj.user |
##Simply annoying Tweets
Annoyingly extended words (4+ of the same letter in a phrase): OOOOHHHHMMMMYYYYGGGGOOOODDDD
([a-z])/1{4}
Tweet w/ just a single hashtag: #omgthissucks
^ *#[^ ]+$
<?php | |
/** | |
* get_birthdays | |
* @desc Get upcoming birthdays, within a month or week (default) | |
* @see http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html | |
* @global object $wpdb | |
* @param string|int $type | |
* @param string $orderby (asc or desc) | |
* @return array | |
*/ |
Below is a collection of my favourite responses I gathered from Guardian engineers when asked the question: What have you learnt starting from scratch and building a mobile-first next generation web platform for the Guardian?