
技术书籍
kaqi072821
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
经典图书
数据库: SQL Tuning by Dan Tow Java Persistence With Hibernate 领域模型相关的面向对向设计技巧(尚未下载) Patterns of Enterprise Application Architecture (Fowler, 2003) Domain-Driven Design (Evans, 2003) ...2009-02-02 22:34:19 · 157 阅读 · 0 评论 -
TDD training summary
从加入TW的第一天Pair开始就在项目中实践TDD。前一段时间阅读了Kent Beck的<<TDD by Example>>,之后对书中的内容进行了总结 。这次,同事yuheng 给咱们两个项目组以Code Kata的形式进行了一次TDD培训。通过这次实践结合理论的培训,自己进一步加深了对TDD的理解,可谓收获颇丰。 为什么要TDD?TDD有什么优缺点? ...原创 2012-05-20 22:41:15 · 144 阅读 · 0 评论 -
<<Domain Driven Design >> by Evan summary
Before chapter 1, it introduced the main Content of the book. 1. Domain model provides a ubquitous language that ties domain experts and technologiests together. 2. Domain modeling and implementat...原创 2011-11-23 21:03:49 · 169 阅读 · 0 评论 -
<<javascript:the good part>>javascript variable scope
The scope of variable declared use 'var' is within the function(including the subfunction which can access its closure) var my=function(){ function inner(){ console.log(a);//a is declared in the...原创 2011-11-26 22:59:37 · 93 阅读 · 0 评论 -
<<javascript:the good part>> prototype, closure, module example
Function.prototype.method=function(name, func){ this.prototype[name]=func; // use prototype to add a function return this; } String.method("ping",function(content){ // add method to String var ...原创 2011-12-03 11:51:43 · 118 阅读 · 0 评论 -
<<javascript:the good part>> Inheritance
Javascript does not have the concept of class. It is a prototyal language which means objects inherits directly from other projects. The book introduces several ways to implement the inheritance. 1....原创 2011-12-03 15:49:15 · 105 阅读 · 0 评论 -
<<Test Driven Development By Example>> Summary
<<TDD by example>> notes Why TDD?***** 1. Automated test ---Game in TWI ---stress->高->testing少->errors多->stress高 ---stress->高->自动testing多->errors少->stress低 2....原创 2012-03-25 20:58:48 · 155 阅读 · 0 评论 -
building microservices summary
building microservices summary原创 2016-06-29 15:29:55 · 134 阅读 · 0 评论