05 2010 档案
摘要: 架构网站中文:1)http://www.infoq.com/cn/architecture/英文:1)http://www.codingthearchitecture.com/2) http://www.softwarearchitecturefordevelopers.com/3)http://processofsoftwarearchitecting.com/4)http://www.hand...阅读全文
摘要: 转自:http://www.infoq.com/cn/articles/thoughtworks-practice-partv1 前言持续集成是极限编程十二实践之一(1999年Kent Beck编写的《解析极限编程》),最初被使用极限编程方法的开发人员所推捧,并在过去的几年中得到广泛应用,成为业界广为人知的软件开发实践。该实践用于解决软件开发过程中一个具体且重要的问题,即“确保当某个开...阅读全文
摘要: 1) design pattern2) patterns & practiceshttp://apparch.codeplex.com/http://apparchguide.codeplex.com/http://tfsguide.codeplex.com/http://compositewpf.codeplex.com/http://webclientguidance.codeplex.com/http://perftesting.codeplex.com/http://perftestingguide.codeplex.com/http://testingguidance.cod阅读全文
摘要: 一CruiseControl安装0)安装Java SDK,然后设置JAVA_HOME环境变量。1)下载解压,例如2.8.3版本:http://sourceforge.net/projects/cruisecontrol/files/CruiseControl/2.8.3/。 2)使用cruisecontrol.bat 或 cruisecontrol.sh 来启动CruiseControl。3)在h...阅读全文
摘要: 一 CruiseControlCruiseControl既是一个Continous integration工具,也是一个创建自定义的Continous build process的框架。 cruisecontrol被设置高度可扩展,可以使用plugin对cruisecontrol的功能无限扩展。目前它已经包含非常多的plugins,例如与source control的交互, 各种build tec...阅读全文
摘要: 一 MySQL1)http://www.mysql.org/= http://dev.mysql.com/2)http://dev.mysql.com/downloads/mysql/3)http://dev.mysql.com/downloads/workbench2)http://dev.mysql.com/downloads/connector/2)http://www.heidisql.c...阅读全文
摘要: 一 SwigSWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages.the languages include:Perl, PHP, Python, Tcl and RubyC#, Common...阅读全文
摘要: 一 C++跨平台GUI1)常用wxweightQT2) 其他http://www.ultimatepp.org/index.htmlhttp://www.fox-toolkit.org/3)其他2http://www.fltk.org/index.phphttp://www.memecode.com/lgi.phphttp://zoolib.sourceforge.net/ http://trix...阅读全文
摘要: 一 使用Command模式如下:二使用Singleton的UndoManager如下:三C#的类代码如下:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->publicinterfaceICommand{voidExecute();voidReverse();}publicclassACommand:ICommand{voidExecute(){};voidReverse(){};}publicclassBCommand:ICommand{vo阅读全文