[置顶] 搬来cnblogs了。。

摘要: 原博客 www.cppblog.com/schindlerlee 不再更新已有内容也不准备导入了,恩。1.想要代码的可以email我2.分享你的知识3.尊重他人的隐私4.给自己网上留个好印象5.平心静气地争论6.尊重别人的时间和带宽 7.本人坚持原创,转载请注明出处。 阅读全文
posted @ 2011-01-12 23:56 schindlerlee 阅读(133) 评论(0) 推荐(0) 编辑

Singular Value Decomposition and Latent Semantic Indexing 奇异值分解和潜在语义搜索

摘要: 这个tutorial 非常好,深入浅出,易于理解,markhttp://www.miislita.com/information-retrieval-tutorial/matrix-tutorial-1-stochastic-matrices.htmlhttp://www.miislita.com/information-retrieval-tutorial/matrix-tutorial-2-matrix-operations.htmlhttp://www.miislita.com/information-retrieval-tutorial/matrix-tutorial-3-eigenv 阅读全文
posted @ 2012-03-09 10:25 schindlerlee 阅读(232) 评论(0) 推荐(0) 编辑

2012 Feb.25 Hot topics in data managment @ THU

摘要: 掌握:Graphical model是什么,有什么用,怎么用?Monte Carlo 和Chernoff Bounds 的关系简单的Hadoop集群使用方法了解:复杂度类:P-complete - Wikipedia, the free encyclopedia众包:Crowdsourcing - Wikipedia, the free encyclopediaGetting Results from CrowdsourcingAmazon Mechanical Turk - Wikipedia, the free encyclopediaWhat is reCAPTCHA?Amazon Me 阅读全文
posted @ 2012-02-25 22:21 schindlerlee 阅读(200) 评论(0) 推荐(0) 编辑

百年孤寂

摘要: 心 属于你的我借来寄托 却变成我的心魔你 属于谁的我刚好经过 却带来潮起潮落都是因为一路上 一路上大雨曾经滂沱 证明你有来过可是当我闭上眼 再睁开眼只看见沙漠 哪里有甚么骆驼背影是真的人是假的 没甚么执着一百年前你不是你我不是我悲哀是真的泪是假的 本来没因果一百年后没有你也没有我 风 属于天的我借来吹吹 却吹起人间烟火天 属于谁的我借来欣赏 却看到你的轮廓都是因为一路上 一路上大雨曾经滂沱 证明你有来过可是当我闭上眼 再睁开眼只看见沙漠 哪里有甚么骆驼背影是真的人是假的 没甚么执着一百年前你不是你我不是我悲哀是真的泪是假的 本来没因果一百年后没有你也没有我背影是真的人是假的 没甚么执着一百年. 阅读全文
posted @ 2012-01-31 11:06 schindlerlee 阅读(268) 评论(0) 推荐(0) 编辑

费德勒 纳达尔 时间 尘土 梦想

摘要: 创世纪3:19 "你必汗流满面才得糊口,直到你归了土,因为你是从土而出的。你本是尘土,仍要归于尘土。"看费德勒打纳达尔,费德勒还是输了。人再强大也抵不过时间的残酷。年华终究会老去,但是又能怎么办呢?总想做些伟大的事情,但是却又显得无能为力。于是逃避,于是麻木,于是放纵,于是时间就这样流逝了。慢慢的,不再充满激情,不再喜欢接受挑战,不再喜欢改变。于是选择了平凡的生活。于是不断向生活妥协,向自己妥协。平凡的生活是快乐的,但是,你可曾还记得梦想么? 阅读全文
posted @ 2012-01-26 21:16 schindlerlee 阅读(126) 评论(0) 推荐(0) 编辑

Thunderbird, 有道笔记, Chrome 不能上网

摘要: 突然有一天我发现Thunderbird怎么也不能用了。四处搜索无果。之后我觉得换上Foxmail,当在Foxmail在进行账户验证的时候,我发现竟然显示不能连接到127.0.0.1 !!!这是为什么呢?明明是连接的远程主机啊,怎么就回到本机了?!在经过了各种探索之后终于发现的问题出现的原因:原来在使用Chrome浏览器的时候,为了使用一些代理,更改了Chrome的代理选项。在本地开了一个端口。但是殊不知,Chrome的代理选项和本地的是绑定的,也就是其他程序也会通过这个代理上网。当我关掉代理之后,这些程序仍然使用的代理,当然就不能用了…… 阅读全文
posted @ 2012-01-16 22:42 schindlerlee 阅读(334) 评论(0) 推荐(0) 编辑

my assert 跟踪调试

摘要: #define verify(condition, msg) if (false == (condition)) { \fprintf(stderr, "%s:%s:%d > %s\n", __FILE__, __FUNCTION__, __LINE__, string(msg).c_str());\ assert(false);\} while(0) 阅读全文
posted @ 2012-01-13 21:43 schindlerlee 阅读(171) 评论(0) 推荐(0) 编辑

远程开机

摘要: 远程机是linux,使用 wakelan + 物理地址即可。wakelan 40:61:86:01:E1:12 需要远程机器开机在BIOS中开启远程唤醒功能。 阅读全文
posted @ 2012-01-03 20:03 schindlerlee 阅读(186) 评论(0) 推荐(0) 编辑

2012-01-03 读书笔记 The art of computing programming

摘要: TAOCP vol.2 section 3.1 excercise 2In a random sequence of a million decimal digits, what is the probability that there are exactly 100,000 of each possible digit?section 3.2 Generating uniform random numbers目前为止最流行的随机数生成方法是D.H. Lehmer 在1949年提出的一个方法的特殊形式.[See Proc.2nd Symp. on Large-Scale Digital Ca 阅读全文
posted @ 2012-01-03 20:00 schindlerlee 阅读(245) 评论(0) 推荐(0) 编辑

乐辞 导致itunes 10.5.142不能启动 win7

摘要: 乐辞卸载之后,会导致升级新版itunes 10.5.142不能启动.搜lyri找到乐辞在itunes中插件的位置,删之,OK。 阅读全文
posted @ 2011-10-18 08:55 schindlerlee 阅读(567) 评论(1) 推荐(0) 编辑

project euler 169

摘要: http://projecteuler.net/problem=169Define f(0)=1 and f(n) to be the number of different ways n can be expressed as a sum of integer powers of 2 using each power no more than twice.For example, f(10)=5 since there are five different ways to express 10:1 + 1 + 8 1 + 1 + 4 + 41 + 1 + 2 + 2 + 4 2 + 4 + 阅读全文
posted @ 2011-10-12 22:32 schindlerlee 阅读(398) 评论(0) 推荐(0) 编辑