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
alert(6) |
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
# layout/DEBIAN/postinst | |
echo "Killall RootTools..." | |
killall -9 RootTools | |
echo "Sign RootTools..." | |
ldid -e `which bash` > ent.xml | |
ldid -Sent.xml `which RootTools` |
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
scp2phone(){ | |
if [ $# -eq 0 ]; then | |
echo "No arguments specified.\nUsage:\n scp2phone <file|directory> <file|directory>\n ... | scp2phone <file_name>">&2; | |
return 1; | |
fi; | |
if [ $# -eq 1 ]; then | |
scp -rp -P 2222 $1 [email protected]:/tmp/ | |
return 1; | |
fi; |
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
import gevent.monkey | |
gevent.monkey.patch_all() | |
import multiprocessing | |
debug = False | |
loglevel = 'info' | |
#bind = '0.0.0.0:8002' | |
#pidfile = 'gunicorn.pid' |
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
// | |
// SettingManager.h | |
// ProtocolRecord | |
// | |
#import <Foundation/Foundation.h> | |
NS_ASSUME_NONNULL_BEGIN | |
@interface SettingManager : NSObject |
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
// | |
// DDLogInit.h | |
// ProtocolRecord | |
// | |
#import <Foundation/Foundation.h> | |
#import <CocoaLumberjack/CocoaLumberjack.h> | |
static const DDLogLevel ddLogLevel = DDLogLevelVerbose; | |
NS_ASSUME_NONNULL_BEGIN |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
__author__ = 'Elie' | |
import requests | |
from urllib.parse import quote | |
__prepare__ = requests.models.PreparedRequest.prepare | |
pre_requests_hook = None |
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
#import <Foundation/Foundation.h> | |
@interface AZOpenUDID : NSObject | |
+(instancetype) shareInstance ; | |
@property (nonatomic, retain) NSUUID *udid; | |
@property (nonatomic, retain) NSString *key; | |
@end |
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
#!/usr/bin/env python3 | |
# encoding: utf-8 | |
# by: ELie | |
""" | |
Cert Scan | |
depend: | |
python3 pip install pymongo | |
python3 pip install pyOpenSSL | |
use: |