上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 34 下一页
摘要: from :http://blog.csdn.net/huangxiansheng1980/article/details/7191450edit a little bit下面的资料,会随着学习的不断深入,持续的更新。内容没有能有效的组织,因为没一点是本人再学习的过程中,慢慢的总结出来的。等本篇文字足够长的时候,可能会考虑组织文件可读性更强的文字。1. c/c++里面,注释代码是用 // ,而python是用 #2. c/c++里面,定义类对象//defineclassclassClassA{...};////////////////////////////////////////////// 阅读全文
posted @ 2012-08-22 20:42 邓维 阅读(2694) 评论(0) 推荐(0) 编辑
摘要: test.py#!/usr/bin/pythonimportmymodelprint(__name__)mymodel.sayHello()print('Version:',mymodel.version)print('ModelName:',mymodel.modelName())mymodel.py#!/usr/bin/python#Filename:mymode.pyversion='1.0'defsayHello():print("Helloworld")defmodelName():return__name__#en 阅读全文
posted @ 2012-08-03 00:52 邓维 阅读(4034) 评论(0) 推荐(0) 编辑
摘要: 从以前的笔记中找到的,simple but useful=============================调试:gdb list //list code run kill //end debug n=next quit //terminate gdb break lineofcode delete break(breakpoints) numofbreak watch gdb基本命令2 ---------------------------- 命令 描述 break(或b) 行号 在某一行设置断点 break 函数名 在某个函数开头设置断点 break ... if ... 设置条件断 阅读全文
posted @ 2012-07-25 10:15 邓维 阅读(401) 评论(0) 推荐(0) 编辑
摘要: from :http://www.latelee.org/using-gnu-linux/97-how-to-use-doxygen-under-linux.htmldoxygen是一种从源代码生成文档的工具,支持多种语言。当然,源代码中需按一定的格式写注释,这些注释的格式也能帮助我们养成很好的注释习惯,可以尝试一下。使用doxygen生成文档的方法很简单:$ doxygen -g –s$ doxygen只需两个简单命令就可以了。example code: /** *本轮奖励(暂100分制)*@param现有的分数*@param之前的分数*/voidUpdate_New_Scor... 阅读全文
posted @ 2012-07-17 12:00 邓维 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 利用scp传输文件 1、从服务器下载文件 例如 把192.168.0.101上的/home/kimi/test.txt的文件下载到 /tmp/local_destination 2、上传本地文件到服务器 例如 把本机/var/www/目录下的test.php文件上传到192.168.0.101这台服 阅读全文
posted @ 2012-07-07 08:55 邓维 阅读(244927) 评论(3) 推荐(3) 编辑
摘要: ssh cann't connected ,event in localhost[root@localhost ssh]# ssh 127.0.0.1Read from socket failed: Connection reset by peertry the following refer to internet ,but failed (the reference OS is UBUNTU, while mine is fedora )[root@localhost ~]#ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key [root@l 阅读全文
posted @ 2012-07-05 08:45 邓维 阅读(10150) 评论(1) 推荐(1) 编辑
摘要: from:http://middleware123.com/tuxedo/intro/303.html1.处理SIGCHLD信号 当编写fork子进程处理连接的服务器程序时,子进程退出会给父进程产生SIGCHLD信号,父进程若不处理该信号会导致僵尸进程。 处理SIGCHLD信号,使用waitpid调用,不能使用wait简单处理。一般的处理方法如下(信号处理函数): voidsig_chld(int signo){ pid_t pid; int stat; while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0 ) cont... 阅读全文
posted @ 2012-07-04 19:57 邓维 阅读(1122) 评论(0) 推荐(0) 编辑
摘要: from:http://hi.baidu.com/suqiniat/blog/item/eb8ee7a9fd4f45f91f17a25f.html最近在学习ARM的过程中,遇到了一些以前在8位机、16位机应用中所没有见过的专业术语。其中,比较困扰和麻烦的两个名词术语就是“Boot”与 “Remap”。同时,在网上也经常见到有网友就这两个技术名词提出疑问。好在当今网络是如此发达,使得我们可以很快就得到许多老师和老鸟的解答。经过这 一段时间的阅读与实践,算是将这个概念基本给理出了个头绪,借此机会,以自己的理解总结一下,贴到BBS上来,与广大网友们分享,如有不当之处,板砖且 慢,因为我贴此文的目的是 阅读全文
posted @ 2012-06-28 09:33 邓维 阅读(795) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<unistd.h>intmain(intargc,char**argv){if(argc!=2){printf("pipeconfpathname\n");return-1;}printf("pipe_buf:%ld\n",pathconf(argv[1],_PC_PIPE_BUF));}查看指定路径(不同分区不一)的最大容纳的管道字节数[dengwei@localhost tmp]$ ./pipe_buf /tmppipe_buf : 4096因此要注意不能一直往管道里面写,要 阅读全文
posted @ 2012-06-19 17:14 邓维 阅读(162) 评论(0) 推荐(0) 编辑
摘要: UPnP设置 ... 阅读全文
posted @ 2012-06-08 21:19 邓维 阅读(1625) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 34 下一页