官方主页:http://iosdevlog.com
[Read More]
140. wwdc 2015 104-What's New in Xcode
查看
[Read More]
138. WWDC 新品发布会精彩汇总
爱极客:5分钟带你回顾苹果WWDC经典瞬间
[Read More]
github 上的一个流行的编程书籍索引
原文
[Read More]
程序员应该阅读的非编程类书籍有哪些
原文
[Read More]
国外程序员在 stackoverflow 推荐的程序员必读书籍
原文
[Read More]
swift 关键字和符号
keywords and identifiers
[Read More]
The Swift Programming Language (Swift 2) -7 Generics
###
[Read More]
The Swift Programming Language (Swift 2) -6 Protocols and Extensions
###
[Read More]
The Swift Programming Language (Swift 2) -5 Objects and Classes
###
[Read More]
The Swift Programming Language (Swift 2) -4 Enumerations and Structures
###
[Read More]
The Swift Programming Language (Swift 2) -3 Function and Closures
###
[Read More]
The Swift Programming Language (Swift 2) -2 Control FLow
###
[Read More]
The Swift Programming Language (Swift 2) -1 Simple Values
###
[Read More]
iOS 开发日志
iOS 开发日志
[Read More]
synthesia
synthesia
[Read More]
个人常用软件及配置
OS X Software
[Read More]
iOS Dev Log
iOS Dev Log
[Read More]
haskell 2048
英文原文:Implementing the game 2048 in less than 90 lines of Haskell
[Read More]
haskell quicksort
quicksort :: (Ord a) => [a] -> [a]
quicksort [] = []
quicksort (x:xs) =
let smallerOrEqual = [a | a <- xs, a <= x]
larger = [a | a <- xs, a > x]
in quicksort smallerOrEqual ++ [x] ++ quicksort larger
[Read More]