Check what should have been done
Check the related git commit
Check if the Dev use the right syntax and follow the styleguide
| // config.js | |
| module.exports = { | |
| dev: { | |
| dbname: 'foo', | |
| host: '127.0.0.1', | |
| pass: 'bar', | |
| port: 1223 | |
| }, | |
| prod: { | |
| dbname: 'baz', |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| #import "UIResponder+FirstResponder.h" | |
| //http://stackoverflow.com/a/14135456/202151 | |
| static __weak id currentFirstResponder; | |
| @implementation UIResponder (FirstResponder) | |
| +(id)currentFirstResponder { | |
| currentFirstResponder = nil; | |
| [[UIApplication sharedApplication] sendAction:@selector(findFirstResponder:) to:nil from:nil forEvent:nil]; | |
| return currentFirstResponder; |
| Hallo Burrito-Bande, | |
| ich habe den Wunsch einer Termin-Änderung. | |
| ich kann den 12:30 Uhr Termin nicht wahrnehmen. | |
| Ich würde gerne eine Stunde später kommen. Sonst ändert sich nichts. | |
| Also um 13:30 Uhr am Montag den 22.09. | |
| Meine Abholnummer: | |
| xxxxxx |
| [email protected] | |
| Hallo Burrito-Bande, | |
| ich möchte meine Bestellung | |
| mit der Abholnummer: | |
| xxxxxxx | |
| am Montag den 22.09 um 12:30 Uhr | |
| in Darmstadt - Havelstr. 16 | |
| bei euch stornieren! |
I hereby claim:
To claim this, I am signing this object:
| iOS | |
| AppIcon60x60.png ( 60x 60 - iPhone 4) | |
| [email protected] ( 120x 120 - iPhone 5) | |
| [email protected] ( 180x 180 - iPhone 6) | |
| AppIcon76x76~ipad.png ( 76x 76 - iPad) | |
| AppIcon76x76@2x~ipad.png ( 152x 152 - iPad) | |
| [email protected] ( 640x 960 - iPhone 4) | |
| [email protected] ( 640x1136 - iPhone 5) | |
| [email protected] ( 750x1334 - iPhone 6) |
| #import <Foundation/Foundation.h> | |
| #include <dlfcn.h> | |
| NSDictionary *FCPrivateBatteryStatus() | |
| { | |
| static mach_port_t *s_kIOMasterPortDefault; | |
| static kern_return_t (*s_IORegistryEntryCreateCFProperties)(mach_port_t entry, CFMutableDictionaryRef *properties, CFAllocatorRef allocator, UInt32 options); | |
| static mach_port_t (*s_IOServiceGetMatchingService)(mach_port_t masterPort, CFDictionaryRef matching CF_RELEASES_ARGUMENT); | |
| static CFMutableDictionaryRef (*s_IOServiceMatching)(const char *name); |