Book
文章平均质量分 57
lllcfr1
这个作者很懒,什么都没留下…
展开
-
计算机系统要素 从零开始构建现代计算机
计算机系统要素 从零开始构建现代计算机The Elements of Computing SystemsBuilding a Modern Computer from First Principles前言 PrefaceWhat I hear, I forget; What I see, I remember; What I do, I understand. 耳听为虚转载 2013-03-19 19:19:49 · 2258 阅读 · 0 评论 -
Seven languages in seven weeks (notes on Erlang)
Erlang:built for concurrency, functional language, no threading, lightweight processes, distributed language passing, reliability: "let is crash", hot-swap code转载 2013-08-16 10:23:30 · 701 阅读 · 0 评论 -
《程序员应该知道的97件事》
《程序员应该知道的97件事》False consensus bias虚假同感偏差柏拉图:风格之美、和谐、优雅及优美的节奏,尽在于简单童子军规则:尽力去做,让你离开时的世界比你找到它时还要好一点 (Robert Stephenson Smyth Baden-Powell)计算机科学的努力方向就是将现实世界映射到受限的数据结构中去转载 2014-08-11 23:36:36 · 1562 阅读 · 0 评论 -
Principles of parallel programming
Book: http://book.douban.com/subject/3564286/Authors: Calvin Lin, Lawrence Snyder转载 2014-03-07 19:38:45 · 2391 阅读 · 0 评论 -
Effective Modern C++
Effective Modern C++42 specific ways to improve your use of C++11 and C++14Scott Meyers转载 2015-01-24 05:29:56 · 811 阅读 · 0 评论 -
Database Management Systems (Query Evaluation)
Database Management SystemsPart 4: Query Evaluation转载 2015-03-20 08:05:36 · 940 阅读 · 0 评论 -
Database Management Systems (Application Development)
Database Management SystemsPart 2: Application Development转载 2015-03-20 08:02:31 · 724 阅读 · 0 评论 -
Database Management Systems (Transaction Management)
Database Management SystemsPart 5: Transaction Management转载 2015-03-20 08:04:55 · 1276 阅读 · 0 评论 -
Database Management Systems (Foundations)
Database Management SystemsPart 1: Foundations转载 2015-03-20 07:59:09 · 1000 阅读 · 0 评论 -
Database Management Systems (Additional Topics)
Database Management SystemsPart 7: Additional Topics转载 2015-03-20 08:08:50 · 541 阅读 · 0 评论 -
Database Management Systems (Database Design and Tuning)
Database Management SystemsPart 6: Database Design and Tuning转载 2015-03-20 08:07:47 · 851 阅读 · 0 评论 -
Database Management Systems (Storage and Indexing)
Database Management SystemsPart 3: Storage and Indexing转载 2015-03-20 08:03:28 · 736 阅读 · 0 评论 -
Seven languages in seven weeks (notes on Haskell)
Haskell转载 2014-03-17 15:44:54 · 594 阅读 · 0 评论 -
Effective STL
http://book.douban.com/subject/1456960/(items on) STL efficiency转载 2013-09-09 22:17:26 · 849 阅读 · 0 评论 -
Seven languages in seven weeks (notes on Scala)
Scalaunifying functional and object-oriented programming A functional language has these characteristics:• Functional programs are made up of functions.• A function always returns a valu转载 2013-09-10 20:01:47 · 892 阅读 · 0 评论 -
黑客与画家 Hackers and Painters: Big Ideas from the Computer Age
Paul Grahamhttp://www.paulgraham.com/articles.htmlhttp://book.douban.com/subject/6021440/译者序cool hack (neat hack), ugly hack (quick hack)Hacker ethic (from the book “Hackers: H转载 2013-03-19 16:15:27 · 1657 阅读 · 0 评论 -
The Ph.D. Grind
http://book.douban.com/subject/11505704/http://pgbovine.net/PhD-memoir.htmhttp://cacm.acm.org/blogs/blog-cacm/154473-the-phd-grind-main-grinds-and-side-grinds/fulltexthttp://cacm.acm.org/blogs/b转载 2013-04-16 13:48:50 · 1097 阅读 · 0 评论 -
《C Programming Language: A Modern Approach》
P4. underlying philosophy: (OS or system softwares)(1) low-level; (2) small; (3) permissiveStrengths: (1) efficiency (2) portability (3) power (4) flexibility (5) standard library (6) integration转载 2013-07-29 21:54:59 · 2162 阅读 · 0 评论 -
推荐系统实践
http://book.douban.com/subject/10769749/第1章 好的推荐系统推荐:social recommendation; content-based filtering; collaborative filtering系统:评测推荐效果的实验方法:1. offline experiment; 2. user study; 3. on转载 2013-07-15 12:54:49 · 1737 阅读 · 0 评论 -
Seven languages in seven weeks (notes on Prolog)
Prolog:facts, rules, queries (like SQL)capitalization: word begin with lowercase character --> atom (fixed value) ; begin with uppercase letter or underscore --> variable(swi-prolog in cygwin:转载 2013-08-02 12:51:21 · 830 阅读 · 0 评论 -
Seven languages in seven weeks (notes on Ruby)
RubySyntactic sugar: describes a language feature that makes code easier to read and write, though there are alternative ways to express the same code.Ruby’s creator, doesn't worry about the e转载 2013-09-02 12:25:57 · 708 阅读 · 0 评论 -
Beauty of Programming [Essentials]
编程之美 Beauty of Programming[Essentials]3.1 String Rotation ==> Concatenation3.2 Loop Recursive3.3 Levenshtein distance (Edit distance), computing: DP ***3.4 Singly linked list3.5 How t原创 2013-02-13 00:17:29 · 640 阅读 · 0 评论 -
Explanation of Small World Phenomenon
excerpt from the book >http://www.greenteapress.com/compmod/html/thinkcomplexity006.html#toc38Explanatory modelsFigure 5.2: The logical structure of an explanatory model.转载 2013-09-24 11:10:24 · 1129 阅读 · 0 评论 -
The Elements of Style
Elementary rules of usage1. Form the possessive singular of nouns by adding 's2. In a series of three or more terms with a single conjunction, use a comma after each term except the last3. Enc转载 2013-10-19 14:33:56 · 700 阅读 · 0 评论 -
写给大家看的设计书 (第3版)
设计原理:亲密性、对齐、重复、对比转载 2013-11-21 20:19:44 · 1081 阅读 · 0 评论 -
Programming Collective Intelligence
user-based collaborative filteringitem-based collaborative filtering: The general technique is to precompute the most similar items for each item. Then, when you wish to make recommendations to a us转载 2014-01-29 20:23:51 · 690 阅读 · 0 评论 -
A Tour of C++
A Tour of C++Bjarne StroustrupChapter 1. The BasicsThe semantics of argument passing are identical to the semantics of copy initialization (type checked and implicit argument type conversi转载 2015-06-30 13:14:02 · 2193 阅读 · 0 评论