09 2016 档案

摘要:由于刚刚装了ubuntu 16.04,该版本gcc版本为5.4.0太高,很多软件不支持,所以要降版本,可以直接看(三)解决 一、gcc源代码网站 ftp://mirrors.kernel.org/gnu/gcc/ 含各版本源代码,可用wget方法下载过来,好像速度会快一点 二、遇到编译错误 ①Bui 阅读全文
posted @ 2016-09-30 17:55 chencesc 阅读(1687) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/terence1212/article/details/52270210 阅读全文
posted @ 2016-09-28 22:54 chencesc 阅读(112) 评论(0) 推荐(0)
摘要:http://tieba.baidu.com/p/2830604485 阅读全文
posted @ 2016-09-28 17:34 chencesc 阅读(159) 评论(0) 推荐(0)
摘要:逐行扫描 : 对每一行进行扫描,如果一帧图像是连续扫描625行组成的,每秒钟共扫描50帧图像,即帧扫描频率为50帧/秒,或写成50Hz(赫兹),行扫描频率为 31.25kHz。 隔行扫描 : 分别对奇数行和偶数行进行扫描,分为顶场和底场,每一场扫描312.5行,每秒钟扫描25帧图像(50场)即隔行扫 阅读全文
posted @ 2016-09-27 17:25 chencesc 阅读(737) 评论(0) 推荐(0)
摘要:图像处理大神 http://blog.csdn.net/matrix_space/article/details/38687427 阅读全文
posted @ 2016-09-27 16:51 chencesc 阅读(398) 评论(0) 推荐(0)
摘要:与内存池差不多 线程池刚开始就全部创建起来,供用户使用 好处是 : 1.减少在创建和销毁线程上所花的时间以及系统资源的开销 2.如不使用线程池,有可能造成系统创建大量线程而导致消耗完系统内存以及”过度切换”。 线程池介绍 http://blog.csdn.net/kavensu/article/de 阅读全文
posted @ 2016-09-27 16:33 chencesc 阅读(135) 评论(0) 推荐(0)
摘要:http://www.cnblogs.com/jingzhishen/p/3555820.html 阅读全文
posted @ 2016-09-27 16:25 chencesc 阅读(143) 评论(0) 推荐(0)
摘要:http://www.cnblogs.com/jingzhishen/p/4895473.html 阅读全文
posted @ 2016-09-27 16:14 chencesc 阅读(149) 评论(0) 推荐(0)
摘要:#include #include #include #include #include int Base64Decode(const char *in, char* out, int out_length) { int i, v; static const uint8_t decodeMap[] = { 0x3e, 0xff, 0xf... 阅读全文
posted @ 2016-09-27 15:56 chencesc 阅读(393) 评论(0) 推荐(0)
摘要:ubuntu 安装wireshark sudo apt-get install wireshark 中间弹出提示框选yes 实例教程 http://wenku.baidu.com/view/bdb0e34433687e21ae45a907.html 使用fileter 过滤包 protocol di 阅读全文
posted @ 2016-09-27 15:49 chencesc 阅读(127) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2016-09-21 22:30 chencesc 阅读(4) 评论(0) 推荐(0)
摘要:教程 http://www.runoob.com/python/att-list-append.html 习题 http://blog.csdn.net/liuyuan_jq/article/details/6603651 数据类型及操作 http://www.cnblogs.com/zhengyu 阅读全文
posted @ 2016-09-13 16:14 chencesc 阅读(102) 评论(0) 推荐(0)
摘要:linux终端查看cpu和内存使用情况 t一、op进入全屏实时系统资源使用信息查看 PID:进程的ID USER:进程所有者 PR:进程的优先级别,越小越优先被执行 NInice:值 VIRT:进程占用的虚拟内存 RES:进程占用的物理内存 SHR:进程使用的共享内存 S:进程的状态。S表示休眠,R 阅读全文
posted @ 2016-09-13 15:11 chencesc 阅读(461) 评论(0) 推荐(0)
摘要:makefile中常用的函数: http://linux.chinaunix.net/techdoc/develop/2009/07/09/1122854.shtml SRC = $(wildcard *.c) // 取目录下的.c文件OBJS = $(patsubst %.c,%.o,$(SRC) 阅读全文
posted @ 2016-09-07 15:44 chencesc 阅读(178) 评论(0) 推荐(0)
摘要:http://www.cnblogs.com/coderzh/archive/2008/11/23/1339310.html 一个简单的实例: 关于 wx.Frame.__init__ 阅读全文
posted @ 2016-09-07 09:28 chencesc 阅读(130) 评论(0) 推荐(0)
摘要:http://zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/python_style_rules/ 阅读全文
posted @ 2016-09-06 17:25 chencesc 阅读(137) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/jcodeer?viewmode=contents http://tieba.baidu.com/p/3082739560 http://blog.sina.com.cn/s/blog_c8bffac20102wheu.html 组件介绍 http://ww 阅读全文
posted @ 2016-09-06 16:20 chencesc 阅读(666) 评论(0) 推荐(0)