码农生活
文章平均质量分 52
TheMinority
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
VIM basic operations
1) modes:modekeydescriptionGeneral Mode Insert Modeibegin at current cursor place abegin at the following character position Abegin at the end of原创 2012-06-04 00:29:29 · 629 阅读 · 0 评论 -
Python Regular Expression——简介
1. 正则表达式使用的特殊符号和字符记号说明正则表达式样例literal匹配字符串的值foore1 | re2匹配正则表达式re1或re2foo | bar.匹配任何字符(换行符除外)b.b^原创 2012-06-05 16:16:54 · 4375 阅读 · 0 评论 -
makefile的最基本用法示例
makefile是Linux下编译多文件程序时快捷有效的方法。主要这里展示了makefile文件的最基本用法,程序由一个.h文件和两个.cc文件构成,代码如下:// h.h#include using namespace std;void b();// b.cc#include "h.h"void b(){ cout << "this is a make原创 2012-06-05 12:10:49 · 523 阅读 · 0 评论 -
How to convert from windows timestamp to unix timestamp
(1) definitionsWindows Timestamp: a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601 (UTC)Unix / POSIX Timestamp: The unix time stamp is a way to track time a原创 2012-07-26 21:27:30 · 838 阅读 · 0 评论 -
svn架设与端口映射
一、svn架设(fedora 14)(1) yum install subversion(2) svnadmin create /(your svn path)/(your svn directory)(3) svnserve -d -r /(your svn path)/ --listen-port=(your svn port)(4) firewall -> other por原创 2012-06-07 11:20:31 · 2490 阅读 · 0 评论
分享