Skip to content

Instantly share code, notes, and snippets.

View huwan's full-sized avatar

Hu Wan huwan

  • City University of Hong Kong
  • 01:36 (UTC +08:00)
View GitHub Profile
@huwan
huwan / README.md
Last active August 29, 2015 14:02
Linux 定时使用脚本检测程序运行状态并通过飞信进行通知

Linux 定时使用脚本检测程序运行状态并通过飞信进行通知

  • 可以通过输入进程号(精确匹配)(注)或者特定的进程名称(模糊匹配)
  • 当程序完成退出后,通过中国移动[命令行飞信] 1 进行提醒
  • 需结合crontab 计划任务服务,每隔10分钟执行一次检测任务

注:因为是使用ps -ef + grep 所以,有可能一个进程号在多列出现,并不是完全意义上的精确匹配,但实际使用中一般不会出问题,可以先人工确认一下是否唯一

@huwan
huwan / cmath.c
Last active August 29, 2015 14:01
cmath
/*!
* @brief Checks if n is a power of 2.
* @returns true if n is power of 2
*/
static inline bool IsPower2(UINT32 n)
{
return ((n & (n - 1)) == 0);
}
/*!
@huwan
huwan / artii.sh
Created March 4, 2014 10:06
遍历artii 支持的font,并将artii 处理后的文本内容输出到文件
#! /bin/bash
cat artiifont.txt | while read line
do
echo "${line}:" >> cf.txt
artii 'Cache' -f ${line} >> cf.txt
done
@huwan
huwan / grey-style
Created April 20, 2013 16:06
将网站变成黑白(灰)色代码。把代码放到页面的<head></head>中间,或者去掉style标签后放到css文件中去。
<style>
#J-slide, .header,.main,.nav a ,.slide-number, #J-slide, .slide .bg{ filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); zoom: 1;}
.follow_btn .icon {color:#ccc;}
html {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);