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
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
数据库工具:SQLite Manager(V0.7.7)
SQLite版本:V3.6.19+
SQLite Manager 默认是不开启外键的。
那么如何,使用它创建一个带有外键的表呢?
一、开启外键支持
1. 打开“On-connect SQL Tab”
"Tools"->"Open...
分类:
数据库 时间:
2014-05-09 06:31:55
阅读次数:
463
Twemproxy is a proxy server that allows you to reduce the number of open connections
to yourMemcached or Redis server.
What is Twemproxy useful for? It can
reduce the number of connections t...
分类:
其他好文 时间:
2014-05-09 06:30:25
阅读次数:
258
Free and Open Source softwareNameLicenseBrief
infoADMBBSDnonlinear optimization framework, usingautomatic
differentiationALGENCANGPLFortran code for g...
分类:
其他好文 时间:
2014-05-09 05:52:35
阅读次数:
757
eeplat:Open
Source Metadata PaaS
开始学习的时候只是下了整个项目并且跑通,s...
分类:
其他好文 时间:
2014-05-09 02:04:55
阅读次数:
340
通过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
那么,我们必然会想,如何调用页面的脚本呢?其...