统计

留言簿(1)

DB

Others

QA

Tech Website

阅读排行榜

评论排行榜

06 2011 档案

【转】Java学习的30个目标以及系统架构师推荐的书
     摘要: 2.你需要学习JAVA语言的基础知识以及它的核心类库 (collections,serialization,streams,networking, multithreading,reflection,event,handling,NIO,localization,以及其他)。  阅读全文

posted @ 2011-06-18 15:25 XXXXXX 阅读(669) | 评论 (1)  编辑

学习Python的好网站

posted @ 2011-06-17 20:26 XXXXXX 阅读(4365) | 评论 (2)  编辑

Dom4j解释XML示例

posted @ 2011-06-15 17:53 XXXXXX 阅读(348) | 评论 (0)  编辑

【转】《InfoQ Explores: REST》介绍

posted @ 2011-06-15 12:39 XXXXXX 阅读(233) | 评论 (0)  编辑

Python中的Closure

posted @ 2011-06-15 07:31 XXXXXX 阅读(1291) | 评论 (0)  编辑

Trie Tree
     摘要: #Trie Tree的基本特点
1)根节点不包含字符,除根节点外每个节点只包含一个字符
2)从根节点到某一个节点,路径上经过的字符连接起来,为该节点对应的字符串

3)每个节点的所有子节点包含的字符串不相同
  阅读全文

posted @ 2011-06-14 16:57 XXXXXX 阅读(1062) | 评论 (0)  编辑

Bloom Filter
     摘要: The Bloom filter, conceived by Burton Howard Bloom in 1970, is a space-efficient probabilistic data structure that is used to test whether an element is a member of a set.False positivesare possible, but false negatives are not. Elements can be added to the set, but not removed (though this can be addressed with a counting filter). The more elements that are added to the set, the larger the probability of false positives
  阅读全文

posted @ 2011-06-12 23:58 XXXXXX 阅读(282) | 评论 (0)  编辑

【转】How Google Tests Software - A Brief Interlude
     摘要: These posts have garnered a number of interesting comments. I want to address two of the negative ones in this post. Both are of the same general opinion that I am abandoning testers and that Google is not a nice place to ply this trade. I am puzzled by these comments because nothing could be further from the truth. One such negative comment I can take as a one-off but two smart people (hey they are reading this blog, right?) having this impression requires a rebuttal. Here are the comments:  阅读全文

posted @ 2011-06-06 16:03 XXXXXX 阅读(295) | 评论 (0)  编辑

【转】How Google Tests Software - Part Six

posted @ 2011-06-04 16:08 XXXXXX 阅读(226) | 评论 (0)  编辑

【转】How Google Tests Software - Part Seven

posted @ 2011-06-04 16:08 XXXXXX 阅读(247) | 评论 (0)  编辑

【转】How Google Tests Software - Part Five

posted @ 2011-06-04 15:54 XXXXXX 阅读(276) | 评论 (0)  编辑

【转】How Google Tests Software - Part Four
     摘要: One of the key ways Google achieves good results with fewer testers than many companies is that we rarely attempt to ship a large set of features at once. In fact, the exact opposite is often the goal: build the core of a product and release it the moment it is useful to as large a crowd as feasible, then get their feedback and iterate. This is what we did with Gmail, a product that kept its beta tag for four years. That tag was our warning to users that it was still being perfected. We removed   阅读全文

posted @ 2011-06-04 15:43 XXXXXX 阅读(242) | 评论 (0)  编辑

【转】How Google Tests Software - Part Three
     摘要: Lots of questions in the comments to the last two posts. I am not ignoring them. Hopefully many of them will be answered here and in following posts. I am just getting started on this topic.  阅读全文

posted @ 2011-06-04 10:44 XXXXXX 阅读(270) | 评论 (0)  编辑

【转】How Google Tests Software - Part Two

posted @ 2011-06-02 11:00 XXXXXX 阅读(256) | 评论 (0)  编辑

Android好文章

posted @ 2011-06-01 15:17 XXXXXX 阅读(201) | 评论 (0)  编辑

【转】Avoiding Memory Leaks
     摘要: Android applications are, at least on the T-Mobile G1, limited to 16 MB of heap. It's both a lot of memory for a phone and yet very little for what some developers want to achieve. Even if you do not plan on using all of this memory, you should use as little as possible to let other applications run without getting them killed. The more applications Android can keep in memory, the faster it will be for the user to switch between his apps. As part of my job, I ran into memory leaks issues in Andr  阅读全文

posted @ 2011-06-01 14:52 XXXXXX 阅读(325) | 评论 (0)  编辑