http://www.inlab.de/articles/free-and-open-source-load-balancing-software-and-projects.htmlThis
overview is also maintained at the Xing "Load-Balancin...
分类:
其他好文 时间:
2014-05-09 10:17:18
阅读次数:
340
OOP编程原则:1.开闭原则(OCP : Open-Close
Principle):对扩展开放,对修改封闭2.依赖倒置(DIP: Dependency Inversion Principle):
依赖于抽象,不依赖于具体3.替换原则(LSP): 父类能够出现的地方,子类都能够出现。4.接口隔离原则...
分类:
其他好文 时间:
2014-05-09 09:56:31
阅读次数:
417
简介通常日志管理是逐渐崩溃的——当日志对于人们最重要的时候,也就是出现问题的时候,这个渐进的过程就开始了。日志管理一般会经历一下3个阶段:初级管理员将通过一些传统工具(如cat、tail、sed、awk、perl以及grep)对日志进行检查,但它的适用范围仅限于少量的主机和日志文件类型;考虑到现实中...
分类:
其他好文 时间:
2014-05-09 08:18:10
阅读次数:
651
Fix invisible cursor issue in Ubuntu
13.10Fixing this problem is rather too easy. Open a terminal (Ctrl+Alt+T) and
use the following command:gsettings...
分类:
其他好文 时间:
2014-05-09 07:57:17
阅读次数:
311
环境:CentOS
鉴于语句描述苍白无力,用例子直接说明...
分类:
系统相关 时间:
2014-05-09 02:19:30
阅读次数:
380
eeplat:Open
Source Metadata PaaS
开始学习的时候只是下了整个项目并且跑通,s...
分类:
其他好文 时间:
2014-05-09 02:04:55
阅读次数:
340
程序运行时候崩溃,提示object cannot be nil
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil'
提示如上面。
请问怎么解决...
分类:
其他好文 时间:
2014-05-09 01:31:55
阅读次数:
558
通过excel进行快速开发报表:
建设思路:
1.首先制订相关的execl模板。
2.通过etl工具(kettle)可以快速的
将数据库中的数据按excel模板导出成新的excel即可。
其中kettle 按excel模板导出excel 可以参考:
http://type-exit.org/adventures-with-open-source-bi/2010/12/using...
分类:
其他好文 时间:
2014-05-09 01:22:42
阅读次数:
311
高级I/O
非阻塞IO
非阻塞I/O使我们可以调用open、read和write这样的I/O操作,并使这些操作不会永久阻塞。如果这种操作不能完成,则调用立即出错返回,表示该操作如继续执行将阻塞。
对于一个给定的描述符有两种方法对其指定非阻塞I/O:
1) 如果调用open获得描述符,则可指定O_NONBLOCK标志
2) 对于已打开的一个描述符,则可调用fcntl,由...
分类:
系统相关 时间:
2014-05-09 01:16:55
阅读次数:
577
1、首先比较简单的我们知道有类似的方法如下
System.Diagnostics.Process.Start("http://www.baidu.com");2、比较灵活一点,可以定义窗口大小,我们要实现网页中脚本打开页面的方法,即window.open
那么,我们必然会想,如何调用页面的脚本呢?其...