<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_梦里花落知多少</title><subtitle type="text">Passion Is Rolling!</subtitle><id>http://feed.cnblogs.com/blog/u/23500/rss</id><updated>2008-08-17T15:00:22Z</updated><author><name>梦里花落知多少</name><uri>http://www.cnblogs.com/matrixnull/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/matrixnull/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/23500/rss"/><entry><id>http://www.cnblogs.com/matrixnull/archive/2008/08/17/1269952.html</id><title type="text">多线程Delegate,解决"从不是创建控件的进程访问它"</title><summary type="text">很多时候写windows程序都需要结合多线程，在.net中用如下得代码来创建并启动一个新的线程。public void ThreadProc();Thread thread = new Thread( new ThreadStart( ThreadProc ) );thread.IsBackground = true;thread.Start();但是很多时候，在新的线程中，我们需要与UI进行交互...</summary><published>2008-08-17T15:00:00Z</published><updated>2008-08-17T15:00:00Z</updated><author><name>梦里花落知多少</name><uri>http://www.cnblogs.com/matrixnull/</uri></author><link rel="alternate" href="http://www.cnblogs.com/matrixnull/archive/2008/08/17/1269952.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/matrixnull/archive/2008/08/17/1269952.html"/></entry><entry><id>http://www.cnblogs.com/matrixnull/archive/2008/08/04/1259590.html</id><title type="text">[zt]垂直搜索引擎深度分析</title><summary type="text">1． 何为垂直搜索引擎 所谓垂直搜索引擎（Vertical  Search  Engine），是针对某一特定领域、某一特定人群或某一特定需求提供的有一定价值的信息和相关服务。其特点就是&amp;#8220;专、精、深&amp;#8221;，且具有行业色彩。它是与通用搜索引擎截然不同的引擎类型。垂直搜索引擎专注具体、深入的纵向服务，致力于某一特定领域内信息的全面和内容的深入，这个领域外的闲杂信息不收录。 从竞争的角...</summary><published>2008-08-04T01:35:00Z</published><updated>2008-08-04T01:35:00Z</updated><author><name>梦里花落知多少</name><uri>http://www.cnblogs.com/matrixnull/</uri></author><link rel="alternate" href="http://www.cnblogs.com/matrixnull/archive/2008/08/04/1259590.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/matrixnull/archive/2008/08/04/1259590.html"/></entry><entry><id>http://www.cnblogs.com/matrixnull/archive/2008/07/30/1256113.html</id><title type="text">心目中的高手[转]</title><summary type="text">MIT BBS上说微软电话面试的一道题就是&amp;#8220;Who do you think is the best coder, and why?&amp;#8221;。我觉得挺有意思的，也来凑个热闹。排名不分先后。 &amp;#160;&amp;#160;  &amp;#160;&amp;#160; Bill Joy, 前任Sun的首席科学家，当年在Berkeley时主持开发了最早版本的BSD。他还是vi和csh的作者。当然，Csh P...</summary><published>2008-07-30T01:22:00Z</published><updated>2008-07-30T01:22:00Z</updated><author><name>梦里花落知多少</name><uri>http://www.cnblogs.com/matrixnull/</uri></author><link rel="alternate" href="http://www.cnblogs.com/matrixnull/archive/2008/07/30/1256113.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/matrixnull/archive/2008/07/30/1256113.html"/></entry><entry><id>http://www.cnblogs.com/matrixnull/archive/2008/07/01/1233580.html</id><title type="text">[转帖]VC++下编译出极小的程序</title><summary type="text">昨天做了个telnet后门程序玩,  既然是后门嘛,自然是越小越好.可是我的VC9编译一个HelloWorld都有50K+...  动态链接到MSVCRT90.dll倒是小下来了,但是得背上一个更变态的dll(600多k)  而这个msvcrt90.dll就是我的vista sp1也不是自带的.更不便于程序的部署.  最后自己去查了查资料终于编译出体积比较满意的exe,步骤如下:  1.扔掉CRT...</summary><published>2008-07-01T13:59:00Z</published><updated>2008-07-01T13:59:00Z</updated><author><name>梦里花落知多少</name><uri>http://www.cnblogs.com/matrixnull/</uri></author><link rel="alternate" href="http://www.cnblogs.com/matrixnull/archive/2008/07/01/1233580.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/matrixnull/archive/2008/07/01/1233580.html"/></entry><entry><id>http://www.cnblogs.com/matrixnull/archive/2008/02/26/1082768.html</id><title type="text">C#3.0版的费波纳数算法</title><summary type="text">1:Func&amp;lt;int,int&amp;gt;fib=null;2:fib=n=&amp;gt;n&amp;gt;1?fib(n-1)+fib(n-2):n;3:4:for(intc=0;c&amp;lt;10;c++)5:{6:Console.WriteLine(String.Format("{0}={1}",c,fib(c)));7:}</summary><published>2008-02-26T11:37:00Z</published><updated>2008-02-26T11:37:00Z</updated><author><name>梦里花落知多少</name><uri>http://www.cnblogs.com/matrixnull/</uri></author><link rel="alternate" href="http://www.cnblogs.com/matrixnull/archive/2008/02/26/1082768.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/matrixnull/archive/2008/02/26/1082768.html"/></entry><entry><id>http://www.cnblogs.com/matrixnull/archive/2008/02/18/1072533.html</id><title type="text">关于Ada语言的一点资料</title><summary type="text">最近在学习VHDL,发现VHDL的语法和Ada还是很相似的所以想通过学习Ada来巩固VHDL中文Ada语言站点http://adaicq.gro.clinux.org/免费的Ada编译器http://www.thefreecountry.com/compilers/ada.shtml</summary><published>2008-02-18T09:19:00Z</published><updated>2008-02-18T09:19:00Z</updated><author><name>梦里花落知多少</name><uri>http://www.cnblogs.com/matrixnull/</uri></author><link rel="alternate" href="http://www.cnblogs.com/matrixnull/archive/2008/02/18/1072533.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/matrixnull/archive/2008/02/18/1072533.html"/></entry><entry><id>http://www.cnblogs.com/matrixnull/archive/2008/02/18/1072521.html</id><title type="text">132种编程语言急速入门</title><summary type="text">偶然发现这个，132种语言编写的433种Hello,world，可以一览各种语言风格流派http://www.ntecs.de/old-hp/uu9r/lang/html/lang-all.en.html</summary><published>2008-02-18T09:08:00Z</published><updated>2008-02-18T09:08:00Z</updated><author><name>梦里花落知多少</name><uri>http://www.cnblogs.com/matrixnull/</uri></author><link rel="alternate" href="http://www.cnblogs.com/matrixnull/archive/2008/02/18/1072521.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/matrixnull/archive/2008/02/18/1072521.html"/></entry><entry><id>http://www.cnblogs.com/matrixnull/archive/2008/02/01/1061786.html</id><title type="text">不错的设计</title><summary type="text"/><published>2008-02-01T12:04:00Z</published><updated>2008-02-01T12:04:00Z</updated><author><name>梦里花落知多少</name><uri>http://www.cnblogs.com/matrixnull/</uri></author><link rel="alternate" href="http://www.cnblogs.com/matrixnull/archive/2008/02/01/1061786.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/matrixnull/archive/2008/02/01/1061786.html"/></entry><entry><id>http://www.cnblogs.com/matrixnull/archive/2008/01/29/1057928.html</id><title type="text">我是熊猫</title><summary type="text"/><published>2008-01-29T11:53:00Z</published><updated>2008-01-29T11:53:00Z</updated><author><name>梦里花落知多少</name><uri>http://www.cnblogs.com/matrixnull/</uri></author><link rel="alternate" href="http://www.cnblogs.com/matrixnull/archive/2008/01/29/1057928.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/matrixnull/archive/2008/01/29/1057928.html"/></entry><entry><id>http://www.cnblogs.com/matrixnull/archive/2008/01/20/1046366.html</id><title type="text">是程序设计语言的发明者?还是连环杀手?</title><summary type="text">在网上闲逛的时候无意中发现这样一个有趣的站点http://www.malevole.com/mv/misc/killerquiz/网页会逐个显示一张相片，你需要判断相片中的此人是程序设计语言发明者还是连环杀手，选择后会告诉你答案，列出此人的档案。一共有10组题目，最后会统计你的得分。十组题目我判断对了6个，还算是火眼睛睛。ps:为什么要把程序语言的发明人和连环杀手放一起比较呢？</summary><published>2008-01-20T09:22:00Z</published><updated>2008-01-20T09:22:00Z</updated><author><name>梦里花落知多少</name><uri>http://www.cnblogs.com/matrixnull/</uri></author><link rel="alternate" href="http://www.cnblogs.com/matrixnull/archive/2008/01/20/1046366.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/matrixnull/archive/2008/01/20/1046366.html"/></entry></feed>
