This file contains 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
// Sketch export layers to json script | |
// This was hacked together for experimentation purposes, the code is ugly. | |
// logs: | |
// tail -f /var/log/system.log | grep Sketch | |
//I only later realized that there are methods to get the parent or children | |
//layers... oops. Seriously, I just threw this together. | |
function makeChildrenArray(layerGroup, dict, allLayers) { | |
// log("called makeChildrenArray for " + layerGroup) | |
// result = new Array() |
This file contains 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
$ cd node_modules/baucis | |
$ npm install | |
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue | |
npm WARN deprecated [email protected]: to-iso-string has been deprecated, use @segment/to-iso-string instead. | |
npm WARN deprecated [email protected]: Jade has been renamed to pug, please install the latest version of pug instead of jade | |
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue | |
[email protected] /Users/ash/node/2016/baucistest/node_modules/baucis | |
├── [email protected] | |
├─┬ [email protected] | |
│ └── [email protected] |
This file contains 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 SBDeviceLockController : NSObject | |
+(id)sharedController; | |
-(BOOL)attemptDeviceUnlockWithPassword:(id)password appRequested:(BOOL)requested; | |
-(void)_clearBlockedState; | |
@end | |
%hook SpringBoard | |
-(void)applicationDidFinishLaunching:(id)application { | |
%orig; |