上一页 1 2 3 4 5 6 7 ··· 21 下一页
摘要: 1.之前对pjsip会话状态机,voip skeleton,Email Server和iptable,nginx等程序的总结不够,没有形成清晰的认识2.对学过的shell,makefile知识点要写好总结,以免以后用到能够快速地学习3.对学过的算法(快排,堆,合并,希尔,二叉树的遍历等)和数据结构(... 阅读全文
posted @ 2015-04-29 07:45 苍术厚朴 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 路由器中可能使用的系统是嵌入式的Linux,常用的进程:需要操作data model的进程,编译的时候动态绑定data model动态库,有进程共享锁,mmap共享内存web服务器 通过浏览器配置路由的参数dhcp服务器 为连接到路由的设备配置动态的IPdns客户端 解析域名cwmp客户... 阅读全文
posted @ 2015-04-28 21:37 苍术厚朴 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 红楼梦的二十回:王熙凤正言弹妒意 林黛玉俏语谑娇音黛玉听了宝玉“只许同你玩,替你解闷儿,不过偶然去他那里一趟,就说这话。”听闻这番言语,黛玉甩下一句:“好没意思的话!去不去管我什么事,我又没叫你替我解闷儿。可许你从此不理我呢!”便也不顾史湘云刚到贾府,说着便赌气回房去了。之后宝玉忙跟了来说道:“好好... 阅读全文
posted @ 2015-04-26 22:56 苍术厚朴 阅读(1671) 评论(0) 推荐(0) 编辑
摘要: 1.WinXP常用的网络命令:netstat(端口state)、ipconfig(ip,dhcp,dns)如ipconfig /flushdns或 ipconfig /displaydns、nslookup(dns)、ping(icmp)、tracert(icmp)、route(路由表), arp查... 阅读全文
posted @ 2015-04-26 22:50 苍术厚朴 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 什么是烂?今天和宿友聊了一下,断然觉得整个聊天的五个小时,用一个字来概括就是烂。我宿友是一个思维缜密的人,在我印象中是一个完美主义者(个人观点,他可能不苟同)。我们聊了很多,什么话题都基本上聊了,实习、工作、读研、实验室、公务员、金融、银行、房价、政治、软件病毒,逆向工程,谈恋爱(女朋友)、娱乐... 阅读全文
posted @ 2013-03-10 16:57 苍术厚朴 阅读(569) 评论(0) 推荐(0) 编辑
摘要: 从我自小到大的经历来看,我是一个后知后觉的人,因为我好少接触外面的世界。近期和我爸说到这个问题,我爸回忆我小时候的经历,他说:”我七八岁的时候,已经热火朝天地在田里割禾了;直到中考完毕,我还是勤勤恳恳地帮助家人做农活。在高中,才在忙时寒暑假帮忙。",他总是说:“从小到大,我都没教过你什么。”自己... 阅读全文
posted @ 2012-12-07 14:12 苍术厚朴 阅读(345) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <string.h>#include <stdlib.h>char *Temp(const char *src,int len) //数组是在栈中分配,返回时,帧栈中的内容已经释放,会产生不可预料的结果{ char temp[15]; memcpy(temp,src,len); return temp;}char *TempM(const char *src,int len) //在函数里面申请动态内存,很容易忘记释放内存,导致内存泄漏{ int a=3,b=4; char *temp = (char*) 阅读全文
posted @ 2012-12-06 20:08 苍术厚朴 阅读(373) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>void exchange0(int *a ,int *b) //通过指针交换两者的值{ int c; c = *a; *a = *b; *b= c;}void exchange1(int *a,int *b) //没有交换两者的值,只是交换了地址{ int *c; c = a; a=b; b=c;}void exchange2(int &a,int&b)//通过引用交换两者的值{ int c; c = a; a= b; b=c;}void exchange3(int &a,int &b)//通过异或交换两者的值{ 阅读全文
posted @ 2012-12-06 19:54 苍术厚朴 阅读(7491) 评论(0) 推荐(0) 编辑
摘要: //二维数组的理解#include<stdio.h>void main(){ int a[3][3] = {1,2,3,4,5,6,7,8,9}; int *n[3]; //这两种声明的方式是一样 int *(n[3]); //指针数组 int (*p)[3] = a; //数组指针,指向数组的指针 int *m =&a[0][0]; printf("%x\n",m); printf("%x\n",*(p+1)); printf("%d\n",**(p... 阅读全文
posted @ 2012-12-06 19:34 苍术厚朴 阅读(2411) 评论(0) 推荐(0) 编辑
摘要: youare my sunshine,myonlysunshine, youmakemehappywhenskiesaregrey. you'llneverknowdear,howmuchiloveyou. pleasedon'ttakemysunshineaway. TheothernightdearasIlaysleeping IdreamedIheldyouinmyarms WhenIawokedearIwasmistaken SoandIhungmyheadandcried youare my sunshine,myonlysunshine, youmakemeh... 阅读全文
posted @ 2012-11-13 23:43 苍术厚朴 阅读(235) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 21 下一页