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 <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); |