(zz) 谷歌技术"三宝"之BigTable
摘要:006年的OSDI有两篇google的论文,分别是BigTable和Chubby。Chubby是一个分布式锁服务,基于Paxos算法;BigTable是一个用于管理结构化数据的分布式存储系统,构建在GFS、Chubby、SSTable等google技术之上。相当多的google应用使用了BigTab...
阅读全文
C++11
摘要:Reference:1. http://clang.llvm.org/cxx_status.html2.http://msdn.microsoft.com/en-us/library/hh567368.aspx
阅读全文
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...
阅读全文
Notes of learning AutoLayout
摘要:在XCode5中,如果我们添加一个Button或者Label,或者其他的什么标准View,而不设置任何constraints,IB会自动生成constraints,而这些constraints是fixed,无法根据intrinsic content size的变化而变化,这并不是我们想要的。比如,我...
阅读全文