方式一在Idle方法中更新 1 void OnApplicationIdle(object sender, EventArgs e) 2 { 3 // Use the Idle event to update the status of menu and to...
分类:
其他好文 时间:
2014-07-19 20:06:17
阅读次数:
210
Continue from the last article......2) Confirmed the 80 port of the new added IP is not listened by any other services.Why need to test this? This is....
分类:
Web程序 时间:
2014-07-19 20:06:37
阅读次数:
354
二进制的语法 C/C++默认数字使用十进制,八进制使用前缀 0, 十六进制使用前缀 0x 或 0X,二进制常数的提议被否决(引用C 语言程序原理国际标准的 6.4.4.1 章节字段 "A proposal to add binary constants was rejected due to la....
分类:
编程语言 时间:
2014-07-19 20:07:01
阅读次数:
240
时间限制:0.25s空间限制:12M题意 给定一个合法的仅由'(',')'组成的括号序列,求它的下一个合法排列.假定'('f[j]; 将最后的‘)’和‘(’ 交换位置,再把后面所以的括号反转。即可得到我们需要的解。code:#include #include #include usi...
分类:
其他好文 时间:
2014-07-19 20:07:16
阅读次数:
252
本文为本人原创,首发到炼数成金http://f.dataguru.cn/thread-138720-1-1.html。情况是这样的,我没有一个非常强劲的电脑来搞出一个性能非常NB的服务器集群,相信很多人也跟我差不多,所以现在把我的低配置集群经验拿出来写一下好了。我的配备:1)五六年前的赛扬单核处理器...
分类:
其他好文 时间:
2014-07-19 20:07:37
阅读次数:
294
一、time() -- 返回当前的 Unix 时间戳 $nextWeek = time() + (7 * 24 * 60 * 60); echo 'Next Week: '. date('Y-m-d', $nextWeek) ."\n";二、mktime(时/分/秒/月/天/年) -- 取得一个日期...
分类:
Web程序 时间:
2014-07-19 20:08:40
阅读次数:
277
之前有提到Windows服务器添加多个虚拟IP的方法,只需要用图形化界面就可以了,但是Linux服务器就没那么简单。所以总结了这么一篇教程,记录一下如何在Linux服务器上添加虚拟IP。1)以Root权限登录,或者登陆以后su - 获取root权限。2)跳转到Network设置的位置:cd /etc...
分类:
系统相关 时间:
2014-07-19 20:08:17
阅读次数:
353
==================写的好,大转一把,呵呵================hi3518C 环境说明硬件环境:处理器内核:ARM926@440MHz,16KB I-Cache, 16KBD-Cache视频编码:H.264 Baseline Profile 编码 H.264 Main P...
分类:
其他好文 时间:
2014-07-19 20:07:57
阅读次数:
1828
1. Python 操作 Excel 的函数库我主要尝试了 3 种读写 Excel 的方法:1> xlrd, xlwt, xlutils: 这三个库的好处是不需要其它支持,在任何操作系统上都可以使用。xlrd 可以读取 .xls, .xlsx 文件,非常好用;但因为 xlwt 不能直接修改 Exce...
分类:
编程语言 时间:
2014-07-19 20:08:55
阅读次数:
280
今天在工作时,看到了奇葩的结构体初始化方式,于是我查了一下C99标准文档和gcc的说明文档,终于搞清楚是怎么回事了。 假设有如下结构体定义:typedef struct{ int a, b, c;} MyStruct; 那么结构体的初始化方式如下有三种:(1) C89的初始化方式MyS...
分类:
编程语言 时间:
2014-07-19 20:09:36
阅读次数:
203
此文是学习 C专家编程 中的笔记。setjmp和longjmp是C语言所独有的,它们部分弥补了C语言有限的转移能力。函数说明(来自wiki百科):int setjmp(jmp_bufenv)建立本地的jmp_buf缓冲区并且初始化,用于将来跳转回此处。这个子程序保存程序的调用环境于env参数所指的缓...
分类:
其他好文 时间:
2014-07-19 20:09:16
阅读次数:
221
How to Housekeep logs without restarting process1) Go to the log folder2) run the command:mv access_log access_log.oldkill -1 `cat httpd.pid`
分类:
其他好文 时间:
2014-07-19 20:10:20
阅读次数:
244
It's very simple to configure a IBM HTTP Server / Apache service on a server. But sometimes, considering the cost or any other reason, we need to sha....
分类:
Web程序 时间:
2014-07-19 20:09:56
阅读次数:
313
就像大家更熟悉的const一样,volatile是一个类型修饰符(type specifier)。它是被设计用来修饰被不同线程访问和修改的变量。如果没有volatile,基本上会导致这样的结果:要么无法编写多线程程序,要么编译器失去大量优化的机会。1,作用 volatile的作用: 作为指令关键字....
分类:
其他好文 时间:
2014-07-19 20:10:35
阅读次数:
347
This Section will continue the actual configure for IHS related files.3) Copy the httpd.conf file to httpd2.conf, and modify them.Now Virtual IP have ...
分类:
Web程序 时间:
2014-07-19 20:10:57
阅读次数:
307
1. Firefox安装Flash:sudo apt-get install flashplugin-nonfree2. 更换源:保存当前源列表:sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup打开当前源列表:sudo gedit ...
分类:
其他好文 时间:
2014-07-19 20:11:39
阅读次数:
207