摘要:
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><script type="text/javascript" src="./js/jquery-1.2.2.pack.js" ></script><style>.sidebtn { background: url(./img/list.gif) no-repeat top left; height: 16px; margin: 0 阅读全文
摘要:
telnet 192.168.1.123 无敌连接设备。在ubuntu中。。可以shift+Ctrl+t 在同一终端打开一个新的窗口 阅读全文
摘要:
sed -n '10,1p' set.js //查看set.js 文件中的第10行sed -n '30,80p' set.js //查看set.js文件中的第10-50行 阅读全文
摘要:
#include <stdio.h>#define MAX_NUMBER(a,b) ((a)>(b)) ? (a):(b) //返回较大的一个数。#define MAX(a,b) ((a)/(b)) ? (a):(b) //返回最大的一个数。不用if,等语句int main(){ printf("%d\n",MAX_NUMBER(10,5)); printf("%d\n",MAX(5,6));} 阅读全文
摘要:
/* 这是.c文件里的内容 文件名为: two_row_code.c */#include <stdio.h>int main(){ printf("%s\n","my name is qingjoin!\n"); }/* 下面是makefile文件里的内容 文件名为:makefile */two_row_code:two_row_code.o cc -o two_row_code two_row_code.o //1two_row_code.o:two_row_code.c cc -c two_row_code.c ... 阅读全文
摘要:
# history | tail -3 2029 ls 2030 make 2031 history | tail -3 //查看用户最后执行的3条命令#history | tail -3 //清除所有历史记录# alias test1='cd /mnt/hgfs/share/project' //设置一个命令别名# test1 //执行命令 /mnt/hgfs/share/project## unalias test1 ... 阅读全文
摘要:
static int char_to_wchar(const char* orig_str, wchar_t *wtext, int max_length){ int nCoverLen = 0; //add by shenbo setlocale(LC_ALL, "zh_CN.utf8"); nCoverLen = mbstowcs(wtext, orig_str, max_length - 1); if(-1 == nCoverLen){ perror("mbstowcs"); return... 阅读全文
摘要:
去年8月,Google街景团队就已经驾着照相机泛舟在亚马逊河之上了,现在他们的工作成果终于出现在了Google街景里。你可以泛舟在里奥内格罗河之上,或是到被洪水淹没的深入到森林里的小支流里看一看。走进亚马逊森林步道,看看巴西各种坚果是如何收获的,运气好的话甚至能一瞥森林里的小动物!同时上线的还有波兰街景,这里将成为2012年欧洲杯足球赛的举办地,届时会涌入100万球迷,所以Google也不失时机的推出了波兰街景。位于欧洲心脏位置的波兰有着丰富的历史,你可以漫步在克拉科夫,这里曾经是13世纪欧洲最大的集市:你还可以参观波兰首都华沙的老城,尽管在第二次世界大战的时候被毁,但现在是联合国教科文组织世 阅读全文
摘要:
int __ns8__GetNTP(struct soap* soap, struct _ns8__GetNTP *ns8__GetNTP, struct _ns8__GetNTPResponse *ns8__GetNTPResponse) { printf("%s\n",__FUNCTION__); readIPaddr(); //read NTP configuration struct ns3__NTPInformation *pNTPInformation; pNTPInformation=(struct n... 阅读全文
摘要:
#include <stdio.h>int is_valid_ip(const char *ip) { int section = 0; //每一节的十进制值 int dot = 0; //几个点分隔符 int last = -1; //每一节中上一个字符 while(*ip) { if(*ip == '.') { dot++; if(dot > 3) { return 0; } ... 阅读全文