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
| { | |
| "window.titleBarStyle": "custom", | |
| "window.commandCenter": false, | |
| "workbench.startupEditor": "newUntitledFile", | |
| "workbench.colorTheme": "Min Dark", | |
| "workbench.iconTheme": "symbols", | |
| "workbench.productIconTheme": "fluent-icons", | |
| "workbench.editor.labelFormat": "short", | |
| "workbench.editor.empty.hint": "hidden", |
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
| bitbucket-organization|bitbucket-repo-name|github-organization|github-repo-name |
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
| i386 : iPhone Simulator | |
| x86_64 : iPhone Simulator | |
| arm64 : iPhone Simulator | |
| iPhone1,1 : iPhone | |
| iPhone1,2 : iPhone 3G | |
| iPhone2,1 : iPhone 3GS | |
| iPhone3,1 : iPhone 4 | |
| iPhone3,2 : iPhone 4 GSM Rev A | |
| iPhone3,3 : iPhone 4 CDMA | |
| iPhone4,1 : iPhone 4S |
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
| DynamicForm requestData = formFactory.form().bindFromRequest(); | |
| String email = requestData.get("email"); | |
| String password = requestData.get("password"); |
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
| <?php | |
| $app->any('/:controller(/)(:action(/)(:params+))', function($controller, $action = 'index', $params = array()) use ($app) { | |
| $class = "MyNamespace\\" . ucfirst($controller) . "Controller"; | |
| try { | |
| if (!class_exists($class)) { | |
| throw new \Exception('Controller Not Found!'); | |
| } | |
| $ctrl = new $class($app); |
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
| @interface Singleton | |
| +(Singleton*)sharedSingleton; | |
| @end |
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
| #import <Foundation/Foundation.h> | |
| @interface Directory : NSObject | |
| +(NSString*)documents; | |
| +(NSString*)temp; | |
| +(NSString*)library; | |
| +(NSString*)bundle; | |
| +(NSString*)cache; | |
| +(NSString*)preferences; |
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
| #import <Foundation/Foundation.h> | |
| @interface CoreDataStack : NSObject | |
| @property (readonly, nonatomic) NSManagedObjectContext *managedObjectContext; | |
| @property (readonly, nonatomic) NSManagedObjectModel *managedObjectModel; | |
| @property (readonly, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator; | |
| @property (nonatomic, copy) NSString *dataModelFilename; | |
| @property (nonatomic, copy) NSString *storePath; |