- 博客(231)
- 资源 (21)
- 收藏
- 关注
转载 文件批量修改
1.将所有.h~文件改成.h文件find ./ -name "*.*" | awk -F "." '{print $2}' | xargs -i -t mv ./{}.h~ ./{}.h http://blog.csdn.net/longxibendi/article/details/6387732
2017-05-04 10:29:11
690
转载 CentOS 7下的Vim自动补齐插件YouCompleteMe安装及配置
http://www.cnblogs.com/xiehongfeng100/p/4651972.htmlhttp://www.cnblogs.com/zzqcn/p/4660615.html
2017-04-28 11:26:18
1953
转载 vim打开多窗口、多文件之间的切换
打开多个文件:一、vim还没有启动的时候:1.在终端里输入 vim file1 file2 ... filen便可以打开所有想要打开的文件2.vim已经启动输入:e file可以再打开一个文件,并且此时vim里会显示出file文件的内容。3.同时显示多个文件::sp //水平切分窗口:vspli
2017-04-28 11:14:52
937
转载 Vim插件EasyGrep使用简介
http://www.jianshu.com/p/3fb1b2170540========Linux上使用Vim进行文件搜一般使用grep命令+grep.vim插件完成, 但在Windows上使用grep就有些不方便了, GnuWin32和UnxUtils虽然都提供了Windows移植版本的Grep.exe, 但都有bug, 比如:Gnuwin32 find.exe
2017-04-28 09:47:46
2105
转载 Vim十大必备插件
http://www.open-open.com/lib/view/open1414227253419.htmlVim十大必备插件Taglisttaglist是一个用于显示定位程序中各种符号的插件,例如宏定义、变量名、结构名、函数名这些东西 我们将其称之为符号(symbols),而在taglist中将其称之为tag。显然,要想将程序文件中的tag显示出来,需要事先了
2017-04-28 09:18:59
2651
转载 Vim E568:: duplicate cscope database not added 解决方法
http://blog.csdn.net/huluedeai/article/details/51180231
2017-04-28 08:52:53
936
转载 SourceInsight集成圈复杂度检测工具
http://jingyan.baidu.com/article/5d6edee20894e899eadeec9b.html
2017-04-18 21:56:25
2372
转载 gvim相关配置 及集成在source insight中
Vim和Source Insight切换谁说鱼与熊掌不可兼得?以下的技巧献给像我一样在windows平台下,钟爱vim,同时又在Source Insight的朋友不可否认,Source Insight看代码时比较方便,而且它的代码自动完成功能比vim+ctags+cscope好用的多,可是我认为写代码 时,Source Insight的功能却比不上vim。所以我经常
2017-04-18 16:02:21
1122
转载 Linux下gcc编译生成动态链接库*.so文件并调用它
http://blog.sina.com.cn/s/blog_54f82cc20101153x.html
2017-02-08 09:40:17
921
转载 PV、TPS、QPS
https://www.zhihu.com/question/21556347术语说明:QPS = req/sec = 请求数/秒【QPS计算PV和机器的方式】QPS统计方式 [一般使用 http_load 进行统计]QPS = 总请求数 / ( 进程总数 * 请求时间 )QPS: 单个进程每秒请求服务器的成功次数单台服务器每天PV计算公
2016-12-28 15:27:42
631
转载 wireshark抓包常见提示含义解析(转)
http://www.voidcn.com/blog/chenlycly/article/p-6182925.html
2016-12-27 10:06:49
4370
转载 Ddos 相关技术
http://www.cnblogs.com/SwordTao/p/3766151.htmlhttps://blog.gobyoung.com/cn/2015-how-synproxy-works.html
2016-12-26 18:03:48
622
转载 Linux网络协议栈
http://blog.csdn.net/qy532846454/article/category/1385933/2http://abcdxyzk.github.io/blog/cats/kernel/
2016-12-26 12:18:43
541
转载 source insight style 配色方案
http://www.cnblogs.com/JonnyLulu/p/3871413.html
2016-12-16 13:45:13
4340
转载 机器学习相关连接
https://github.com/ZuzooVn/machine-learning-for-software-engineershttps://github.com/josephmisiti/awesome-machine-learning#c-general-purpose
2016-12-15 16:17:22
487
转载 网络技术博客
http://blog.chinaunix.net/uid-20671208-id-4557447.htmlhttp://blog.chinaunix.net/uid/24148050.htmlhttp://blog.chinaunix.net/uid-23629988-id-3112210.htmlhttp://www.debugease.com/vc/2116320.htm
2016-11-29 22:06:42
557
转载 dpdk相关连接
http://www.aiuxian.com/article/p-512549.htmlhttp://www.cnblogs.com/mylinuxer/category/661489.htmlhttp://www.aiuxian.com/relative/p-1890611.html
2016-11-24 17:55:46
479
转载 __attribute__
__attribute__((unused)) 表示该函数或变量可能不使用,避免编译器产生告警信息。__attribute__ ((packed)) 的作用就是告诉编译器取消结构在编译过程中的优化对齐,按照实际占用字节数进行对齐,是GCC特有的语法。
2016-11-24 15:23:22
316
转载 Intel发布面向开发者的推荐阅读清单
http://www.infoq.com/cn/news/2014/01/intel-recommended-reading-list/
2016-11-20 23:13:48
364
原创 如何查看cpu过高,找到对应线程号及该线程对应的函数
如何查看cpu过高,找到对应线程号及该线程对应的函数 1. top命令top -H -d1 Shfit+F 如下 第一列是线程id,最后一列是cpu核号。 2. gdb attach 进程号3. gdb info threads 查看对应线程号频繁调用的函数。
2016-11-15 17:57:52
3601
转载 makefile中 DIR = $(CURDIR)的疑问
http://blog.sina.com.cn/s/blog_89fa41ef0100u09h.html
2016-11-14 15:24:25
4183
转载 Makefile 中:= ?= += =的区别
http://www.cnblogs.com/wanqieddy/archive/2011/09/21/2184257.html
2016-11-14 15:22:41
274
转载 RBTree和AVLtree
https://www.zhihu.com/question/20545708https://www.zhihu.com/question/19856999
2016-10-11 13:45:20
925
转载 OProfile
http://www.ibm.com/developerworks/cn/linux/l-gnuprof.htmlhttp://blog.chinaunix.net/uid-13746440-id-3152484.htmlhttp://www.cnblogs.com/bangerlee/archive/2012/08/30/2659435.html
2016-10-10 16:46:56
294
原创 Linux 时钟(微妙,纳秒)
time_us.c#include #include #include #include int time_substract(struct timeval *result, struct timeval *begin,struct timeval *end){ if(begin->tv_sec > end->tv_sec) return -1;
2016-10-09 18:01:12
1236
转载 区间树简单实现(interval_tree)
interval_tree.cpp/* 区间树(interval tree)是一种对动态集合进行维护的扩张红黑树,因此可在实验二红黑树的基础上进行扩张。*/ #include #include #include #include #include #include #define SENTINEL -100000 //哨兵,作为nil结点的key,方便树状输出时临
2016-10-09 16:49:02
5759
1
转载 整形的hash算法
//bits值越小用的hashtable的空间越小unsigned long hash_long(unsigned long val,unsigned int bits){ unsigned long hash = val * 0x9e370001UL; return hash >> (32 - bits);}int main(void){ int i,j = 8192; pri
2016-07-30 05:03:01
1350
转载 谈谈dpdk应用层包处理程序的多进程和多线程模型选择时的若干考虑
http://www.cnblogs.com/jiayy/p/3430974.html
2016-07-20 08:10:58
1327
1
2fsk通信系统通信课设
2009-01-08
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人