摘要: 每天定下三到四项最重要的任务,这样大脑才能保证专注试图‘一心多用’地解决复杂问题实在是个下策
阅读全文
摘要: when use Remove method of stringbuilder, for large string, it will cause OutofMemory exception, so the solution is to use stringbuilder.lenght=0 to remove string
阅读全文
摘要: http://www.mono-project.com/PostgreSQL#Some_Connection_ExampleParameter Definition Description Example Server hostname of the PostgreSQL Server Server=localhost Database name of the database Database=postgres Port Network port to connect. Optional Port=54321 User ID user id User ID=postgres Password
阅读全文
摘要: 测试是一个系统1. testcase2. product knowledge3. test case tool4. issue tracking tool5. automation system6. test report7. thinking in testing8. test sense
阅读全文
摘要: 遇到这个问题奇怪坏了,每次只要launch一个test suite,Eclipse就自动重新build,然后还特别慢,然后导致测试直接找不到class文件; 后来尝试去掉automatically build,变成manual build,结果好了。说实话,我还是不是很清楚具体问题在那里。
阅读全文
摘要: 原文地址: Cheezburgers and Testing Advice 作者:Alan Myrvold,软件安全高级测试工程师 译者注: 本文主要面向软件测试的初入门者,但对有经验的软件测试工程师也应有益。 我起初准备自己写10条建议给刚入门的软件测试员们。但之后我看了lolcats/icanhascheezburger 上的名人Ben Huh的一段演讲。Ben指出,有了互联网,信息成了免...
阅读全文
摘要: 1、敏捷的一项重要原则就是项目进展和问题交流的透明性,只有这样才能保证对问题做出及时调整,功能小组可以根据需要采用不同度量数据;提醒一点:决定采用哪些度量数据以符合团队和产品相关人员的要求,需要一段时间去体验。因此,如果你对敏捷不是很了解,或者你正在带领一个新团队,建议你选取所有的或者大部分敏捷度量数据,然后逐步去除那些对团队不必要的信息。 例如,在我们的项目中,某些功能团队在一个Sprint中...
阅读全文
摘要: http://developers.solidot.org/article.pl?sid=10/05/19/0029259&from=rss
阅读全文
摘要: 在做分布式数据库时难免用到dblink,但关于dblink的资料很少,很多书上提到了,但不详细。 数据库链接定义从一个Oracle数据库到另一个数据库的单行通信通道。 建立链接前要先有到远程数据库的命名服务(连接字符串),就是tnsnames.ora中描述的那个,如'oradXP' 先测试一下:$tnsping oradxp Attemping to contact(...) OK(30毫秒). ...
阅读全文
摘要: 1. A lambda expression is an unnamed method written in place of a delegate instance The compiler immediately converts the lambda expression to either: A delegate instance An expression tree, of type ...
阅读全文