Skip to content

Instantly share code, notes, and snippets.

View binux's full-sized avatar

Roy Binux binux

View GitHub Profile
#!/usr/bin/env bash
set -x
sleep 10 &
PID=$!
while kill -0 $PID
do
ps h -o pcpu,pmem -p $PID
#!/bin/bash
EMAIL=$1
source vars
set -x
./pkitool $EMAIL
source sendca.sh
@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
@binux
binux / proxyheader.php
Created January 6, 2012 15:49
请求信息输出
<html>
<head>
<title>CS_ProxyJudge ver 1.0</title>
</head>
<body bgcolor="#808080">
<font color="#FFFFFF"><B>
<PRE>
<?
//=======================================================================
// 修改记录:
@binux
binux / mem_cache.py
Created January 6, 2012 11:39
一个通用的python function cache
# -*- coding: utf-8 -*-
#
# Copyright(c) 2010 poweredsites.org
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
@binux
binux / jsfunctionParser.py
Created December 14, 2011 13:12
xunlei lixian plugin for flexget
# jsonParser.py
#
# Implementation of a simple JSON parser, returning a hierarchical
# ParseResults object support both list- and dict-style data access.
#
# Copyright 2006, by Paul McGuire
#
# Updated 8 Jan 2007 - fixed dict grouping bug, and made elements and
# members optional in array and object collections
#
@binux
binux / baidu_fanyi.py
Created December 8, 2011 07:06
百度翻译api
# -*- encoding: utf-8 -*-
# author: binux<17175297.hk@gmail.com>
import re
import time
import json
import requests
class BaiduFanYiAPI(object):
"""
@binux
binux / gist:1384677
Created November 22, 2011 02:10
a diff function base on Advanced Dynamic Programming
#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
Created on 2011-6-7
Modified on 2011-11-22
a diff function base on Advanced Dynamic Programming
http://www.avatar.se/molbioinfo2001/dynprog/adv_dynamic.html
@author: binux
@binux
binux / gist:1369949
Created November 16, 2011 12:21
call any function asynchronous in tornado
class AsyncProcessMixin(object):
def call_subprocess(self, func, callback=None, args=[], kwargs={}):
self.ioloop = tornado.ioloop.IOLoop.instance()
self.pipe, child_conn = Pipe()
def wrap(func, pipe, args, kwargs):
try:
pipe.send(func(*args, **kwargs))
except Exception, e:
logging.error(traceback.format_exc())
@binux
binux / pool.py
Created May 26, 2011 06:39
使用threading+queue的线程池封装,使用对象在每个对象中保存独立的连接,可以安全地使用ctrl-c打断
# !/usr/bin/env python
# -*- coding:utf-8 -*-
import sys
import time
import Queue
import threading
import traceback
class ExitException(Exception):