08 2012 档案

摘要:这个专业搜索挺好用:http://academic.research.microsoft.com/ 阅读全文
posted @ 2012-08-19 09:01 ohscar 阅读(94) 评论(0) 推荐(0) 编辑
摘要:http://news.netcraft.com/archives/category/web-server-survey/ 阅读全文
posted @ 2012-08-13 22:36 ohscar 阅读(131) 评论(0) 推荐(0) 编辑
摘要:官方页面:http://amturing.acm.org/一个索引页面:http://www.informatik.uni-trier.de/~ley/db/journals/cacm/turing.html 阅读全文
posted @ 2012-08-12 05:09 ohscar 阅读(118) 评论(0) 推荐(0) 编辑
摘要:很多年过去了,这篇文章讲得东西,依然是经典。 High performance server architectureIntroductionThe purpose of this document is to share some ideas that I've developed over the years about how to develop a certain kind of app... 阅读全文
posted @ 2012-08-10 08:17 ohscar 阅读(125) 评论(0) 推荐(0) 编辑
摘要:花了4天的班车时间读完了,收获很多。介绍了函数式编程的好处和核心概念:连续性。是一篇优雅的入门材料。PS: 网上有人翻译过这篇文章。对标题的翻译一般是“剩人们的XXXX”。其实,这个“The Rest of Us”是针对文章第一部分中提到的那些搞学术的人们,我们一般人就是那些“The Rest of Us”。所以,我觉得一个正确的翻译应该是:大众的函数式编程。 Functional Program... 阅读全文
posted @ 2012-08-09 02:46 ohscar 阅读(231) 评论(0) 推荐(0) 编辑
摘要:动态链接库基本可以分为3类: Loadtime link : os loader装载时,自动连接 Automatic Runtime link : 一种lazy load机制,当第一次使用时,触发os loader进行连接,缺点是一旦异常,立即crash ManualRuntime link : 编码自己完成load和import,优点是对异常可以自己控制,自己处理。 动态链接库链接的条件分... 阅读全文
posted @ 2012-08-02 11:56 ohscar 阅读(112) 评论(0) 推荐(0) 编辑