Skip to content

Instantly share code, notes, and snippets.

@jonas8
jonas8 / validationEngineLanguage.allRules.js
Last active September 11, 2015 02:59
validationEngineLanguage.allRules
$.validationEngineLanguage.allRules = {
"required": {
"regex": "none",
"alertText": "* This field is required",
"alertTextCheckboxMultiple": "* Please select an option",
"alertTextCheckboxe": "* This checkbox is required"
},
"length": {
"regex": "none",
"alertText": "*Between ",
@jonas8
jonas8 / gfwdomains.sh
Created September 6, 2015 09:14
gfw domains
Output="./greatfire.txt"
if [ -f $Output ]
then
rm $Output
fi
Threshold=20
for i in 0 1 2 3 4 5 6 7 8 9
do
curl -s --insecure "https://zh.greatfire.org/search/alexa-top-1000-domains?page=$i"| \
@jonas8
jonas8 / comment
Created June 3, 2015 02:44
佛祖保佑永无BUG
// _oo0oo_
// 088888880
// 88" . "88
// (| -_- |)
// 0\ = /0
// ___/'---'\___
// .' \\| |// '.
// / \\||| : |||// \
// / -||||| -:- |||||- \
// | | \\\ - /// | |
Basic Requirements:
Computer with wired and wireless connection
FFmpeg installation: http://www.ffmpeg.org/
GoPro Hero 3+: http://gopro.com/
RTMP server e.g. FMS (http://www.adobe.com/products/adobe-media-server-family.html) or CDN ingest point
Overview:
GoPro Hero3 cameras produce HLS streams which are consumed by control apps and their removeable monitor.
@jonas8
jonas8 / gist:a3309c838740c5706a26
Created April 27, 2015 03:34
Switching easily between Java JDKs on Mac OS X (.zshrc)
alias setJdk6='export JAVA_HOME=$(/usr/libexec/java_home -v 1.6)'
alias setJdk7='export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)'
alias setJdk8='export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)'

SublimeText3 Valid License without cracking! Just download/install then use this license.

----- BEGIN LICENSE -----

Andrew Weber
Single User License
EA7E-855605
813A03DD 5E4AD9E6 6C0EEB94 BC99798F
942194A6 02396E98 E62C9979 4BB979FE
91424C9D A45400BF F6747D88 2FB88078
@jonas8
jonas8 / GistList!.md
Created January 21, 2015 09:48
Try GistList for iOS! http://gistlist.io/

##alt text GistList: TODO for coders alt text

@jonas8
jonas8 / gist:7cb2f7c6ca1848212fee
Created December 16, 2014 09:58
TCP连接数
netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'
@jonas8
jonas8 / gist:2db6eb21393aa2baba5e
Created October 13, 2014 09:11
google glass auto openvpn
#!/system/bin/sh
getStatus () {
ps | grep openvpn && return 1
netcfg | grep $1 && return 1
return 0
}
getWlanConnectStatus()
{
ifconfig wlan0 | egrep '([0-9]{1,3}\.){3}[0-9]{1,3}' && return 1
return 0
@jonas8
jonas8 / gist:0f547715d312b5d336dc
Created October 9, 2014 10:28
Flush DNS Cache on mac osx 10.7 above
killall -HUP mDNSResponder