Skip to content

Instantly share code, notes, and snippets.

@HackingGate
HackingGate / pcap-dnsproxy-watchdog.sh
Created February 1, 2016 04:11
A watchdog for Pcap-DNSProxy on OpenWrt
PROG=/usr/sbin/Pcap_DNSProxy
LOGTIME=$(date "+%Y-%m-%d %H:%M:%S")
if [ $(ps|grep ${PROG}|grep -v grep|wc -l) -ge 1 ]; then
echo "['$LOGTIME'] Pcap_DNSProxy is running, PID is $(pidof ${PROG##*/})"
else
echo "['$LOGTIME'] Pcap_DNSProxy is not running."
/etc/init.d/pcap-dnsproxy start
fi
@HackingGate
HackingGate / pdnsd.conf
Last active April 18, 2016 10:02
pdnsd.conf for openwrt
global {
perm_cache=2048;
cache_dir="/var/pdnsd";
# pid_file = /var/run/pdnsd.pid;
run_as="nobody";
server_ip = 0.0.0.0; # Use eth0 here if you want to allow other
# machines on your network to query pdnsd.
server_port = 25252;
status_ctl = on;
# paranoid=on; # This option reduces the chance of cache poisoning
@HackingGate
HackingGate / MetadataObjectTypes.swift
Last active September 7, 2015 03:14
All iOS Available Metadata Object Types
// Available types : https://developer.apple.com/library/prerelease/ios/documentation/AVFoundation/Reference/AVMetadataMachineReadableCodeObject_Class/index.html#//apple_ref/doc/constant_group/Machine_Readable_Object_Types
import AVFoundation
let metadataObjectTypes = [
AVMetadataObjectTypeUPCECode,
AVMetadataObjectTypeCode39Code,
AVMetadataObjectTypeCode39Mod43Code,
AVMetadataObjectTypeEAN13Code,
AVMetadataObjectTypeEAN8Code,
AVMetadataObjectTypeCode93Code,
@HackingGate
HackingGate / busterGenerate.sh
Last active September 27, 2015 05:11
A script to use buster generate static ghost website and fix something..
#!/bin/bash
LOCALHOST=http://localhost:2368
URL=http://hackinggate.com
LOCALDOMAIN=localhost:2368
DOMAIN=hackinggate.com
buster generate --domain=$LOCALHOST
#get rss & sitemap
wget -O- http://127.0.0.1:2368/rss/ > ./static/rss/index.html
@HackingGate
HackingGate / updateBuildNumber.sh
Created August 24, 2015 02:14
Insert Subversion revision number in Xcode
REV_GIT=`git svn info |grep Revision: |cut -c11-`
REV_SVN=`svn info |grep Revision: |cut -c11-`
if [ -z $REV_GIT ] ;then
REV=$REV_SVN
else
REV=$REV_GIT
fi
echo "REV is $REV"
BASEVERNUM=`/usr/libexec/PlistBuddy -c "Print :CFBundleShortVersionString" "${INFOPLIST_FILE}"`
@HackingGate
HackingGate / MySingletonClass.m
Created May 26, 2015 02:17
Objective-C SingletonClass in GCD
#import "MySingletonClass.h"
static MySingletonClass *singleton = nil;
@implementation MySingletonClass
+ (MySingletonClass *)defaultSingleton{
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
singleton = [[MySingletonClass alloc] init];
@HackingGate
HackingGate / ScrollView.m
Created May 9, 2015 04:09
Keyboard dismiss when scrollView drag.
@interface ScrollView <UIScrollViewDelegate,UITextFieldDelegate> {
UITextField *_currentTF;
}
@implementation
- (void)viewDidLoad {
yourScrollView.delegate = self;
yourTextField.delegate = self;
}