07 2014 档案

 
(zz) 谷歌技术"三宝"之BigTable
摘要:006年的OSDI有两篇google的论文,分别是BigTable和Chubby。Chubby是一个分布式锁服务,基于Paxos算法;BigTable是一个用于管理结构化数据的分布式存储系统,构建在GFS、Chubby、SSTable等google技术之上。相当多的google应用使用了BigTab... 阅读全文
posted @ 2014-07-26 04:56 做个不善的人 阅读(546) 评论(0) 推荐(0)
C++的异常处理之二:C++11的异常处理
摘要:Reference:1. 阅读全文
posted @ 2014-07-21 14:09 做个不善的人 阅读(291) 评论(0) 推荐(0)
C++11
摘要:Reference:1. http://clang.llvm.org/cxx_status.html2.http://msdn.microsoft.com/en-us/library/hh567368.aspx 阅读全文
posted @ 2014-07-14 13:54 做个不善的人 阅读(166) 评论(0) 推荐(0)
The Layout Process on Mac OSX and iOS
摘要:First we will recap the steps it takes to bring views on screen with Auto Layout enabled. When you’re struggling to produce the kind of layout you wan... 阅读全文
posted @ 2014-07-07 13:05 做个不善的人 阅读(893) 评论(0) 推荐(1)
Notes of learning AutoLayout
摘要:在XCode5中,如果我们添加一个Button或者Label,或者其他的什么标准View,而不设置任何constraints,IB会自动生成constraints,而这些constraints是fixed,无法根据intrinsic content size的变化而变化,这并不是我们想要的。比如,我... 阅读全文
posted @ 2014-07-06 01:54 做个不善的人 阅读(2850) 评论(0) 推荐(1)