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
| // | |
| // BTOTransparentViewController.m | |
| // | |
| // Created by Brian Olencki on 10/31/17. | |
| // | |
| #import "BTOTransparentViewController.h" | |
| @interface BTOTransparentViewController () |
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
| /* | |
| Valid password condition: | |
| • At least 8 characters long | |
| • At least one upper-case letter | |
| • At least one lower-case letter | |
| • At least one numeric digit | |
| */ | |
| ((?=.*\\d)(?=.*[a-z])(?=.*[A-Z])){8,} |
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> | |
| #import <dlfcn.h> | |
| void logTrace(BOOL on) { | |
| typedef void functype(BOOL); | |
| void *libobjc = dlopen("/usr/lib/libobjc.dylib", RTLD_LAZY); | |
| functype *instrumentObjcMessageSends = dlsym(libobjc, "instrumentObjcMessageSends"); | |
| if (!instrumentObjcMessageSends) { | |
| NSLog(@"Couldn't get instrumentObjcMessageSends"); | |
| exit(1); |
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
| from PIL import Image | |
| import sys | |
| import os | |
| picture = None | |
| picturePath = None | |
| def validateColor(hex): | |
| return (len(hex) == 7) |
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
| // | |
| // WKWebview+Complete.h | |
| // partyface | |
| // | |
| // Created by Brian Olencki on 3/26/17. | |
| // Copyright © 2017 Brian Olencki. All rights reserved. | |
| // | |
| #import <WebKit/WebKit.h> |
NewerOlder