<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-26022771</id><updated>2024-08-29T16:58:45.880+08:00</updated><category term="我相信"/><category term="靠"/><category term="42"/><category term="测试"/><category term="web"/><category term="blog"/><category term="humor"/><category term="我想要"/><category term="电脑"/><category term="病毒"/><category term="编程"/><category term="翻译"/><category term="软件"/><title type='text'>我相信 | I Believe Things for You</title><subtitle type='html'>Yet Another Electric Monk</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default?start-index=26&amp;max-results=25'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>29</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-26022771.post-8115274946625342400</id><published>2007-03-20T18:15:00.000+08:00</published><updated>2007-03-20T18:33:19.290+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="靠"/><title type='text'>Blogspot又无法打开了</title><content type='html'>Hello, world.&lt;br /&gt;Blogspot is blocked again.</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/8115274946625342400/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/8115274946625342400' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/8115274946625342400'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/8115274946625342400'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/blogspot.html' title='Blogspot又无法打开了'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-5486698115736252235</id><published>2007-03-18T12:25:00.000+08:00</published><updated>2007-03-18T12:47:47.164+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="编程"/><title type='text'>我的FizzBuzz</title><content type='html'>很简单的一个题: 如果1到100之间的一个数是3的倍数, 打印Fizz; 是5的倍数, 打印Buzz; 是3和5的倍数, 打印FizzBuzz, 其余情况打印这个数本身。&lt;br /&gt;&lt;br /&gt;我的第一份答案(python, 在至少失败了3次后得出来的):&lt;br /&gt;&lt;blockquote&gt;for i in range(1,101):&lt;br /&gt;    if i % 3 == 0:&lt;br /&gt;        if i % 5 == 0: print &quot;FizzBuzz&quot;&lt;br /&gt;        else: print &quot;Fizz&quot;&lt;br /&gt;    elif i % 5 == 0: print &quot;Buzz&quot;&lt;br /&gt;    else: print i&lt;/blockquote&gt;第二份答案：&lt;br /&gt;&lt;blockquote&gt;for i in range(1,101):&lt;br /&gt;    if i % 3 == 0: print &quot;Fizz&quot;&lt;br /&gt;    elif i % 5 == 0: print &quot;Buzz&quot;&lt;br /&gt;    elif i % 15 == 0: print &quot;FizzBuzz&quot;&lt;br /&gt;    else: print i&lt;/blockquote&gt;别人的答案1:&lt;br /&gt;&lt;blockquote&gt; print map(lambda x: &#39;FizzBuzz&#39; if x%15 == 0 else &#39;Fizz&#39; if x%3 == 0 else &#39;Buzz&#39; if x%5 == 0 else x, range(100))&lt;/blockquote&gt;别人的答案2:&lt;br /&gt;&lt;blockquote&gt;for i in range(1, 100) :&lt;br /&gt;    fmt = [i, &quot;fizz&quot;, &quot;buzz&quot;, &quot;fizz buzz&quot;]&lt;br /&gt;    print fmt[(i % 3 == 0) + 2 * (i % 5 == 0)]&lt;/blockquote&gt;别人的答案3(recursive)：&lt;br /&gt;&lt;blockquote&gt; def fizzbuzz(n):&lt;br /&gt;    if n:&lt;br /&gt;    if   n % 15 == 0: return fizzbuzz(n-1) + &#39;fizzbuzz &#39;;&lt;br /&gt;    elif n %  5 == 0: return fizzbuzz(n-1) + &#39;buzz &#39;;&lt;br /&gt;    elif n %  3 == 0: return fizzbuzz(n-1) + &#39;fizz &#39;;&lt;br /&gt;    else            : return fizzbuzz(n-1) + (&#39;%d &#39; % n)&lt;br /&gt;    return &#39;&#39;  &lt;p&gt;&gt;&gt;&gt; fizzbuzz(100)&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;/p&gt;别人的答案4：&lt;br /&gt;&lt;blockquote&gt; a = []&lt;br /&gt;for i in range(1,101):&lt;br /&gt;    a.append((i%15==0) and &quot;FizzBuzz&quot; or ((i%5==0) and &quot;Buzz&quot; or ((i%3==0) and &quot;Fizz&quot; or str(i))))&lt;br /&gt;print a&lt;/blockquote&gt;别人的答案——&lt;a href=&quot;http://www.codinghorror.com/blog/archives/000781.html&quot;&gt;其他&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;好了，我是个白痴。</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/5486698115736252235/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/5486698115736252235' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/5486698115736252235'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/5486698115736252235'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/fizzbuzz.html' title='我的FizzBuzz'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-4338389756568969234</id><published>2007-03-15T00:27:00.000+08:00</published><updated>2007-03-15T00:34:41.091+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="我相信"/><title type='text'>天下兴亡 之三</title><content type='html'>百度知道是&lt;a href=&quot;http://zhidao.baidu.com/question/4040809.html?fr=qrl3&quot;&gt;这么说的&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;也就是说钱穆先生引用的也不是原话.</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/4338389756568969234/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/4338389756568969234' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/4338389756568969234'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/4338389756568969234'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/blog-post_15.html' title='天下兴亡 之三'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-8498129653808064113</id><published>2007-03-14T23:54:00.000+08:00</published><updated>2007-03-15T00:24:13.747+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="我相信"/><title type='text'>天下兴亡 之二</title><content type='html'>顾炎武还有一句是这么说的:&lt;br /&gt;&lt;blockquote&gt;《日知录》卷十三：“保天下者，匹夫之贱，与有责焉。”&lt;/blockquote&gt;&quot;天下&quot;和&quot;国家&quot;从来就不是一个概念, 但总是被人有意无意地胡乱引用, 直到有人实在受不了了, 写了这么长的一篇文章来讲&lt;a href=&quot;http://www.bullog.cn/blogs/dzl/archives/19859.aspx&quot;&gt;        “天下兴亡，匹夫有责”害人不浅.&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/8498129653808064113/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/8498129653808064113' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/8498129653808064113'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/8498129653808064113'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/blog-post_3233.html' title='天下兴亡 之二'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-8213928589588406775</id><published>2007-03-14T23:21:00.000+08:00</published><updated>2007-03-14T23:52:23.204+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="我相信"/><title type='text'>天下兴亡 匹夫有责</title><content type='html'>&lt;span style=&quot;font-size:-1;&quot;&gt;&lt;b&gt;&lt;/b&gt;今天读&lt;a href=&quot;http://www.douban.com/subject/1062730/&quot;&gt;国史新论&lt;/a&gt;, 方知顾亭林的原话是:&lt;b&gt; &quot;有亡国, 有亡天下. 亡国之事, 肉食者谋之. 天下之事, 则匹夫有责.&quot;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-size:-1;&quot;&gt;&lt;br /&gt;&lt;br /&gt;我要严重崇拜&lt;/span&gt;&lt;span style=&quot;font-size:-1;&quot;&gt;顾炎武了.&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-size:-1;&quot;&gt;&lt;br /&gt;如果&lt;/span&gt;&lt;span style=&quot;font-size:-1;&quot;&gt;看到他的原话被今人胡乱引用胡乱解释, 他会很生气的吧. &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-size:-1;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;昆山是顾炎武&lt;/span&gt;&lt;span style=&quot;font-size:-1;&quot;&gt;的老家呢, 到现在我才知道这里为什么有个公园叫&lt;/span&gt;&lt;span style=&quot;font-size:-1;&quot;&gt;亭林公园. &lt;/span&gt;&lt;span style=&quot;font-size:-1;&quot;&gt;这个周末去瞻仰一下.&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/8213928589588406775/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/8213928589588406775' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/8213928589588406775'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/8213928589588406775'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/blog-post_14.html' title='天下兴亡 匹夫有责'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-7223408263782191918</id><published>2007-03-13T00:14:00.000+08:00</published><updated>2007-03-13T00:15:55.645+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="测试"/><title type='text'>My Nerd Score</title><content type='html'>&lt;a href=&quot;http://www.nerdtests.com/ft_nq.php?im&quot;&gt;&lt;img src=&quot;http://www.nerdtests.com/images/ft/nq.php?val=4789&quot; alt=&quot;I am nerdier than 96% of all people. Are you nerdier? Click here to find out!&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;进步了1分咧, 这是我去年的&lt;a href=&quot;http://my.donews.com/janx/2006/09/17/gHWuHZLwAimjOCsvjuXwpdKPymDjzwvJUrwm/&quot;&gt;测试结果&lt;/a&gt;.</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/7223408263782191918/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/7223408263782191918' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/7223408263782191918'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/7223408263782191918'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/my-nerd-score.html' title='My Nerd Score'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-6499549461358172561</id><published>2007-03-11T11:10:00.000+08:00</published><updated>2007-03-11T11:55:24.712+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="42"/><category scheme="http://www.blogger.com/atom/ns#" term="我相信"/><title type='text'>铁是如何生锈的(中医版)</title><content type='html'>版本1&lt;br /&gt;铁， 五行属金，生锈是上火的症状，火能克金，所以铁就生锈了&lt;br /&gt;&lt;br /&gt;版本2：&lt;br /&gt;健康的铁是没有生锈的，生锈乃风湿导致的病症。&lt;br /&gt;（此解释与化学中的氧气，水导致生锈不谋而合，中医这门数千年的理论，解释了西方化学近代才能解释的现象，我们的祖先实在太有才了！）&lt;br /&gt;&lt;br /&gt;中医毕竟不是偶的专业，以上推论当然太粗浅，而且可能完全是不对的。但中医的思维方式大致如此。什么离子化啊，氧化还原啊，电子传来传去啊这些&lt;span style=&quot;font-weight: bold;&quot;&gt;表面的东西&lt;/span&gt;管它作甚，我们只要能抓住&lt;span style=&quot;font-weight: bold;&quot;&gt;精髓&lt;/span&gt;就可以了。那么精髓是什么呢？当然是我们祖先留下来的中医理论。&lt;br /&gt;&lt;br /&gt;这套理论不仅仅可以用来解释人体，解释病理，解释医学，它其实可以解释一切自然现象。大哉中医理论，伟哉我们的先人。&lt;br /&gt;&lt;br /&gt;感谢我们的祖先赐予我们这套伟大的理论，让我们在西方科学统治的今天多一样东西来保护我们那本来就很薄的面子。</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/6499549461358172561/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/6499549461358172561' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/6499549461358172561'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/6499549461358172561'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/blog-post_2227.html' title='铁是如何生锈的(中医版)'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-7515925608841500233</id><published>2007-03-11T08:24:00.000+08:00</published><updated>2007-03-11T10:52:36.983+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="42"/><title type='text'>月食</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://farm1.static.flickr.com/152/409302929_d0afbc88e5.jpg&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 509px; height: 379px;&quot; src=&quot;http://farm1.static.flickr.com/152/409302929_d0afbc88e5.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;我也想拍这样的照片来着，可惜当时天阴了。&lt;br /&gt;不过就算不阴，我的相机也拍不出什么像样的结果。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;相片来自&lt;a href=&quot;http://www.flickr.com/photos/visionmixer/409302929/&quot;&gt;flickr的visionmixer&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/7515925608841500233/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/7515925608841500233' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/7515925608841500233'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/7515925608841500233'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/blog-post_11.html' title='月食'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://farm1.static.flickr.com/152/409302929_d0afbc88e5_t.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-2764863293340822381</id><published>2007-03-10T23:40:00.000+08:00</published><updated>2007-03-11T00:34:53.085+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="42"/><title type='text'>铁是如何生锈的</title><content type='html'>谷歌和百度都没有搜到足够详细的说法, 都是指导初中生做铁钉生锈实验的文章，天哪，还是铁钉。这么多年了，难道就不会换点实验材料吗？&lt;br /&gt;&lt;br /&gt;只好去查英文的google&lt;br /&gt;&lt;br /&gt;wikipedia 的也不是很详细, 而且有可能不是很对。链接就不贴了，反正也不能正常打开。&lt;br /&gt;&lt;br /&gt;不过&lt;a href=&quot;http://antoine.frostburg.edu/chem/senese/101/redox/faq/how-iron-rusts.shtml&quot;&gt;这个FAQ&lt;/a&gt;倒是写得不错。&lt;br /&gt;&lt;br /&gt;总结一下:&lt;br /&gt;&lt;br /&gt;必须条件: 氧气, 水&lt;br /&gt;可选条件: 盐分, 酸碱度, 二氧化碳&lt;br /&gt;&lt;br /&gt;水起到交换离子的中介作用. 没有水的前提下, 光铁和氧气是不会反应生锈的.&lt;br /&gt;&lt;br /&gt;由于水的中介, 二价铁离子和水中的氢氧根离子(氧来自氧气)生成不可溶的氢氧化亚铁Fe(OH)2。&lt;br /&gt;二价铁离子被进一步氧化会形成三价铁离子，进而再生成不可溶的氢氧化铁Fe(OH)3。&lt;br /&gt;氢氧化铁脱水，会形成氧化铁(Fe2O3)和水合氧化铁(FeO(OH))&lt;br /&gt;我们通常看到的红锈是氧化铁，黄锈是水合氧化铁.&lt;br /&gt;&lt;br /&gt;酸碱度和水中的盐分会提升离子化程度，从而使铁生锈加快。&lt;br /&gt;CO2溶于水会导致弱酸环境，也会加快生锈的速度。</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/2764863293340822381/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/2764863293340822381' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/2764863293340822381'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/2764863293340822381'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/blog-post_6848.html' title='铁是如何生锈的'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-9160198541013502291</id><published>2007-03-10T22:42:00.000+08:00</published><updated>2007-03-10T23:04:36.372+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="blog"/><title type='text'>李卫公的长安城</title><content type='html'>用google reader订阅&lt;a href=&quot;http://blog.donews.com/maverick/&quot;&gt;李卫公的blog&lt;/a&gt;, 发现只有标题没有内容. 那就不订阅了, 看看就好.&lt;br /&gt;&lt;br /&gt;不提供全文rss, 郁闷.&lt;br /&gt;&lt;br /&gt;不过他提供了一个&lt;a href=&quot;http://www.gougou.com/1SRJ44S6&quot;&gt;用狗狗订阅&lt;/a&gt;的链接, 可以查看原文. 也许这个狗狗也很好玩, 不过我是没那么多雅兴了..</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/9160198541013502291/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/9160198541013502291' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/9160198541013502291'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/9160198541013502291'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/blog.html' title='李卫公的长安城'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-6811216634465153387</id><published>2007-03-10T22:21:00.000+08:00</published><updated>2007-03-10T22:42:36.556+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="blog"/><title type='text'>再谈my.donews.com</title><content type='html'>今天回到&lt;a href=&quot;http://my.donews.com/janx&quot;&gt;my.donews.com/janx&lt;/a&gt;, 打算发个&quot;永不更新&quot;的公告, 发现mydonews似乎有点变化. 然后在开发日志里看到mu升级到了1.1.1 -- 200多天没动作, 现在总算有点反应了. 还以为donews把它放那儿再也不管了呢.&lt;br /&gt;&lt;br /&gt;升级后一些功能出了问题, 升级日志回帖中&lt;a href=&quot;http://my.donews.com/mydev/2007/03/08/post-070308-000654-794/&quot;&gt;抱怨声&lt;/a&gt;响成一片.&lt;br /&gt;&lt;br /&gt;而且里边的翻译依然是一团糟.&lt;br /&gt;&lt;br /&gt;还是不回去好了..</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/6811216634465153387/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/6811216634465153387' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/6811216634465153387'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/6811216634465153387'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/mydonewscom.html' title='再谈my.donews.com'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-3215670520165323779</id><published>2007-03-10T18:57:00.000+08:00</published><updated>2007-03-11T08:51:23.516+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="我相信"/><title type='text'>回信, 关于中医</title><content type='html'>&lt;table style=&quot;width: 100%;&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class=&quot;cbln&quot;&gt;&lt;div class=&quot;mb&quot;&gt;&lt;div id=&quot;mb_1&quot;&gt;你的观点有两个核心:&lt;br /&gt;1, 中医有发展&lt;br /&gt;2, 中医有用&lt;br /&gt;&lt;br /&gt;这句话放在其它地方也成立, 我可以说&lt;br /&gt;星相学有发展, 星相学也有用: 它的发展随着天文学和心理学发展, 它的用处是通过心理暗示对人做正面导向.&lt;br /&gt;&lt;br /&gt;问题是, 星相学的理论本身是错的.&lt;br /&gt;&lt;br /&gt;世界上没有绝对的真理, 科学也不等于真理, 但科学会实事求是地对每一个问题穷根究底. 医学是人命关天的大事, 不能等闲视之.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;span class=&quot;q&quot;&gt;&lt;span class=&quot;gmail_quote&quot;&gt;On 3/10/07, tyg &lt;b class=&quot;gmail_sendername&quot;&gt;&lt;a href=&quot;mailto://tyg0511@sohu.com/&quot; target=&quot;_blank&quot; onclick=&quot;return top.js.OpenExtLink(window,event,this)&quot;&gt;&lt;/a&gt;&lt;/b&gt;wrote:&lt;/span&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;    &lt;div&gt; &lt;a href=&quot;http://www.luoyonghao.net/blogs/luoyonghao/archives/32436.aspx&quot; target=&quot;_blank&quot; onclick=&quot;return top.js.OpenExtLink(window,event,this)&quot;&gt;http://www.luoyonghao.net&lt;wbr&gt;/blogs/luoyonghao/archives&lt;wbr&gt;/32436.aspx&lt;/a&gt;&lt;/div&gt;&lt;/blockquote&gt; &lt;/span&gt;&lt;div&gt;&lt;br /&gt;看了.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div&gt;&lt;span class=&quot;q&quot;&gt;&lt;p&gt;中医即使不科学，也有存在的理由，科学不等于真理&lt;wbr&gt;，科学的标准是什么呢？争论中医是不是科学没有什么意义&lt;br /&gt;&lt;/p&gt;&lt;/span&gt; &lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;如果中医实践过程中对每个问题都实事求是地追根究底, 不管它本身算不算科学, 它至少有了科学的态度, 这种态度是不管做什么都应该有的. 自己不懂还出来糊弄人是不对的. 有错不改也是不对的.&lt;br /&gt;&lt;br /&gt;就 以感冒为例, 感冒是病毒引起的疾病. 3000年前谁都不知道病毒是个什么东西, 所以用&quot;风寒&quot;之类的概念去解释情有可原, 但随着生物学的进步, 我们知道了很多我们祖先想都想不到的东西, 如果不使用我们现在的知识, 还是拿&quot;风寒&quot;去套感冒, 这不是固步自封了吗?&lt;br /&gt;&lt;br /&gt;可叹的是, 由于中医理论本身的封闭性, 细菌, 病毒, 免疫, 这样的现代医学成果, 在中医理论里边居然没有容身之地.&lt;br /&gt;&lt;br /&gt;再 比如说A药能治B病, 如果给西医, 它会具体告诉你A药在你身体里做了什么事, 是如何对B病起作用的. 如果给中医, 它也会说A药是如何对B病起作用的, 但所有这一切都会拿阴阳五行寒热之类的概念做幌子, 这些都不是真正在你身体里发生的事情. 这不是实事求是. 如果想让中医去解释真正发生的事情, 它做不到, 因为它根本就不知道. 不知道还要解释, 就是不懂装懂.&lt;br /&gt;&lt;/div&gt;&lt;span class=&quot;q&quot;&gt;&lt;br /&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div&gt;&lt;p&gt;中医是以两千多年前的一部书为经典的，但是中医绝不是两千年来没有&lt;wbr&gt;任何发展的，事实上，在各朝各代，中医都有大量的名医&lt;wbr&gt;，在理论领域发展着中医，只是不学中医的人不知道而已 &lt;/p&gt;&lt;p&gt;从伤寒论开始，金元四大家，明清温病学派等等，都有自己在中医理论&lt;wbr&gt;上里程碑式的贡献。&lt;/p&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/span&gt;&lt;div&gt;&lt;br /&gt;是.&lt;br /&gt;不过中国古代直到清朝, 对自然界的认知能力没有什么本质性的提高. 里程碑式的贡献是不够的, 革命性的贡献在中医中从来没出现过.&lt;br /&gt;反观欧洲, 自文艺复兴到近代工业革命, 有多少理论被质疑, 被否认, 被推翻了, 这也包括他们自己的旧医学.&lt;br /&gt;&lt;/div&gt;&lt;span class=&quot;q&quot;&gt;&lt;br /&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div&gt;&lt;p&gt;任何理论都是要指导实践的，中医也是这样，既然中医能看病&lt;wbr&gt;，能解决实际问题，为什么就没有存在的必要呢&lt;/p&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/span&gt;&lt;div&gt;&lt;br /&gt;神创论指导了人类数千年, 不一样的民族有不一样的神. 人类没有因为神创论灭绝掉 反而繁衍了灿烂的文明, 因此神创论就是正确的了?&lt;br /&gt;存在是一种状态, 不是一种权利, 有人赞同有人反对也很正常. 好自为之吧.&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;至于存在的必要性, 这是要中医自己证明给世界看的, 空谈无益.&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;span class=&quot;q&quot;&gt;&lt;br /&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt; &lt;div&gt;&lt;p&gt;中医目前的问题不在于发展，连继承都成了问题，想要发展中医&lt;wbr&gt;，你至少得懂了中医，才能谈得上发展中医吧&lt;/p&gt;&lt;p&gt;可是不看中医经典，怎么能懂中医呢&lt;/p&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/span&gt;&lt;div&gt;是.&lt;br /&gt;可如果它本身就是落后的, 你懂了又有什么用呢?&lt;br /&gt;计算机刚兴起来的时候, 人们说算盘是个好东西, 比计算机快, 不会被淘汰, 会计们的噼里啪啦也好生让人羡慕.&lt;br /&gt;看看现在, 才几年呢, 算盘已经沦为一种儿童益智玩具了.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div&gt;&lt;hr size=&quot;1&quot;&gt;&lt;br /&gt;&lt;/div&gt; &lt;/blockquote&gt;&lt;/div&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;a href=&quot;https://mail.google.com/mail/?ik=3dfec456bb&amp;search=inbox&amp;amp;amp;amp;amp;view=tl&amp;start=0&amp;amp;fs=1&amp;amp;zx=yziwnn40yyrt&quot;&gt; &lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/3215670520165323779/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/3215670520165323779' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/3215670520165323779'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/3215670520165323779'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/blog-post_8705.html' title='回信, 关于中医'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-9058215268472830586</id><published>2007-03-10T16:27:00.000+08:00</published><updated>2007-03-10T23:10:03.983+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="blog"/><title type='text'>苏昱（苏小雨）的日志</title><content type='html'>修改blogspot模板, 少不了查CSS文档. 要查CSS文档, 少不了找苏沈小雨的CSS2中文手册. 然后就少不了寻思, 这家伙现在在做什么呢?&lt;br /&gt;&lt;br /&gt;先找&lt;a href=&quot;http://www.dhtmlet.com/&quot;&gt;dhtmlet&lt;/a&gt;, 服务器停了; 接着找&lt;a href=&quot;http://www.rain1977.com/&quot;&gt;http://www.rain1977.com&lt;/a&gt;, 被链接到莫名其妙的广告页. 于是google了一下, 找到了&lt;span style=&quot;font-weight: bold;&quot;&gt;她&lt;/span&gt;的&lt;a href=&quot;http://www.blogcn.com/user2/rainersu/index.html&quot;&gt;blog&lt;/a&gt;还有&lt;a href=&quot;http://rainersu.spaces.live.com/&quot;&gt;MSN空间&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;blogcn有点弱, firefox 下面不能正常显示边栏, 也侦测不到rss..</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/9058215268472830586/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/9058215268472830586' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/9058215268472830586'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/9058215268472830586'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/blog-post_10.html' title='苏昱（苏小雨）的日志'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-527666922052880167</id><published>2007-03-09T22:12:00.000+08:00</published><updated>2007-03-09T22:51:59.792+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="软件"/><title type='text'>DON&#39;T PANIC</title><content type='html'>下面是&lt;a href=&quot;http://portableapps.com/apps/utilities/clamwin_portable&quot;&gt;ClamAV Portable&lt;/a&gt;在升级完成后的提示消息。DON&#39;T PANIC! 呵呵，太可爱了。 &lt;blockquote&gt;update process started at Fri Mar 09 22:08:10 2007&lt;br /&gt;DON&#39;T PANIC! Read http://www.clamav.net/support/faq&lt;br /&gt;main.cvd is up to date (version: 42, sigs: 83951, f-level: 10, builder: tkojm)&lt;br /&gt;LibClamAV Error: Database Directory: ..\..\..\Data\db not locked&lt;br /&gt;daily.inc is up to date (version: 2786, sigs: 13461, f-level: 14, builder: sven)&lt;br /&gt;&lt;br /&gt;--------------------------------------&lt;br /&gt;Completed&lt;br /&gt;--------------------------------------&lt;/blockquote&gt;&lt;a href=&quot;http://www.clamav.net/&quot;&gt;Clam AntiVirus&lt;/a&gt; 是一款基于GPL的免费Unix杀毒工具。功能简单得很：界面上只能看到4个按钮：设置，升级，磁盘扫描，内存扫描。&lt;br /&gt;&lt;br /&gt;就是它帮我干掉了所有的变种Viking病毒。&lt;br /&gt;&lt;br /&gt;虽然没有实时监控，但能和快车，迅雷等下载软件结合使用，而且实时监控会吃很多内存，我不喜欢……&lt;br /&gt;&lt;br /&gt;如果你不想花钱买杀毒软件，又厌烦了到处寻觅商业版本杀毒软件的破解补丁，就请用它吧。&lt;br /&gt;&lt;br /&gt;下载链接：&lt;br /&gt;&lt;a href=&quot;http://portableapps.com/apps/utilities/clamwin_portable&quot;&gt;ClamAV Portable&lt;/a&gt; （Windows 便携版）&lt;br /&gt;&lt;a href=&quot;http://w32.clamav.net/clamAV.msi&quot;&gt;ClamAV Windows 安装文件&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.clamav.net/img/clamav-logo1.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 129px; height: 38px;&quot; src=&quot;http://www.clamav.net/img/clamav-logo1.png&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/527666922052880167/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/527666922052880167' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/527666922052880167'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/527666922052880167'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/dont-panic.html' title='DON&#39;T PANIC'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-4241128151063824157</id><published>2007-03-08T23:33:00.000+08:00</published><updated>2007-03-08T23:58:11.699+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="humor"/><title type='text'>如何制作笔记本电脑</title><content type='html'>&lt;p&gt;第1步：你需要一些硅。很多人这是会说“熔解一些石头就可以了”。但这是有“假设石头存在”的前提，这是作弊。所以首先我们需要先诱发一次超新星大爆炸。&lt;/p&gt; &lt;p&gt;……&lt;br /&gt;&lt;/p&gt; &lt;p&gt;第51,985步，你需要一些塑料。塑料是用石油制造出来的。你需要用水冲刷你在第9到第23,492步制造出来的行星中的一个以获得水生微生物。等你得到足够的这些小杂种后，你需要用力挤压它们，不对，要&lt;span style=&quot;font-weight: bold;&quot;&gt;非常&lt;/span&gt;用力地挤压他们。让他们被压个2亿5千万年再看吧。&lt;/p&gt;&lt;p&gt;等等&lt;br /&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/4241128151063824157/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/4241128151063824157' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/4241128151063824157'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/4241128151063824157'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/blog-post_08.html' title='如何制作笔记本电脑'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-3093310435980402996</id><published>2007-03-06T20:12:00.000+08:00</published><updated>2007-03-06T20:19:36.702+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="测试"/><category scheme="http://www.blogger.com/atom/ns#" term="靠"/><title type='text'>月薪3万的一道面试题------看看你的IQ</title><content type='html'>&lt;blockquote&gt; 小明和小强都是张老师的学生，张老师的生日是M月N日，2人都知道张老师的生日是下列10组中的一天：&lt;br /&gt;　　3月4日 3月5日 3月8日&lt;br /&gt;　　6月4日 6月7日&lt;br /&gt;　　9月1日 9月5日&lt;br /&gt;　　12月1日 12月2日 12月8日&lt;br /&gt;张老师把M值告诉了小明，把N值告诉了小强，张老师问他们知道他的生日是那一天吗？&lt;br /&gt;　　小明说：如果我不知道的话，小强肯定也不知道&lt;br /&gt;　　小强说：本来我也不知道，但是现在我知道了&lt;br /&gt;　　小明说：哦，那我也知道了&lt;br /&gt;　　请根据以上对话推断出张老师的生日是哪一天。&lt;/blockquote&gt;&lt;a href=&quot;http://www.blogjava.net/feelyou/archive/2005/11/16/20133.aspx&quot;&gt;答案的链接&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;奇异的是江苏的公务员考试也考这种题目，公务员要会这个东西干什么呀？</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/3093310435980402996/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/3093310435980402996' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/3093310435980402996'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/3093310435980402996'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/3-iq.html' title='月薪3万的一道面试题------看看你的IQ'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-5307200399281234525</id><published>2007-03-06T20:10:00.000+08:00</published><updated>2007-03-06T20:12:04.113+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="42"/><category scheme="http://www.blogger.com/atom/ns#" term="测试"/><title type='text'>What is the next number in the sequence 1, 1, 1, 1?</title><content type='html'>答案是&lt;a href=&quot;http://qntm.org/1111&quot;&gt;42&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/5307200399281234525/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/5307200399281234525' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/5307200399281234525'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/5307200399281234525'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/what-is-next-number-in-sequence-1-1-1-1.html' title='What is the next number in the sequence 1, 1, 1, 1?'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-6076610345366592126</id><published>2007-03-06T20:05:00.000+08:00</published><updated>2007-03-06T20:09:43.715+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="靠"/><title type='text'>对不起</title><content type='html'>想要模仿Keso，结果把模板弄坏了。&lt;br /&gt;将就着吧，偶慢慢修理……</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/6076610345366592126/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/6076610345366592126' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/6076610345366592126'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/6076610345366592126'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/blog-post_06.html' title='对不起'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-2754400260396661908</id><published>2007-03-03T11:22:00.000+08:00</published><updated>2007-03-03T11:34:41.751+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="测试"/><title type='text'>你是怎么死的？</title><content type='html'>&lt;center&gt;&lt;table style=&quot;border: 1px solid black; background-repeat: no-repeat;&quot; background=&quot;#FFFFFF&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;350&quot;&gt;&lt;br /&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:+1;&quot;&gt;You&#39;ll die from a Heart Attack during Sex.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br /&gt;&lt;tr&gt;&lt;td align=&quot;center&quot;&gt;Your a lover not a fighter but sadly, in the act of making love your heart will stop.  But what a way to go.&lt;br /&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br /&gt;&lt;tr height=&quot;350&quot;&gt;&lt;td&gt;&lt;br /&gt;&lt;table style=&quot;border: 1px solid black;&quot; name=&quot;qgtable&quot; background=&quot;http://img.quizgalaxy.com/howwillyoudie-bg.jpg&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; height=&quot;350&quot; width=&quot;350&quot;&gt;&lt;br /&gt;&lt;tbody&gt;&lt;tr height=&quot;163&quot;&gt;&lt;td width=&quot;222&quot;&gt;&lt;br /&gt;&lt;/td&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;td border=&quot;0&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;img src=&quot;http://img.quizgalaxy.com/locator.gif&quot; border=&quot;0&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br /&gt;&lt;tr height=&quot;30&quot;&gt;&lt;td border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;http://www.quizgalaxy.com/quiz.php?id=165&quot;&gt;&#39;How will you die?&#39;&lt;/a&gt; at &lt;a href=&quot;http://www.quizgalaxy.com/&quot;&gt;QuizGalaxy.com&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br /&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div style=&quot;text-align: left;&quot;&gt;“你是个爱人，不是个战士，然而不幸的是你会在做爱时死于心脏病。不过这个死法也真不错呀！”&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;mailto:pzmyers@pharyngula.org&quot;&gt;PZ Myers&lt;/a&gt;在他的&lt;a href=&quot;http://feeds.feedburner.com/%7Er/scienceblogs/pharyngula/%7E3/98594563/actually_i_dont_think_its_a_pa.php&quot;&gt;Pharyngula&lt;/a&gt;里边说：这个死法也不见得很不错呀，这对我老婆太不公平，太残酷了，我还是选择永远活着吧。&lt;br /&gt;&lt;/div&gt;&lt;/center&gt;</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/2754400260396661908/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/2754400260396661908' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/2754400260396661908'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/2754400260396661908'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/blog-post.html' title='你是怎么死的？'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-3510099944303654823</id><published>2007-03-03T10:42:00.000+08:00</published><updated>2007-03-03T10:52:52.110+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="web"/><category scheme="http://www.blogger.com/atom/ns#" term="测试"/><title type='text'>Your programmer personality type</title><content type='html'>&lt;strong&gt;Test Results&lt;/strong&gt;               &lt;hr /&gt;                  &lt;div align=&quot;center&quot;&gt;                 &lt;script type=&quot;text/javascript&quot;&gt;&lt;!--                 google_ad_client = &quot;pub-6682941920784749&quot;;                 google_ad_width = 468;                 google_ad_height = 60;                 google_ad_format = &quot;468x60_as&quot;;                 google_ad_type = &quot;text&quot;;                 google_ad_channel =&quot;&quot;;                 //--&gt;&lt;/script&gt;                 &lt;script type=&quot;text/javascript&quot; src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;                 &lt;/script&gt;                 &lt;/div&gt;                 &lt;br /&gt;                Your programmer personality type is:&lt;br /&gt;&lt;br /&gt;   &lt;b&gt;&lt;span style=&quot;font-size:180%;&quot;&gt;DHSC&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;You&#39;re a &lt;span style=&quot;font-size:180%;&quot;&gt;D&lt;/span&gt;oer.&lt;/b&gt;&lt;br /&gt;          You are very quick at getting tasks done. You believe the outcome is the most            important part of a task and the faster you can reach that outcome the better.            After all, time is money.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;You like coding at a &lt;span style=&quot;font-size:180%;&quot;&gt;H&lt;/span&gt;igh level.&lt;/b&gt;&lt;br /&gt;          The world is made up of objects and components, you should create your programs            in the same way.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;You work best in a &lt;span style=&quot;font-size:180%;&quot;&gt;S&lt;/span&gt;olo situation.&lt;/b&gt;&lt;br /&gt;          The best way to program is by yourself. There&#39;s no communication problems, you            know every part of the code allowing you to write the best programs possible.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;You are a &lt;span style=&quot;font-size:180%;&quot;&gt;C&lt;/span&gt;onservative programmer.&lt;/b&gt;&lt;br /&gt;          The less code you write, the less chance there is of it containing a bug. You            write short and to the point code that gets the job done efficiently.&lt;br /&gt;&lt;br /&gt;我不是程序员，不过这个测试还是可以反映一些个性的。</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/3510099944303654823/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/3510099944303654823' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/3510099944303654823'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/3510099944303654823'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/03/your-programmer-personality-type.html' title='Your programmer personality type'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-3664180423656935755</id><published>2007-02-28T23:41:00.000+08:00</published><updated>2007-03-03T11:18:32.416+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="web"/><category scheme="http://www.blogger.com/atom/ns#" term="靠"/><title type='text'>my.donews.com彻底弃用了</title><content type='html'>看样子现在这个破地方估计连50%的up time都保证不了。&lt;br /&gt;&lt;br /&gt;留校察看结束，正式开除了 :/</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/3664180423656935755/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/3664180423656935755' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/3664180423656935755'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/3664180423656935755'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/02/mydonewscom_28.html' title='my.donews.com彻底弃用了'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-3631053769447024475</id><published>2007-02-28T22:59:00.000+08:00</published><updated>2007-02-28T23:10:29.290+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="42"/><category scheme="http://www.blogger.com/atom/ns#" term="我相信"/><category scheme="http://www.blogger.com/atom/ns#" term="翻译"/><title type='text'>电僧</title><content type='html'>电僧（Electric Monk)是Douglas Adams的小说&lt;i&gt;Dirk Gently&#39;s Holistic Detective Agency&lt;/i&gt;中的一个角色：&lt;i&gt;&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;电僧是一种节约劳动的设备，就像电动洗碗机或者录像机一样。洗碗机会为你清洗&lt;i&gt;&lt;i&gt;冗烦的&lt;/i&gt;&lt;/i&gt;餐具，省了你自己去清洗这些餐具。录像机为你收看冗烦的电视节目，省了你自己去看这些节目。电僧为你相信这个世界希望你相信的所有东西，省去了你这项越来越繁重的事务。&lt;br /&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;/i&gt;</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/3631053769447024475/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/3631053769447024475' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/3631053769447024475'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/3631053769447024475'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/02/blog-post_8605.html' title='电僧'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-2430604244561644198</id><published>2007-02-28T21:45:00.000+08:00</published><updated>2007-02-28T22:04:51.634+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="我相信"/><title type='text'>我相信</title><content type='html'>俺和一个mm有数面之缘。初见时她烫着卷发，觉得挺漂亮也挺有气质；再见到时还是觉得挺漂亮也挺有气质。今天再见到时，发现她头发拉直了，而且右耳朵上面挂了3个以上的耳环。&lt;br /&gt;&lt;br /&gt;哎…………&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;不过还是觉得挺漂亮也挺有气质的 :D</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/2430604244561644198/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/2430604244561644198' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/2430604244561644198'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/2430604244561644198'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/02/blog-post_6753.html' title='我相信'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-7747122749615939666</id><published>2007-02-28T18:31:00.000+08:00</published><updated>2007-02-28T18:42:07.700+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="电脑"/><category scheme="http://www.blogger.com/atom/ns#" term="病毒"/><category scheme="http://www.blogger.com/atom/ns#" term="靠"/><title type='text'>又中病毒了</title><content type='html'>这次真是来者不善啊。&lt;br /&gt;&lt;span style=&quot;font-size:-1;&quot;&gt;Worm.Win32.Delf.bg 应该是viking或者熊猫的变种吧，感染了所有exe文件，好多程序都不能用了。&lt;br /&gt;手动清除有困难，关键是exe文件不好修复。杀毒软件目前似乎也没辙，病毒出来两星期多了，一个专杀工具都没见到。&lt;br /&gt;昨天折腾了半晚上，目前病毒在俺机子上处于抑制状态，等着专杀工具出来。&lt;br /&gt;我是想买个正版杀毒软件的，不过电脑没有宽带，升级病毒库是个大问题。&lt;br /&gt;&lt;br /&gt;我再也不下载来路不明的.exe了&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;font-size:-1;&quot;&gt;我再也不下载来路不明的.exe了&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;font-size:-1;&quot;&gt;我再也不下载来路不明的.exe了&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;font-size:-1;&quot;&gt;我再也不下载来路不明的.exe了&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/7747122749615939666/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/7747122749615939666' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/7747122749615939666'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/7747122749615939666'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/02/blog-post_28.html' title='又中病毒了'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26022771.post-7676605602514544124</id><published>2007-02-27T20:04:00.000+08:00</published><updated>2007-02-27T20:21:36.192+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="web"/><category scheme="http://www.blogger.com/atom/ns#" term="靠"/><title type='text'>过年QQ被劫持</title><content type='html'>&lt;span style=&quot;color: rgb(102, 0, 0);&quot;&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(102, 0, 0);&quot;&gt;(2007-02-27 17:26:13)   [好友1]&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(102, 0, 0);&quot;&gt;还在忙拜年吗？感觉时间过的好快啊！再次祝你新年快乐，天天开心！我用Q币点了几首彩铃歌曲给你，&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(102, 0, 0);&quot;&gt;你打我的QQ手机信箱１２一５９０一６２０一３４４３, 听一听去选择一曲吧，接听是免费的！幸运的话 还能得QQ新年小红包哦，祝你好运啊!歌曲最后还有我的神秘留言,千万不要给别人听哦!!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(102, 0, 0);&quot;&gt;记得去选。我 要下了！！886 &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(102, 0, 0);&quot;&gt;(2007-02-26 14:49:31)   [好友2]&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(102, 0, 0);&quot;&gt;新年的祝福发的首几都没费了。呵呵。好累呀，你在干嘛呢，所以俺就不能给发短信了。你用首几打１２和５加９０再加６２０３４４１，就可以听到我给你说的话了。听完给我回个信呦！！！我下了！！！&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(102, 0, 0);&quot;&gt;--&lt;/span&gt;&lt;br /&gt;我的两个好友的号码都被劫持过了。不知道我自己的是不是也遭殃了呢？&lt;br /&gt;fei1700反映，号码并没有丢，只是被异地登录了。&lt;br /&gt;立此存照，看腾讯怎么解释。</content><link rel='replies' type='application/atom+xml' href='http://oljanx.blogspot.com/feeds/7676605602514544124/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/26022771/7676605602514544124' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/7676605602514544124'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26022771/posts/default/7676605602514544124'/><link rel='alternate' type='text/html' href='http://oljanx.blogspot.com/2007/02/qq.html' title='过年QQ被劫持'/><author><name>Wang DingWei</name><uri>http://www.blogger.com/profile/12253579191119647094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS5jRVOicqATPEW2gWBMMzhL7hK-1M10Vtm-3BqpNThn9-TYBsCWPd7MibWy_n72bmqpy8kb8D_LvYR3am7_I7WKCzxTf25CXg5zhbY_9N5EeMnS1-vkQqR1TC274YutA/s220/IMG_6113.jpg'/></author><thr:total>0</thr:total></entry></feed>