2015年11月23日

GNOME

摘要: 下载 GNOME我们推荐从你得发行版销售商那儿去获得 GNOME, 同时我们也提供了源码以供你自己编译. 请查看发行注解以获得更多相关信息."平台源码":http://ftp.gnome.org/pub/GNOME/platform/"桌面源码":http://ftp.gnome.org/pub/G... 阅读全文

posted @ 2015-11-23 18:15 DayAfterDay 阅读(122) 评论(0) 推荐(0) 编辑

2015年11月19日

cpu绑定和cpu亲和性

摘要: 将进程/线程与cpu绑定,最直观的好处就是提高了cpu cache的命中率,从而减少内存访问损耗,提高程序的速度。我觉得在NUMA架构下,这个操作对系统运行速度的提升有较大的意义,而在SMP架构下,这个提升可能就比较小。这主要是因为两者对于cache、总线这些资源的分配使用方式不同造成的,NUMA每... 阅读全文

posted @ 2015-11-19 13:23 DayAfterDay 阅读(2012) 评论(0) 推荐(0) 编辑

2015年11月13日

git tab 自动补全

摘要: cp /usr/share/doc/git-1.7.1/contrib/completion/git-completion.bash /etc/bash_completion.d/echo "source /etc/bash_completion.d/git-completion.bash" >>... 阅读全文

posted @ 2015-11-13 10:01 DayAfterDay 阅读(452) 评论(0) 推荐(0) 编辑

2015年11月11日

python 进制转换

摘要: def intToList(ret): list = [] for i in range(1, 8): list.append(a & 2**i and 1) return list#python2.6以后内置函数#10进制转为2进制>>>bin(10)'0b1010... 阅读全文

posted @ 2015-11-11 18:29 DayAfterDay 阅读(219) 评论(0) 推荐(0) 编辑

2015年11月9日

shell getopt

摘要: echo $*while getopts ":a:bc" optdo case $opt in a ) echo $OPTARG echo $OPTIND;; b ) echo "b $OPTIND";; c ) echo "c $OPTIND";; ? ) echo "error" exit 1;... 阅读全文

posted @ 2015-11-09 13:24 DayAfterDay 阅读(203) 评论(0) 推荐(0) 编辑

2015年11月5日

sqlite3

摘要: SQLite3 C语言下载SQLite3我们下载sqlite源码包,只需要其中的sqlite3.c、sqlite.h即可。最简单的一个创建表操作#include#include"sqlite3.h"intmain(intargc,char*argv[]){constchar*sql_create_t... 阅读全文

posted @ 2015-11-05 15:56 DayAfterDay 阅读(213) 评论(0) 推荐(0) 编辑

2015年10月23日

sg3-utils

摘要: 安装: ubuntu apt-get install sg3-utils centos yum install sg3_utilsThe sg3_utils packageThe sg3_utils packageIntroductionContents of sg3_utilsSub d... 阅读全文

posted @ 2015-10-23 17:53 DayAfterDay 阅读(3205) 评论(0) 推荐(0) 编辑

logger 记录脚本日志

摘要: 举例a=`ls`logger -p local4.alert $alogger 是一个shell 命令接口,可以通过该接口使用Syslog的系统日志模块,还可以从命令行直接向系统日志文件写入一行信息。日志的级别日志的级别分为七级,从紧急程度由高到底:emerg 系统已经不可用,级别为紧急alert ... 阅读全文

posted @ 2015-10-23 14:34 DayAfterDay 阅读(161) 评论(0) 推荐(0) 编辑

2015年10月21日

python -m SimpleHTTPServer 9999

摘要: python -m SimpleHTTPServer 8080 阅读全文

posted @ 2015-10-21 16:15 DayAfterDay 阅读(464) 评论(0) 推荐(0) 编辑

2015年10月14日

python @

摘要: test_\@.pyclass myDecorator(object): def __init__(self, f): print "inside myDecorator.__init__()" self.f = f def __call__(... 阅读全文

posted @ 2015-10-14 16:21 DayAfterDay 阅读(142) 评论(0) 推荐(0) 编辑

导航