Skip to content

Instantly share code, notes, and snippets.

View binux's full-sized avatar

Roy Binux binux

View GitHub Profile
@binux
binux / daemon.sh
Created January 10, 2012 07:38
防止多重启动的守护进程
#!/usr/bin/env bash
if [ ! $STY ]; then
screen -S $(basename $0 .sh) -U -d -m $0 $*
exit 0
fi
if [ ! $LOCK ]; then
LOCK=$(echo $0 $* | md5sum | cut -f 1 -d " ").lock
fi
#!/bin/bash
EMAIL=$1
source vars
set -x
./pkitool $EMAIL
source sendca.sh
#!/usr/bin/env bash
set -x
sleep 10 &
PID=$!
while kill -0 $PID
do
ps h -o pcpu,pmem -p $PID
@binux
binux / encode_fix.py
Created April 24, 2012 11:20
fix encoding for unicode in term.
import sys
import codecs
sys.stdout = codecs.getwriter('utf8')(sys.stdout)
@binux
binux / aria2jsonrpc.js
Created July 15, 2012 13:09
aria2 jsonrpc client
var ARIA2 = (function() {
var jsonrpc_version = '2.0';
function get_auth(url) {
return url.match(/^(?:(?![^:@]+:[^:@\/]*@)[^:\/?#.]+:)?(?:\/\/)?(?:([^:@]*(?::[^:@]*)?)?@)?/)[1];
};
function request(jsonrpc_path, method, params) {
var request_obj = {
jsonrpc: jsonrpc_version,
@binux
binux / TLE.user.js
Created July 19, 2012 07:42
export thunder lixian url to aria2/wget
// ==UserScript==
// @name ThunderLixianExporter
// @namespace http://binux.me/
// @version 0.1
// @description export thunder lixian url to aria2/wget
// @match http://dynamic.cloud.vip.xunlei.com/user_task?*
// @run-at document-end
// @copyright 2012+, You
// ==/UserScript==
@binux
binux / google_image_search.py
Created August 13, 2012 07:46
search for a larger size of image
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8:
# Author: Binux<17175297.hk@gmail.com>
# http://binux.me
# Created on <T_CREATE_DATE>
import sys
import re
import requests
@binux
binux / basedb.py
Created August 30, 2012 12:28
basedb for sqlite
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8:
# Author: Binux<17175297.hk@gmail.com>
# http://binux.me
# Created on 2012-08-30 17:43:49
import logging
logger = logging.getLogger()
@binux
binux / rewrite.py
Created September 7, 2012 04:25
web proxy http links rewrite
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8:
# Author: Binux<17175297.hk@gmail.com>
# http://binux.me
# Created on 2012-09-06 22:22:21
import urlparse
import re
@binux
binux / playlist.js
Created November 16, 2012 14:32
playlist for moe.fm
var _playlist = [];
var _next = '';
var _loading = false;
var _loaded = false;
var _current = 0;
function _load_more() {
if (_loading) return;
_loading = true;
$.get(_next, function(result){