<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>LajiCF&#039;s Blog &#187; 扯淡</title>
	<atom:link href="http://blog.suflanker.com/category/%e6%89%af%e6%b7%a1/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.suflanker.com</link>
	<description>个人地盘，扯一些乱七八糟的东西...</description>
	<lastBuildDate>Thu, 29 Jul 2010 10:09:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>终于搬家完毕。。</title>
		<link>http://blog.suflanker.com/2010/07/transfer-complete/</link>
		<comments>http://blog.suflanker.com/2010/07/transfer-complete/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 10:04:42 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[折腾]]></category>
		<category><![CDATA[搬家]]></category>

		<guid isPermaLink="false">http://blog.suflanker.com/2010/07/%e7%bb%88%e4%ba%8e%e6%90%ac%e5%ae%b6%e5%ae%8c%e6%af%95%e3%80%82%e3%80%82/</guid>
		<description><![CDATA[&#160;&#160;&#160; 本Blog竟然有四个月没更新了，实在是说不过去。鉴于现在的住处仍无法上网，本Blog有规律的更新估计还是遥遥无期。唉，真是个悲剧啊。。
&#160;&#160;&#160; 今天终于把以前文章中的图片从BlogBus迁移至现在的主机上了，这事应该在一年前就干完了，居然被我拖到现在，实在是罪过啊罪过。
&#160;&#160;&#160; 顺便就记录一下迁移的过程，以备后用：
&#160;&#160;&#160; 迁移这事不算难，先把数据库wp_posts表导出至文本的SQL文件，用phpMyAdmin就行。

&#160;&#160;&#160; 然后用正则表达式分析出该去Blogbus上下载的图片地址，比如说用http://([\w-]+\.)+[\w-]+(/[\w- ./?%&#38;=]*)?.jpg这个表达式就能匹配出所有jpg的图片链接。当然还有png的、gif的图片，在Blogbus上存的图片地址统统抓出来，用迅雷批量下载，然后上传至主机待用。正则匹配的工具很多，不过推荐一下Notepad++的RegEx Helper，界面如下图，相当好用。
 

&#160;&#160;&#160; 接下来就是把SQL文件中的图片地址替换成新的，没啥技术含量，直接Ctrl+H替换就成。

&#160;&#160;&#160; 最后用phpMyAdmin把修改过的SQL导入到数据库里替换。注意，替换前先将数据库中的wp_posts表清空。

&#160;&#160;&#160; OK，一切完成。 

相关日志2010-03-13 -- YY NAS Or 动物机 Or HTPC (0)2010-03-13 -- 初识E-Ink，兼Eslick流水帖 (0)2009-08-08 -- 人品大爆发 (2)2009-07-02 -- Goodbye Blogbus (0)2009-06-19 -- 豆瓣MP3播放器 (6)]]></description>
			<content:encoded><![CDATA[<p>&#160;&#160;&#160; 本Blog竟然有四个月没更新了，实在是说不过去。鉴于现在的住处仍无法上网，本Blog有规律的更新估计还是遥遥无期。唉，真是个悲剧啊。。</p>
<p>&#160;&#160;&#160; 今天终于把以前文章中的图片从BlogBus迁移至现在的主机上了，这事应该在一年前就干完了，居然被我拖到现在，实在是罪过啊罪过。</p>
<p>&#160;&#160;&#160; 顺便就记录一下迁移的过程，以备后用：</p>
<blockquote><p>&#160;&#160;&#160; 迁移这事不算难，先把数据库wp_posts表导出至文本的SQL文件，用phpMyAdmin就行。</p>
</blockquote>
<blockquote><p>&#160;&#160;&#160; 然后用正则表达式分析出该去Blogbus上下载的图片地址，比如说用<a href="http://([\w-]+\.)+[\w-]+(/[\w">http://([\w-]+\.)+[\w-]+(/[\w</a>- ./?%&amp;=]*)?.jpg这个表达式就能匹配出所有jpg的图片链接。当然还有png的、gif的图片，在Blogbus上存的图片地址统统抓出来，用迅雷批量下载，然后上传至主机待用。正则匹配的工具很多，不过推荐一下Notepad++的RegEx Helper，界面如下图，相当好用。</p>
<p><a href="http://suflanker.com/pic/42bc362cedf7_FE0F/image.png"><img style="border-bottom: 0px; border-left: 0px; margin: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://suflanker.com/pic/42bc362cedf7_FE0F/image_thumb.png" width="484" height="467" /></a> </p>
</blockquote>
<blockquote><p>&#160;&#160;&#160; 接下来就是把SQL文件中的图片地址替换成新的，没啥技术含量，直接Ctrl+H替换就成。</p>
</blockquote>
<blockquote><p>&#160;&#160;&#160; 最后用phpMyAdmin把修改过的SQL导入到数据库里替换。注意，替换前先将数据库中的wp_posts表清空。</p>
</blockquote>
<blockquote><p>&#160;&#160;&#160; OK，一切完成。 </p>
</blockquote>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=105&type=feed" alt="" /><h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>2010-03-13 -- <a href="http://blog.suflanker.com/2010/03/my-nas-is-coming/" title="YY NAS Or 动物机 Or HTPC">YY NAS Or 动物机 Or HTPC</a> (0)</li><li>2010-03-13 -- <a href="http://blog.suflanker.com/2010/03/i-love-e-ink/" title="初识E-Ink，兼Eslick流水帖">初识E-Ink，兼Eslick流水帖</a> (0)</li><li>2009-08-08 -- <a href="http://blog.suflanker.com/2009/08/the-baofa-of-my-rp/" title="人品大爆发">人品大爆发</a> (2)</li><li>2009-07-02 -- <a href="http://blog.suflanker.com/2009/07/goodbye-blogbus/" title="Goodbye Blogbus">Goodbye Blogbus</a> (0)</li><li>2009-06-19 -- <a href="http://blog.suflanker.com/2009/06/%e8%b1%86%e7%93%a3mp3%e6%92%ad%e6%94%be%e5%99%a8/" title="豆瓣MP3播放器">豆瓣MP3播放器</a> (6)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2010/07/transfer-complete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>They will be back</title>
		<link>http://blog.suflanker.com/2010/03/they-will-be-back/</link>
		<comments>http://blog.suflanker.com/2010/03/they-will-be-back/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 01:56:02 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[郁闷]]></category>

		<guid isPermaLink="false">http://blog.suflanker.com/2010/03/they-will-be-back/</guid>
		<description><![CDATA[唉，这一天终于来了。
无语了。天朝的P民真惨，永远是被压迫的对象。干啥事，被的永远的我们P民。
在如此伟～～光～～正～～的社会里，我们能做什么。
埋头赚钱，吃喝玩乐，给天*朝*上供。
以及最重要的买SSH，买VPN，买域名，买空间。
买一切让各位觉得个人的东西，
哪知这一切都是浮云啊浮云。。
努力学习，与时俱进，干啥事都得夹着尾巴做人。
为啥，因为Big Brother is watching you&#8230;
咱还是低调把。免得被跨 国，跨 省，跨 市。。。
唉，马勒戈壁的。
这就是我，一个天*朝*P民的心声。
唉，说了也没用，这是P民的xxx,***,~~~而决定的。
也许这仅仅是个开始。
也许以后的一切都会超出我们的想象。
但是我坚信，他们会回来的。
唉，P民们能自我安慰的只是那些话,
It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness, it was the epoch of belief, it was the epoch of incredulity, it was the season of Light, it was the season of Darkness, [...]]]></description>
			<content:encoded><![CDATA[<p>唉，这一天终于来了。</p>
<p>无语了。天朝的P民真惨，永远是被压迫的对象。干啥事，被的永远的我们P民。</p>
<p>在如此伟～～光～～正～～的社会里，我们能做什么。</p>
<p>埋头赚钱，吃喝玩乐，给天*朝*上供。</p>
<p>以及最重要的买SSH，买VPN，买域名，买空间。</p>
<p>买一切让各位觉得个人的东西，</p>
<p>哪知这一切都是浮云啊浮云。。</p>
<p>努力学习，与时俱进，干啥事都得夹着尾巴做人。</p>
<p>为啥，因为Big Brother is watching you&#8230;</p>
<p>咱还是低调把。免得被跨 国，跨 省，跨 市。。。</p>
<p>唉，马勒戈壁的。</p>
<p>这就是我，一个天*朝*P民的心声。</p>
<p>唉，说了也没用，这是P民的xxx,***,~~~而决定的。</p>
<p>也许这仅仅是个开始。</p>
<p>也许以后的一切都会超出我们的想象。</p>
<p>但是我坚信，他们会回来的。</p>
<p>唉，P民们能自我安慰的只是那些话,</p>
<p>It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness, it was the epoch of belief, it was the epoch of incredulity, it was the season of Light, it was the season of Darkness, it was the spring of hope, it was the winter of despair, we had everything before us, we had nothing before us, we were all going direct to Heaven, we were all going direct the other way&#8211;in short, the period was so far like the present period, that some of its noisiest authorities insisted on its being received, for good or for evil, in the superlative degree of comparison only. </p>
<p>PS:以下是结果，诸位可当成是天*朝*的神迹来瞻仰。</p>
<p><a href="http://suflanker.com/pic/Theywillcomeback_8B38/google_china.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="481" alt="google_china" src="http://suflanker.com/pic/Theywillcomeback_8B38/google_china_thumb.png" width="464" border="0" /></a></p>
<p><a href="http://suflanker.com/pic/Theywillcomeback_8B38/google_china1.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="259" alt="google_china1" src="http://suflanker.com/pic/Theywillcomeback_8B38/google_china1_thumb.png" width="464" border="0" /></a></p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=104&type=feed" alt="" /><h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>2009-08-30 -- <a href="http://blog.suflanker.com/2009/08/what-a-catastrophe/" title="真TM悲剧">真TM悲剧</a> (0)</li><li>2008-09-22 -- <a href="http://blog.suflanker.com/2008/09/bs-js/" title="BS JS">BS JS</a> (0)</li><li>2008-08-18 -- <a href="http://blog.suflanker.com/2008/08/%e9%83%81%e9%97%b7/" title="郁闷">郁闷</a> (1)</li><li>2010-03-13 -- <a href="http://blog.suflanker.com/2010/03/my-nas-is-coming/" title="YY NAS Or 动物机 Or HTPC">YY NAS Or 动物机 Or HTPC</a> (0)</li><li>2010-01-28 -- <a href="http://blog.suflanker.com/2010/01/%e5%ae%89%e9%80%b8%e7%9a%84treo-pro/" title="安逸的Treo Pro">安逸的Treo Pro</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2010/03/they-will-be-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Need A PDF Reader</title>
		<link>http://blog.suflanker.com/2009/08/i-need-a-pdf-reader/</link>
		<comments>http://blog.suflanker.com/2009/08/i-need-a-pdf-reader/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 22:30:43 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[eReader]]></category>
		<category><![CDATA[PDF Reader]]></category>

		<guid isPermaLink="false">http://blog.suflanker.com/2009/08/i-need-a-pdf-reader/</guid>
		<description><![CDATA[引一段Bono的老歌&#160; I have run, I have crawled     I have scaled these city walls     These city walls     Only to be with you     &#160; But I still haven&#8217;t found     What I&#8217;m looking for     [...]]]></description>
			<content:encoded><![CDATA[<p>引一段Bono的老歌&#160; <br />I have run, I have crawled     <br />I have scaled these city walls     <br />These city walls     <br />Only to be with you     <br />&#160; <br />But I still haven&#8217;t found     <br />What I&#8217;m looking for     <br />But I still haven&#8217;t found     <br />What I&#8217;m looking for</p>
<p>&#160;&#160;&#160; 话说科技正在飞速进步，新技术、新玩意层出不穷。就拿手持设备来说，山寨的、非山寨的厂商更新换代极为频繁。几乎每天在Engadget里都能看到新设备的身影。照这样来说，找个看书的东西貌似应该很简单吧？貌似是的，不过事实上，这鸟东西还真难找。Hi-PDA里提到PDF解决方案就是两种，一种是直接上Tablet，还有是打印机。。。</p>
<p>&#160;&#160;&#160; 先说说我的需求吧，我想找个看PDF的设备，要求不算太高，不用太大,我属于能忍受的那种，七寸就行，五寸也能凑合,太大了拿着不方便；分辨率也不用太高，用不着全屏显示一页，适合宽度能看就行了；速度别太慢，扫描的非扫描的PDF都得能看；还得有注释功能，但也不需太复杂，能画个线拉个框就OK了。哦，还有，别太贵。。。</p>
<p>&#160;&#160;&#160; 之前我一直拿着EXEC看书，因为Adobe Reader LE和Foxit都有Reflow，所以一般的非扫描版PDF看着都还凑合。扫描版的就根本没法看了，要是WM机屏幕到5寸，分辨率到800×600看PDF还是相当不错的，可惜这种机子都是天价，受不了了。</p>
<p>&#160;&#160;&#160; 结果就是那么神奇，这东西确实很难找。勉强符合要求的只有智器的Q7/Q5，还是个系统不完善的主，要真买估计能把人折腾死。所以只能放宽点筛选范围了。</p>
<p>&#160;&#160; 好了，现在有这些供选方案：</p>
<p>&#160;&#160;&#160;&#160; MID类有Nokia N810/N800，智器 Q5/Q7,</p>
<p>&#160;&#160;&#160;&#160; Tablet有：HP TC1100,IBM X41T，Mothion M1400。华硕T91？(这个还没上市)</p>
<p>&#160;&#160;&#160;&#160; Elink的机子还不错，像<a href="http://www.hi-pda.com/forum/misc.php?action=viewratings&amp;tid=470941&amp;pid=5657339" name="pid5657339"></a>eslick这种看PDF还是不错的，就是没法做注释，能手写注释的iLiad这种神物价格太变态了，还是算了吧。同样的还有UMPC，太贵了，不是我这种没米人享用的。</p>
<p>&#160;&#160;&#160;&#160; Nokia N810/N800屏幕是4.13寸的，有点小，估计看PDF很累，不过见过实物，周末去电脑市场看看再下结论。在网上搜了半天PDF注释也没搜到啥，不知道可不可行，不可行的话只能Pass了。</p>
<p>&#160;&#160;&#160; 智器 Q5/Q7就是内存小了一点，而且也偏寨了点，其余还好，价格我也能接受。不过不知道实际速度咋样，反正网上介绍就是一个字-慢。。。还是去看看实物吧。</p>
<p>&#160;&#160;&#160; HP TC1100,IBM X41T和Mothion M1400都是平板，相对MID来说贵了，买二手的还超预算了。。。不过功能方面倒是挺满足，就是发热稍微大一点。还是待考虑吧，如果拿了奖学金不用交学费就入一个。</p>
<p>&#160;&#160;&#160; OK，接下来我要干这几件事：看N810和Q5/Q7的实物，顺便等开学奖学金名单出炉。</p>
<p>&#160;&#160;&#160; 我的PDF Reader啊，你快点来吧。</p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=83&type=feed" alt="" /><h2  class="related_post_title">随机日志</h2><ul class="related_post"><li>2010-03-13 -- <a href="http://blog.suflanker.com/2010/03/my-nas-is-coming/" title="YY NAS Or 动物机 Or HTPC">YY NAS Or 动物机 Or HTPC</a> (0)</li><li>2009-08-09 -- <a href="http://blog.suflanker.com/2009/08/cycling-in-2009-08-08/" title="骑车 2009-08-08">骑车 2009-08-08</a> (1)</li><li>2008-11-10 -- <a href="http://blog.suflanker.com/2008/11/yahoo-pipes/" title="Yahoo Pipes">Yahoo Pipes</a> (0)</li><li>2008-09-04 -- <a href="http://blog.suflanker.com/2008/09/google-chrome-%e8%af%95%e7%94%a8/" title="Google Chrome 试用">Google Chrome 试用</a> (0)</li><li>2008-08-18 -- <a href="http://blog.suflanker.com/2008/08/%e9%83%81%e9%97%b7/" title="郁闷">郁闷</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2009/08/i-need-a-pdf-reader/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>纠结的Atom EXEC</title>
		<link>http://blog.suflanker.com/2009/07/frustrating-atom-exec/</link>
		<comments>http://blog.suflanker.com/2009/07/frustrating-atom-exec/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 12:45:48 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[WM]]></category>
		<category><![CDATA[手机]]></category>

		<guid isPermaLink="false">http://blog.suflanker.com/2009/07/%e7%ba%a0%e7%bb%93%e7%9a%84atom-exec/</guid>
		<description><![CDATA[&#160; 入手Atom EXEC已达四个月之久，来扯扯自己的感受。
&#160; 我也算一个玩WM的老鸟了。大二入手Compaq iPAQ 3660,大三下半年屏幕被我压坏后换成了HP2210,然后一直折腾至今。买了EXEC之后也没多大折腾的动力，平常用的也都是一些老软件:HaaliReader,Mdict,Supermemo,Listpro,Repligo…
&#160; 作为一个PDA，EXEC还是蛮爽的，530的cpu+64m的内存足以完美应付曰常应用,电子书有HaaliReader+Adobe Reader LE，词典有伟大的Mdict，影音有TCPMP+MortPlayer，便签有PhatNotes和PhatPad，Office有SoftMaker，自带的PIM已经足够了，再加上Adarian Money记个日常开支，呵呵，生活真美好。
&#160; 不过作为一个电话EXEC实在是不够格，没有全键盘，操作不够人性化，而且声音小＋信号差决定了你漏接电话那是家常便饭。用上WM6.5之后,64M的内存那就更加吃紧了。PPC发展那么多年，内存的长进是最慢的，直到现在64M内存的机子比比皆是，要知道我的第一个PDA Compaq iPAQ 3660就已经有64M内存了。EXEC待机内存只有20M左右，还好没有GPS，要不然运行个凯立德之类的实在是撑不住。
&#160; OK，从现在开始YY下一个继承者，我的要求不算太高，电话功能完美（至少得信号好，通话质量好），然后全键盘+大内存+GPS就行。至于系统嘛，对Symbian无爱，Android，Palm或是Blackberry都行，WM也可以再考虑一下。当然，一切的前提是口袋里有米。。。
随机日志2008-09-04 -- 无语。。 (1)2008-09-14 -- 买车记 (0)2008-09-13 -- OGC SOA for GIS (1)2008-10-12 -- The Good Old Days (0)2009-07-11 -- 免费Audio Book推荐 &#8211; Free: The Future of a Radical Price (0)]]></description>
			<content:encoded><![CDATA[<p>&#160; 入手Atom EXEC已达四个月之久，来扯扯自己的感受。</p>
<p>&#160; 我也算一个玩WM的老鸟了。大二入手Compaq iPAQ 3660,大三下半年屏幕被我压坏后换成了HP2210,然后一直折腾至今。买了EXEC之后也没多大折腾的动力，平常用的也都是一些老软件:HaaliReader,Mdict,Supermemo,Listpro,Repligo…</p>
<p>&#160; 作为一个PDA，EXEC还是蛮爽的，530的cpu+64m的内存足以完美应付曰常应用,电子书有HaaliReader+Adobe Reader LE，词典有伟大的Mdict，影音有TCPMP+MortPlayer，便签有PhatNotes和PhatPad，Office有SoftMaker，自带的PIM已经足够了，再加上Adarian Money记个日常开支，呵呵，生活真美好。</p>
<p>&#160; 不过作为一个电话EXEC实在是不够格，没有全键盘，操作不够人性化，而且声音小＋信号差决定了你漏接电话那是家常便饭。用上WM6.5之后,64M的内存那就更加吃紧了。PPC发展那么多年，内存的长进是最慢的，直到现在64M内存的机子比比皆是，要知道我的第一个PDA Compaq iPAQ 3660就已经有64M内存了。EXEC待机内存只有20M左右，还好没有GPS，要不然运行个凯立德之类的实在是撑不住。</p>
<p>&#160; OK，从现在开始YY下一个继承者，我的要求不算太高，电话功能完美（至少得信号好，通话质量好），然后全键盘+大内存+GPS就行。至于系统嘛，对Symbian无爱，Android，Palm或是Blackberry都行，WM也可以再考虑一下。当然，一切的前提是口袋里有米。。。</p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=74&type=feed" alt="" /><h2  class="related_post_title">随机日志</h2><ul class="related_post"><li>2009-06-05 -- <a href="http://blog.suflanker.com/2009/06/mediawiki-%e6%b5%ae%e5%8a%a8%e7%9b%ae%e5%bd%95/" title="MediaWiki 浮动目录">MediaWiki 浮动目录</a> (0)</li><li>2008-10-13 -- <a href="http://blog.suflanker.com/2008/10/%e6%8a%bd%e9%a3%8e%e7%9a%84feedsky/" title="抽风的FeedSky">抽风的FeedSky</a> (0)</li><li>2008-09-14 -- <a href="http://blog.suflanker.com/2008/09/11-14-fm-2009/" title="11.14 FM 2009">11.14 FM 2009</a> (4)</li><li>2008-08-20 -- <a href="http://blog.suflanker.com/2008/08/%e8%88%8d%e7%93%a6%e5%9b%9e%e6%9d%a5%e4%ba%86%ef%bc%8c%e5%90%8e%e5%8d%ab%e5%91%a2%ef%bc%9f/" title="舍瓦回来了，后卫呢？">舍瓦回来了，后卫呢？</a> (0)</li><li>2009-05-20 -- <a href="http://blog.suflanker.com/2009/05/google-reader-tweak/" title="Google Reader Tweak">Google Reader Tweak</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2009/07/frustrating-atom-exec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>免费Audio Book推荐 &#8211; Free: The Future of a Radical Price</title>
		<link>http://blog.suflanker.com/2009/07/free-the-future-of-a-radical-price-audio-book/</link>
		<comments>http://blog.suflanker.com/2009/07/free-the-future-of-a-radical-price-audio-book/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 14:06:40 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[Audio Book]]></category>
		<category><![CDATA[Chris Anderson]]></category>
		<category><![CDATA[Free: The Future of a Radical Price]]></category>

		<guid isPermaLink="false">http://blog.suflanker.com/2009/07/%e5%85%8d%e8%b4%b9audio-book%e6%8e%a8%e8%8d%90-free-the-future-of-a-radical-price/</guid>
		<description><![CDATA[&#160; 今天推荐一下一本免费的Audio Book,书名叫Free: The Future of a Radical Price。这是作者Chris Anderson的新书，于7月七日出版。他上一部作品便是大名鼎鼎的Long Tail（长尾理论，译言上有全文中译）。
&#160; 翻译一段关于这本书的介绍，来自于Amazon的Product Description，翻译的不咋样，水平有限… ：）
&#160; 当技术的进步使得许多新生事物或多或少没什么意义时，会怎样？如果这些被创造出来的事物是免费地提供给消费者的，那又有会怎样？在他的开创性的新书里，“长尾”一书的作者Chris Anderson设想了一个勇敢的新的世界，在这个新世界里，旧式经济必然遭到日益泛滥的免费商品的破坏，诸如-免费报纸， 免费DVD， 免费T恤，手免费机，甚至是免费的假日航班。他解释了为什么这已成为可能 &#8211; 为什么新技术，特别是Internet技术，甚至在10年之前就已经造成了造成生产和销售成本在许多部门暴跌至一让人无法想象的程度。他向我们展示了这样的一个景象：网络世界提供的灵活性如何使生产者以比往任一时候都更富创造性地来进行贸易、提供免费的项目，为了他们在别处能得到利润或是收获利润。他明确指出了在那个自由世界中的赢家和输家。他证明，在越来越多的事物被免费提供的同时，我们是否决定利用这些事物将取决于两种远比金钱更有价值的资源：这些事物的普遍声誉以及我们能花在这些事物身上的可用时间。他认为在未来，当我们谈起&#8217;货币经济&#8217;时，我们会将&#8217;声誉经济&#8217;和&#8217;时间经济&#8217;相提并论，而且那时世界将永远不会和现在一样了。
&#160; 我也是刚下完了开始听，还无法对此书加以评断，不过此书如同他的Long Tail一样，同样很有新意。免费的经济，呵呵，确实有意思。不过我们也确实需要这样来思考，免费并不意味着无法获益，在这个网络世界，免费而优质的服务无疑能吸引众多用户，对于一个企业来说如何从这些用户中获取收益则是重中之重。广告是一个途径，但是我们还得去探寻另外的一些盈利模式来让其利益最大化。这不是一件容易的事，即使像Google这样的巨头，它旗下的youtube发展势头虽然很好，很受欢迎，但是现在Google还是无法让youtube盈利。
&#160; 附：此Audio Book下载地址：Free: The Future of a Radical Price，来自wired.com,Chris Anderson便是Wired magazine的主编。
&#160; 顺便赞一下wired.com，里面有相当多有意思的文章。比如说六月22号的这篇：Great Wall of Facebook: The Social Network&#8217;s Plan to Dominate the Internet — and Keep Google Out。
&#160;
随机日志2009-10-22 -- 莱昂纳多有希望了？ (0)2009-05-07 -- 极品拖把 (0)2009-03-22 [...]]]></description>
			<content:encoded><![CDATA[<p>&#160; 今天推荐一下一本免费的Audio Book,书名叫<cite><a href="https://www.amazon.com/Free-Future-Radical-Chris-Anderson/dp/1401322905">Free: The Future of a Radical Price</a></cite>。这是作者Chris Anderson的新书，于7月七日出版。他上一部作品便是大名鼎鼎的<strong><a href="https://www.amazon.com/Long-Tail-Revised-Updated-Business/dp/1401309666/ref=bxgy_cc_b_text_b">Long Tail</a></strong>（长尾理论，<a href="http://www.yeeyan.com/articles/view/thunder/51">译言</a>上有全文中译）。</p>
<p>&#160; 翻译一段关于这本书的介绍，来自于Amazon的Product Description，翻译的不咋样，水平有限… ：）</p>
<p>&#160; 当技术的进步使得许多新生事物或多或少没什么意义时，会怎样？如果这些被创造出来的事物是免费地提供给消费者的，那又有会怎样？在他的开创性的新书里，“长尾”一书的作者Chris Anderson设想了一个勇敢的新的世界，在这个新世界里，旧式经济必然遭到日益泛滥的免费商品的破坏，诸如-免费报纸， 免费DVD， 免费T恤，手免费机，甚至是免费的假日航班。他解释了为什么这已成为可能 &#8211; 为什么新技术，特别是Internet技术，甚至在10年之前就已经造成了造成生产和销售成本在许多部门暴跌至一让人无法想象的程度。他向我们展示了这样的一个景象：网络世界提供的灵活性如何使生产者以比往任一时候都更富创造性地来进行贸易、提供免费的项目，为了他们在别处能得到利润或是收获利润。他明确指出了在那个自由世界中的赢家和输家。他证明，在越来越多的事物被免费提供的同时，我们是否决定利用这些事物将取决于两种远比金钱更有价值的资源：这些事物的普遍声誉以及我们能花在这些事物身上的可用时间。他认为在未来，当我们谈起&#8217;货币经济&#8217;时，我们会将&#8217;声誉经济&#8217;和&#8217;时间经济&#8217;相提并论，而且那时世界将永远不会和现在一样了。</p>
<p>&#160; 我也是刚下完了开始听，还无法对此书加以评断，不过此书如同他的Long Tail一样，同样很有新意。免费的经济，呵呵，确实有意思。不过我们也确实需要这样来思考，免费并不意味着无法获益，在这个网络世界，免费而优质的服务无疑能吸引众多用户，对于一个企业来说如何从这些用户中获取收益则是重中之重。广告是一个途径，但是我们还得去探寻另外的一些盈利模式来让其利益最大化。这不是一件容易的事，即使像Google这样的巨头，它旗下的youtube发展势头虽然很好，很受欢迎，但是现在Google还是无法让youtube盈利。</p>
<p>&#160; 附：此Audio Book下载地址：<cite><a href="http://www.wired.com/images/multimedia/free/FREE_Audiobook_unabridged.zip">Free: The Future of a Radical Price</a>，来自wired.com,Chris Anderson便是Wired magazine的主编。</cite></p>
<p><cite>&#160; 顺便赞一下wired.com，里面有相当多有意思的文章。比如说六月22号的这篇：<a title="http://www.wired.com/techbiz/it/magazine/17-07/ff_facebookwall" href="http://www.wired.com/techbiz/it/magazine/17-07/ff_facebookwall">Great Wall of Facebook: The Social Network&#8217;s Plan to Dominate the Internet — and Keep Google Out</a>。</cite></p>
<p><cite>&#160;</cite></p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=73&type=feed" alt="" /><h2  class="related_post_title">随机日志</h2><ul class="related_post"><li>2009-03-22 -- <a href="http://blog.suflanker.com/2009/03/google-groups-via-https/" title="Google Groups Via Https">Google Groups Via Https</a> (0)</li><li>2010-03-23 -- <a href="http://blog.suflanker.com/2010/03/they-will-be-back/" title="They will be back">They will be back</a> (0)</li><li>2008-08-23 -- <a href="http://blog.suflanker.com/2008/08/google-reader%e5%bf%ab%e6%8d%b7%e9%94%ae/" title="Google Reader快捷键">Google Reader快捷键</a> (0)</li><li>2008-09-04 -- <a href="http://blog.suflanker.com/2008/09/chrome-%e7%9a%84%e5%8d%95%e8%bf%9b%e7%a8%8b%e6%a8%a1%e5%bc%8f/" title="Chrome 的单进程模式">Chrome 的单进程模式</a> (0)</li><li>2008-09-14 -- <a href="http://blog.suflanker.com/2008/09/%e4%b8%ad%e7%a7%8b%e7%9c%8b%e7%90%83/" title="中秋看球">中秋看球</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2009/07/free-the-future-of-a-radical-price-audio-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Goodbye Blogbus</title>
		<link>http://blog.suflanker.com/2009/07/goodbye-blogbus/</link>
		<comments>http://blog.suflanker.com/2009/07/goodbye-blogbus/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 09:02:08 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[搬家]]></category>

		<guid isPermaLink="false">http://www.suflanker.com/wordpress/?p=1</guid>
		<description><![CDATA[&#160; 终于受不了Blogbus的龟速了。于是从Godaddy那搞了个域名，从wpchina那买了个空间，600M的容量，每月6G流量，足够我折腾了。 
&#160; 建站没什么难的，WordPress曾经在2.5版的时候在本地几经玩过一段时间，也算很熟悉了。就是子域名搞的我很郁闷，我需要俩子域名，一个blog,一个wiki，分别对应WordPress和mediawiki。折腾了半天生成的子域名死活还是无法解析，应该是域名的CName的问题，明天再看。(0703：现在一切OK，就是Godaddy CName解析的原因，太慢了) 
&#160; 还有一件郁闷的事就是Blogbus的导出始终下不下来，那速度简直不能用龟速来形容，13B/s，oh my。
&#160; 
这应该是最后一次搬家了。也没地方可去了，呵呵。 
相关日志2010-07-29 -- 终于搬家完毕。。 (0)]]></description>
			<content:encoded><![CDATA[<p>&nbsp; 终于受不了Blogbus的龟速了。于是从Godaddy那搞了个域名，从<a href="http://wpchina.org">wpchina</a>那买了个空间，600M的容量，每月6G流量，足够我折腾了。 </p>
<p>&nbsp; 建站没什么难的，WordPress曾经在2.5版的时候在本地几经玩过一段时间，也算很熟悉了。就是子域名搞的我很郁闷，我需要俩子域名，一个blog,一个wiki，分别对应WordPress和mediawiki。折腾了半天生成的子域名死活还是无法解析，应该是域名的CName的问题，明天再看。(0703：现在一切OK，就是Godaddy CName解析的原因，太慢了) </p>
<p>&nbsp; 还有一件郁闷的事就是Blogbus的导出始终下不下来，那速度简直不能用龟速来形容，13B/s，oh my。</p>
<p>&nbsp;<img class="size-full wp-image-4 alignnone" title="blogbus龟速导出" height="87" alt="blogbus龟速导出" src="http://www.suflanker.com/wordpress/wp-content/uploads/2009/07/blogbus龟速导出.png" width="429"> </p>
<p>这应该是最后一次搬家了。也没地方可去了，呵呵。 </p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=1&type=feed" alt="" /><h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>2010-07-29 -- <a href="http://blog.suflanker.com/2010/07/transfer-complete/" title="终于搬家完毕。。">终于搬家完毕。。</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2009/07/goodbye-blogbus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>伟大的ＧＦＷ</title>
		<link>http://blog.suflanker.com/2009/06/%e4%bc%9f%e5%a4%a7%e7%9a%84%ef%bd%87%ef%bd%86%ef%bd%97/</link>
		<comments>http://blog.suflanker.com/2009/06/%e4%bc%9f%e5%a4%a7%e7%9a%84%ef%bd%87%ef%bd%86%ef%bd%97/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 15:00:00 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[Fuck GFW]]></category>
		<category><![CDATA[GFW]]></category>

		<guid isPermaLink="false">http://www.suflanker.com/2009/06/02/%e4%bc%9f%e5%a4%a7%e7%9a%84%ef%bd%87%ef%bd%86%ef%bd%97/</guid>
		<description><![CDATA[在伟大的中 国 局域网里呆久了难免会有这样那样的抱怨:
&#160;&#160;&#160;&#160;&#160; MD今天这代理又没用了。
&#160;&#160;&#160;&#160;&#160; 带Tor真TM慢，真TM不爽。
&#160;&#160;&#160;&#160;&#160; MD Gladder真好用
&#160;&#160;&#160;&#160;&#160; MD我都堕落到用ＺＩ ＹＯＵ ＭＥＮＧ的地步了&#8230;
但是在今天，在这伟大而庄重的日子，我还是要不由自主地，情不自禁地，深情地说一声：
ＦＵＣＫ ＹＯＵ！ ＧＦＷ
随机日志2008-10-12 -- The Good Old Days (0)2009-01-09 -- 唉，又到考研时 (0)2010-03-14 -- 删除MediaWiki类别页面中的字母索引 (0)2010-03-13 -- YY NAS Or 动物机 Or HTPC (0)2010-03-23 -- They will be back (0)]]></description>
			<content:encoded><![CDATA[<p>在伟大的中 国 局域网里呆久了难免会有这样那样的抱怨:</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MD今天这代理又没用了。</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 带Tor真TM慢，真TM不爽。</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MD Gladder真好用</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MD我都堕落到用ＺＩ ＹＯＵ ＭＥＮＧ的地步了&hellip;</p>
<p>但是在今天，在这伟大而庄重的日子，我还是要不由自主地，情不自禁地，深情地说一声：</p>
<p>ＦＵＣＫ ＹＯＵ！ ＧＦＷ</p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=66&type=feed" alt="" /><h2  class="related_post_title">随机日志</h2><ul class="related_post"><li>2008-08-26 -- <a href="http://blog.suflanker.com/2008/08/%e8%bf%99%e5%8f%ab%e5%95%a5%e4%ba%8b%e5%98%9b/" title="这叫啥事嘛">这叫啥事嘛</a> (0)</li><li>2009-06-02 -- <a href="http://blog.suflanker.com/2009/06/mediawiki%e7%9a%84%e5%86%85%e5%ae%b9%e9%9a%90%e8%97%8f/" title="MediaWiki的内容隐藏">MediaWiki的内容隐藏</a> (0)</li><li>2008-09-14 -- <a href="http://blog.suflanker.com/2008/09/%e4%b9%b0%e8%bd%a6%e8%ae%b0/" title="买车记">买车记</a> (0)</li><li>2008-02-21 -- <a href="http://blog.suflanker.com/2008/02/%e5%b9%b3%e4%ba%86/" title="平了">平了</a> (0)</li><li>2009-08-23 -- <a href="http://blog.suflanker.com/2009/08/get-a-ssh-account/" title="终于有SSH了">终于有SSH了</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2009/06/%e4%bc%9f%e5%a4%a7%e7%9a%84%ef%bd%87%ef%bd%86%ef%bd%97/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>更新</title>
		<link>http://blog.suflanker.com/2008/12/%e6%9b%b4%e6%96%b0-2/</link>
		<comments>http://blog.suflanker.com/2008/12/%e6%9b%b4%e6%96%b0-2/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 01:34:51 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>

		<guid isPermaLink="false">http://www.suflanker.com/2008/12/05/%e6%9b%b4%e6%96%b0-2/</guid>
		<description><![CDATA[忙了一段时间，ms都好久没扯了。唉，也该更新了。
今天一上Google Reader，发现又换新皮肤了。看上去不错。

不过Better Greader的Minimalistic皮肤是不能用了，等更新吧

 
&#160;
顺便推荐个全景图拼接的软件，Image Composite Editor
试了一下还不错，反正比佳能自带的好多了

&#160;
相关日志2010-03-23 -- They will be back (0)2010-03-13 -- YY NAS Or 动物机 Or HTPC (0)2010-01-28 -- 安逸的Treo Pro (0)2009-11-01 -- Job Digging (1)2009-10-09 -- GTD啊GTD (0)]]></description>
			<content:encoded><![CDATA[<p>忙了一段时间，ms都好久没扯了。唉，也该更新了。</p>
<p>今天一上Google Reader，发现又换新皮肤了。看上去不错。</p>
<ul>
<li>不过Better Greader的Minimalistic皮肤是不能用了，等更新吧</li>
</ul>
<p><a href="http://suflanker.com/pic/blogbus/20081205093443.png"><img style="border-width: 0px" src="http://suflanker.com/pic/blogbus/20081205093444.png" border="0" alt="未命名" width="570" height="374" /></a> </p>
<p>&nbsp;</p>
<p>顺便推荐个全景图拼接的软件，<a href="http://research.microsoft.com/IVM/ICE/">Image Composite Editor</a></p>
<p>试了一下还不错，反正比佳能自带的好多了</p>
<p><a href="http://suflanker.com/pic/blogbus/20081205093448.png"><img style="border-width: 0px" src="http://suflanker.com/pic/blogbus/20081205093451.png" border="0" alt="IMG_0236_stitch" width="564" height="171" /></a></p>
<p>&nbsp;</p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=56&type=feed" alt="" /><h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>2010-03-23 -- <a href="http://blog.suflanker.com/2010/03/they-will-be-back/" title="They will be back">They will be back</a> (0)</li><li>2010-03-13 -- <a href="http://blog.suflanker.com/2010/03/my-nas-is-coming/" title="YY NAS Or 动物机 Or HTPC">YY NAS Or 动物机 Or HTPC</a> (0)</li><li>2010-01-28 -- <a href="http://blog.suflanker.com/2010/01/%e5%ae%89%e9%80%b8%e7%9a%84treo-pro/" title="安逸的Treo Pro">安逸的Treo Pro</a> (0)</li><li>2009-11-01 -- <a href="http://blog.suflanker.com/2009/11/job-digging/" title="Job Digging">Job Digging</a> (1)</li><li>2009-10-09 -- <a href="http://blog.suflanker.com/2009/10/think-in-gtd/" title="GTD啊GTD">GTD啊GTD</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2008/12/%e6%9b%b4%e6%96%b0-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>抽风的FeedSky</title>
		<link>http://blog.suflanker.com/2008/10/%e6%8a%bd%e9%a3%8e%e7%9a%84feedsky/</link>
		<comments>http://blog.suflanker.com/2008/10/%e6%8a%bd%e9%a3%8e%e7%9a%84feedsky/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 01:00:41 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[FeedSky]]></category>
		<category><![CDATA[郁闷]]></category>

		<guid isPermaLink="false">http://www.suflanker.com/2008/10/13/%e6%8a%bd%e9%a3%8e%e7%9a%84feedsky/</guid>
		<description><![CDATA[昨晚上扯了一篇日志，然后今天早上想起来好久没上FeedSky了，赶紧上去看看订阅了啥的增加了没。然后就有了：
&#160;

源地址 : 
http://suflanker.blogbus.com/index.rdf
失败&#160;:&#160; &#160;&#160;&#160;&#160;2008-10-13 08:34:26
&#160;&#160;&#160;&#160;[705]&#160;:&#160;保存失败 
失败&#160;:&#160; &#160;&#160;&#160;&#160;2008-10-13 08:18:54
&#160;&#160;&#160;&#160;[705]&#160;:&#160;保存失败 
失败&#160;:&#160; &#160;&#160;&#160;&#160;2008-10-13 08:12:11
&#160;&#160;&#160;&#160;[705]&#160;:&#160;保存失败 
正常&#160;:&#160; &#160;&#160;&#160;&#160;2008-10-13 07:40:30
&#160;&#160;&#160;&#160;[700]&#160;:&#160;客户端通知未更新 
失败&#160;:&#160; &#160;&#160;&#160;&#160;2008-10-13 03:41:37
&#160;&#160;&#160;&#160;[705]&#160;:&#160;保存失败 
失败&#160;:&#160; &#160;&#160;&#160;&#160;2008-10-13 03:26:03
&#160;&#160;&#160;&#160;[705]&#160;:&#160;保存失败 
失败&#160;:&#160; &#160;&#160;&#160;&#160;2008-10-13 02:26:51
&#160;&#160;&#160;&#160;[705]&#160;:&#160;保存失败 
失败&#160;:&#160; &#160;&#160;&#160;&#160;2008-10-13 00:29:01
&#160;&#160;&#160;&#160;[705]&#160;:&#160;保存失败 
失败&#160;:&#160; &#160;&#160;&#160;&#160;2008-10-12 23:49:16
&#160;&#160;&#160;&#160;[705]&#160;:&#160;保存失败 
失败&#160;:&#160; &#160;&#160;&#160;&#160;2008-10-12 23:18:39
&#160;&#160;&#160;&#160;[705]&#160;:&#160;保存失败 
失败&#160;:&#160; &#160;&#160;&#160;&#160;2008-10-12 22:40:40
&#160;&#160;&#160;&#160;[705]&#160;:&#160;保存失败 
&#160;&#160;&#160;&#160; faint，Google一搜才知道FeedSky出这种事不是一天两天了，奥
运 那段时间就有过。不过那是非常时期可以理解，可现在呢？唉，有墙在，FeedBurner是用不成了。FeedSky啊，争气点吧。
&#160;&#160;&#160; 上官方论坛一看果然有同病相怜的&#160;&#160; 继续faint&#8230; 
源地址 : http://www.xtit.net/feed.php失败 : 2008-10-13 10:35:37 [705]
: 保存失败失败 : 2008-10-13 08:16:43 [705] : 保存失败失败 : [...]]]></description>
			<content:encoded><![CDATA[<p>昨晚上扯了一篇日志，然后今天早上想起来好久没上FeedSky了，赶紧上去看看订阅了啥的增加了没。然后就有了：</p>
<p>&nbsp;</p>
<div id="e2dea497-1317-4143-93b7-cfb4e9504f95" class="postBody" style="border-width: 0px; margin: 4px 0px 0px; padding: 0px">
<dt style="background-color: #cfcfcf"><strong>源地址 : </p>
<p>http://suflanker.blogbus.com/index.rdf</strong></dt>
<dt><strong style="color: #b84646">失败&nbsp;:&nbsp;</strong> &nbsp;&nbsp;&nbsp;&nbsp;2008-10-13 08:34:26<br />
&nbsp;&nbsp;&nbsp;&nbsp;[705]&nbsp;:&nbsp;保存失败 </dt>
<dt><strong style="color: #b84646">失败&nbsp;:&nbsp;</strong> &nbsp;&nbsp;&nbsp;&nbsp;2008-10-13 08:18:54<br />
&nbsp;&nbsp;&nbsp;&nbsp;[705]&nbsp;:&nbsp;保存失败 </dt>
<dt><strong style="color: #b84646">失败&nbsp;:&nbsp;</strong> &nbsp;&nbsp;&nbsp;&nbsp;2008-10-13 08:12:11<br />
&nbsp;&nbsp;&nbsp;&nbsp;[705]&nbsp;:&nbsp;保存失败 </dt>
<dt><strong style="color: #008800">正常&nbsp;:&nbsp;</strong> &nbsp;&nbsp;&nbsp;&nbsp;2008-10-13 07:40:30<br />
&nbsp;&nbsp;&nbsp;&nbsp;[700]&nbsp;:&nbsp;客户端通知未更新 </dt>
<dt><strong style="color: #b84646">失败&nbsp;:&nbsp;</strong> &nbsp;&nbsp;&nbsp;&nbsp;2008-10-13 03:41:37<br />
&nbsp;&nbsp;&nbsp;&nbsp;[705]&nbsp;:&nbsp;保存失败 </dt>
<dt><strong style="color: #b84646">失败&nbsp;:&nbsp;</strong> &nbsp;&nbsp;&nbsp;&nbsp;2008-10-13 03:26:03<br />
&nbsp;&nbsp;&nbsp;&nbsp;[705]&nbsp;:&nbsp;保存失败 </dt>
<dt><strong style="color: #b84646">失败&nbsp;:&nbsp;</strong> &nbsp;&nbsp;&nbsp;&nbsp;2008-10-13 02:26:51<br />
&nbsp;&nbsp;&nbsp;&nbsp;[705]&nbsp;:&nbsp;保存失败 </dt>
<dt><strong style="color: #b84646">失败&nbsp;:&nbsp;</strong> &nbsp;&nbsp;&nbsp;&nbsp;2008-10-13 00:29:01<br />
&nbsp;&nbsp;&nbsp;&nbsp;[705]&nbsp;:&nbsp;保存失败 </dt>
<dt><strong style="color: #b84646">失败&nbsp;:&nbsp;</strong> &nbsp;&nbsp;&nbsp;&nbsp;2008-10-12 23:49:16<br />
&nbsp;&nbsp;&nbsp;&nbsp;[705]&nbsp;:&nbsp;保存失败 </dt>
<dt><strong style="color: #b84646">失败&nbsp;:&nbsp;</strong> &nbsp;&nbsp;&nbsp;&nbsp;2008-10-12 23:18:39<br />
&nbsp;&nbsp;&nbsp;&nbsp;[705]&nbsp;:&nbsp;保存失败 </dt>
<dt><strong style="color: #b84646">失败&nbsp;:&nbsp;</strong> &nbsp;&nbsp;&nbsp;&nbsp;2008-10-12 22:40:40<br />
&nbsp;&nbsp;&nbsp;&nbsp;[705]&nbsp;:&nbsp;保存失败 </dt>
<p>&nbsp;&nbsp;&nbsp;&nbsp; faint，Google一搜才知道FeedSky出这种事不是一天两天了，奥<br />
运 那段时间就有过。不过那是非常时期可以理解，可现在呢？唉，有墙在，FeedBurner是用不成了。FeedSky啊，争气点吧。</p>
<p>&nbsp;&nbsp;&nbsp; 上官方论坛一看果然有同病相怜的&nbsp;&nbsp; 继续faint&hellip; </p>
<p>源地址 : <a rel="nofollow" href="http://www.xtit.net/feed.php">http://www.xtit.net/feed.php</a><br />失败 : 2008-10-13 10:35:37 [705]<br />
: 保存失败<br />失败 : 2008-10-13 08:16:43 [705] : 保存失败<br />失败 : 2008-10-13 03:37:48<br />
[705] : 保存失败<br />失败 : 2008-10-13 03:36:17 [705] : 保存失败<br />失败 : 2008-10-13<br />
03:32:24 [705] : 保存失败<br />失败 : 2008-10-13 03:22:10 [705] : 保存失败<br />失败 :<br />
2008-10-13 03:20:34 [705] : 保存失败<br />失败 : 2008-10-13 02:59:58 [705] : 保存失败<br />失败<br />
: 2008-10-13 02:19:22 [705] : 保存失败<br />失败 : 2008-10-13 02:13:35 [705] :<br />
保存失败<br />失败 : 2008-10-13 02:01:51 [705] : 保存失败<br />失败 : 2008-10-13 00:23:47 [705]<br />
: 保存失败<br />失败 : 2008-10-13 00:17:56 [705] : 保存失败<br />失败 : 2008-10-12 23:57:56<br />
[705] : 保存失败<br />失败 : 2008-10-12 23:42:16 [705] : 保存失败<br />失败 : 2008-10-12<br />
23:36:53 [705] : 保存失败<br />失败 : 2008-10-12 23:27:23 [705] : 保存失败<br />失败 :<br />
2008-10-12 23:11:39 [705] : 保存失败<br />失败 : 2008-10-12 23:08:48 [705] : 保存失败<br />失败<br />
: 2008-10-12 22:49:01 [705] : 保存失败
</div>
<div id="e2dea497-1317-4143-93b7-cfb4e9504f95" class="postBody" style="border-width: 0px; margin: 4px 0px 0px; padding: 0px">&nbsp;</div>
<div id="e2dea497-1317-4143-93b7-cfb4e9504f95" class="postBody" style="border-width: 0px; margin: 4px 0px 0px; padding: 0px"></div>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=48&type=feed" alt="" /><h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>2010-03-23 -- <a href="http://blog.suflanker.com/2010/03/they-will-be-back/" title="They will be back">They will be back</a> (0)</li><li>2009-08-30 -- <a href="http://blog.suflanker.com/2009/08/what-a-catastrophe/" title="真TM悲剧">真TM悲剧</a> (0)</li><li>2009-04-26 -- <a href="http://blog.suflanker.com/2009/04/%e8%a2%ab%e7%9b%97/" title="被盗">被盗</a> (0)</li><li>2009-01-12 -- <a href="http://blog.suflanker.com/2009/01/%e8%af%9d%e8%af%b4/" title="话说&#8230;">话说&#8230;</a> (1)</li><li>2008-09-22 -- <a href="http://blog.suflanker.com/2008/09/bs-js/" title="BS JS">BS JS</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2008/10/%e6%8a%bd%e9%a3%8e%e7%9a%84feedsky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>又见鸟人</title>
		<link>http://blog.suflanker.com/2008/09/%e5%8f%88%e8%a7%81%e9%b8%9f%e4%ba%ba/</link>
		<comments>http://blog.suflanker.com/2008/09/%e5%8f%88%e8%a7%81%e9%b8%9f%e4%ba%ba/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 03:08:27 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[鸟人]]></category>

		<guid isPermaLink="false">http://www.suflanker.com/2008/09/27/%e5%8f%88%e8%a7%81%e9%b8%9f%e4%ba%ba/</guid>
		<description><![CDATA[&#160;&#160; 
这位来自瑞士的仁兄于昨天飞越英吉利海峡，花了13分钟，最高时速达125英里（差不多200公里每小时）。很快是不是？
来看看他的装备吧， 右边是介绍。
&#160;&#160;&#160; 
随便翻译一下
忘了说了，此鸟人名为 Yves Rossy，曾于今年5月份成功飞跃阿尔卑斯。牛吧
&#160;
1.降落伞，虽说是鸟人，但总不能变态到直接降落吧。
2. 控制:他用身体来控制方向，右手还有一个节流阀来控制引擎。
3.机翼，貌似应该叫鸟人之翼才对 ，碳纤维制成。
4.引擎 喷气式，烧的是煤油（太不环保了），可达112000转每分。
5.鸟人套装 ，防火透气，和 F1用的是一样的。
具体介绍,不来翻译了，累死了

&#160;
来张降落的美图
 
&#160;
&#160;YouTube视频



&#160;
图片差不多都来自这儿。还有更清晰版视频，
相关日志2010-03-23 -- They will be back (0)2010-03-13 -- YY NAS Or 动物机 Or HTPC (0)2010-01-28 -- 安逸的Treo Pro (0)2009-11-01 -- Job Digging (1)2009-10-09 -- GTD啊GTD (0)]]></description>
			<content:encoded><![CDATA[<p><img src="http://suflanker.com/pic/blogbus/12224854512.jpg" border="0" alt="" width="463" height="253" />&nbsp;&nbsp; </p>
<p>这位来自瑞士的仁兄于昨天飞越英吉利海峡，花了13分钟，最高时速达125英里（差不多200公里每小时）。很快是不是？</p>
<p>来看看他的装备吧， 右边是介绍。</p>
<p>&nbsp;<img src="http://suflanker.com/pic/blogbus/12224857670.jpg" border="0" alt="" width="322" height="253" />&nbsp;&nbsp; <img src="http://suflanker.com/pic/blogbus/12224861130.jpg" border="0" alt="" width="203" height="293" /></p>
<p>随便翻译一下</p>
<p>忘了说了，此鸟人名为 Yves Rossy，曾于今年5月份成功飞跃阿尔卑斯。牛吧</p>
<p>&nbsp;</p>
<p>1.降落伞，虽说是鸟人，但总不能变态到直接降落吧。</p>
<p>2. 控制:他用身体来控制方向，右手还有一个节流阀来控制引擎。</p>
<p>3.机翼，貌似应该叫鸟人之翼才对 ，碳纤维制成。</p>
<p>4.引擎 喷气式，烧的是煤油（太不环保了），可达112000转每分。</p>
<p>5.鸟人套装 ，防火透气，和 F1用的是一样的。</p>
<p>具体介绍,不来翻译了，累死了</p>
<p><img src="http://suflanker.com/pic/blogbus/12224865380.jpg" border="0" alt="" width="544" height="410" /></p>
<p>&nbsp;</p>
<p>来张降落的美图</p>
<p><img src="http://suflanker.com/pic/blogbus/12224854511.jpg" border="0" alt="" width="548" height="337" /> </p>
<p>&nbsp;</p>
<p>&nbsp;YouTube视频</p>
<div>
<object width="425" height="344" data="http://www.youtube.com/v/x-Dbbp1_FJc&amp;hl=zh_CN&amp;fs=1" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/x-Dbbp1_FJc&amp;hl=zh_CN&amp;fs=1" /></object>
</div>
<div>&nbsp;</div>
<div>图片差不多都来自<a href="http://www.dailymail.co.uk/sciencetech/article-1062649/Rocket-man-completes-man-jetpack-flight-Channel.html" target="_blank">这儿</a>。还有更清晰版视频，</div>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=45&type=feed" alt="" /><h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>2010-03-23 -- <a href="http://blog.suflanker.com/2010/03/they-will-be-back/" title="They will be back">They will be back</a> (0)</li><li>2010-03-13 -- <a href="http://blog.suflanker.com/2010/03/my-nas-is-coming/" title="YY NAS Or 动物机 Or HTPC">YY NAS Or 动物机 Or HTPC</a> (0)</li><li>2010-01-28 -- <a href="http://blog.suflanker.com/2010/01/%e5%ae%89%e9%80%b8%e7%9a%84treo-pro/" title="安逸的Treo Pro">安逸的Treo Pro</a> (0)</li><li>2009-11-01 -- <a href="http://blog.suflanker.com/2009/11/job-digging/" title="Job Digging">Job Digging</a> (1)</li><li>2009-10-09 -- <a href="http://blog.suflanker.com/2009/10/think-in-gtd/" title="GTD啊GTD">GTD啊GTD</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2008/09/%e5%8f%88%e8%a7%81%e9%b8%9f%e4%ba%ba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BS JS</title>
		<link>http://blog.suflanker.com/2008/09/bs-js/</link>
		<comments>http://blog.suflanker.com/2008/09/bs-js/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 13:21:24 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[郁闷]]></category>

		<guid isPermaLink="false">http://www.suflanker.com/2008/09/22/bs-js/</guid>
		<description><![CDATA[&#160;&#160; 我的2210上有一张2G Kingston SD卡，然后读取速度差不多是5M/S，写速度更是惨不忍睹的到了3M/S以下。所以一直觉得买到了假卡，但是发短信一查竟然说是行货，这就把我搞郁闷了。
&#160;&#160; 最近读卡器也不知道什么时候突然跑了，害得我只得跑电脑市场一趟去重买了个。然后在市场里一直对JS说要个SSK的，因为以前用过，觉得还不错。买了以后跑回去试了一下又把我搞郁闷了。TC下读写竟然能到11M/S和5M/S。我靠，这差距咋就那么大咧。
&#160;&#160; 用HDTunePro测了以下，果然是这样。原来的读卡器是当时买卡时老板给的。MD，又被JS骗了。
&#160;
&#160;
&#160;
相关日志2010-03-23 -- They will be back (0)2009-08-30 -- 真TM悲剧 (0)2008-08-18 -- 郁闷 (1)2010-03-13 -- YY NAS Or 动物机 Or HTPC (0)2010-01-28 -- 安逸的Treo Pro (0)]]></description>
			<content:encoded><![CDATA[<p>&nbsp;&nbsp; 我的2210上有一张2G Kingston SD卡，然后读取速度差不多是5M/S，写速度更是惨不忍睹的到了3M/S以下。所以一直觉得买到了假卡，但是发短信一查竟然说是行货，这就把我搞郁闷了。</p>
<p>&nbsp;&nbsp; 最近读卡器也不知道什么时候突然跑了，害得我只得跑电脑市场一趟去重买了个。然后在市场里一直对JS说要个SSK的，因为以前用过，觉得还不错。买了以后跑回去试了一下又把我搞郁闷了。TC下读写竟然能到11M/S和5M/S。我靠，这差距咋就那么大咧。</p>
<p>&nbsp;&nbsp; 用HDTunePro测了以下，果然是这样。原来的读卡器是当时买卡时老板给的。MD，又被JS骗了。</p>
<p>&nbsp;<img src="http://suflanker.com/pic/blogbus/12220897160.jpg" border="0" alt="" width="441" height="338" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=43&type=feed" alt="" /><h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>2010-03-23 -- <a href="http://blog.suflanker.com/2010/03/they-will-be-back/" title="They will be back">They will be back</a> (0)</li><li>2009-08-30 -- <a href="http://blog.suflanker.com/2009/08/what-a-catastrophe/" title="真TM悲剧">真TM悲剧</a> (0)</li><li>2008-08-18 -- <a href="http://blog.suflanker.com/2008/08/%e9%83%81%e9%97%b7/" title="郁闷">郁闷</a> (1)</li><li>2010-03-13 -- <a href="http://blog.suflanker.com/2010/03/my-nas-is-coming/" title="YY NAS Or 动物机 Or HTPC">YY NAS Or 动物机 Or HTPC</a> (0)</li><li>2010-01-28 -- <a href="http://blog.suflanker.com/2010/01/%e5%ae%89%e9%80%b8%e7%9a%84treo-pro/" title="安逸的Treo Pro">安逸的Treo Pro</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2008/09/bs-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>无语。。</title>
		<link>http://blog.suflanker.com/2008/09/%e6%97%a0%e8%af%ad%e3%80%82%e3%80%82/</link>
		<comments>http://blog.suflanker.com/2008/09/%e6%97%a0%e8%af%ad%e3%80%82%e3%80%82/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 06:01:59 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[blogbus]]></category>
		<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://www.suflanker.com/2008/09/04/%e6%97%a0%e8%af%ad%e3%80%82%e3%80%82/</guid>
		<description><![CDATA[&#160; 还是Chrome，刚发完文章竟然出现这种鸟事，难道是BlogBus被挂马了，还是Chrome事多？
&#160;BTW，用Firefox没出现这种灵异事件。
&#160; 
相关日志2010-03-14 -- 删除MediaWiki类别页面中的字母索引 (0)2009-07-08 -- Google Chrome OS登场 (0)2008-09-04 -- Chrome 的单进程模式 (0)2008-09-04 -- Google Chrome 试用 (0)2008-08-23 -- Google Reader快捷键 (0)]]></description>
			<content:encoded><![CDATA[<p>&nbsp; 还是Chrome，刚发完文章竟然出现这种鸟事，难道是BlogBus被挂马了，还是Chrome事多？</p>
<p>&nbsp;BTW，用Firefox没出现这种灵异事件。</p>
<p>&nbsp; <a href="http://suflanker.com/pic/blogbus/s/12205082290.jpg" target="_blank"><img src="http://suflanker.com/pic/blogbus/12205082290.jpg" border="0" alt="" /></a></p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=32&type=feed" alt="" /><h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>2010-03-14 -- <a href="http://blog.suflanker.com/2010/03/%e5%88%a0%e9%99%a4mediawiki%e7%b1%bb%e5%88%ab%e9%a1%b5%e9%9d%a2%e4%b8%ad%e7%9a%84%e5%ad%97%e6%af%8d%e7%b4%a2%e5%bc%95/" title="删除MediaWiki类别页面中的字母索引">删除MediaWiki类别页面中的字母索引</a> (0)</li><li>2009-07-08 -- <a href="http://blog.suflanker.com/2009/07/google-chrome-os%e7%99%bb%e5%9c%ba/" title="Google Chrome OS登场">Google Chrome OS登场</a> (0)</li><li>2008-09-04 -- <a href="http://blog.suflanker.com/2008/09/chrome-%e7%9a%84%e5%8d%95%e8%bf%9b%e7%a8%8b%e6%a8%a1%e5%bc%8f/" title="Chrome 的单进程模式">Chrome 的单进程模式</a> (0)</li><li>2008-09-04 -- <a href="http://blog.suflanker.com/2008/09/google-chrome-%e8%af%95%e7%94%a8/" title="Google Chrome 试用">Google Chrome 试用</a> (0)</li><li>2008-08-23 -- <a href="http://blog.suflanker.com/2008/08/google-reader%e5%bf%ab%e6%8d%b7%e9%94%ae/" title="Google Reader快捷键">Google Reader快捷键</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2008/09/%e6%97%a0%e8%af%ad%e3%80%82%e3%80%82/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>更新</title>
		<link>http://blog.suflanker.com/2008/08/%e6%9b%b4%e6%96%b0/</link>
		<comments>http://blog.suflanker.com/2008/08/%e6%9b%b4%e6%96%b0/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 10:26:21 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>

		<guid isPermaLink="false">http://www.suflanker.com/2008/08/15/%e6%9b%b4%e6%96%b0/</guid>
		<description><![CDATA[&#160;&#160;&#160;&#160; 前段时间在自己机子上弄了个WordPress玩了一段时间。觉得WordPress不错，准备什么时候找个虚拟主机吧。
&#160; 然后吧以前在本机 WordPress上写的日志同步到BlogBus上来，其实也没几篇，实在是懒啊。
相关日志2010-03-23 -- They will be back (0)2010-03-13 -- YY NAS Or 动物机 Or HTPC (0)2010-01-28 -- 安逸的Treo Pro (0)2009-11-01 -- Job Digging (1)2009-10-09 -- GTD啊GTD (0)]]></description>
			<content:encoded><![CDATA[<p>&nbsp;&nbsp;&nbsp;&nbsp; 前段时间在自己机子上弄了个WordPress玩了一段时间。觉得WordPress不错，准备什么时候找个虚拟主机吧。</p>
<p>&nbsp; 然后吧以前在本机 WordPress上写的日志同步到BlogBus上来，其实也没几篇，实在是懒啊。</p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=16&type=feed" alt="" /><h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>2010-03-23 -- <a href="http://blog.suflanker.com/2010/03/they-will-be-back/" title="They will be back">They will be back</a> (0)</li><li>2010-03-13 -- <a href="http://blog.suflanker.com/2010/03/my-nas-is-coming/" title="YY NAS Or 动物机 Or HTPC">YY NAS Or 动物机 Or HTPC</a> (0)</li><li>2010-01-28 -- <a href="http://blog.suflanker.com/2010/01/%e5%ae%89%e9%80%b8%e7%9a%84treo-pro/" title="安逸的Treo Pro">安逸的Treo Pro</a> (0)</li><li>2009-11-01 -- <a href="http://blog.suflanker.com/2009/11/job-digging/" title="Job Digging">Job Digging</a> (1)</li><li>2009-10-09 -- <a href="http://blog.suflanker.com/2009/10/think-in-gtd/" title="GTD啊GTD">GTD啊GTD</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2008/08/%e6%9b%b4%e6%96%b0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>逝去的夜鹰</title>
		<link>http://blog.suflanker.com/2008/04/%e9%80%9d%e5%8e%bb%e7%9a%84%e5%a4%9c%e9%b9%b0/</link>
		<comments>http://blog.suflanker.com/2008/04/%e9%80%9d%e5%8e%bb%e7%9a%84%e5%a4%9c%e9%b9%b0/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 10:33:24 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[f117]]></category>
		<category><![CDATA[军事]]></category>

		<guid isPermaLink="false">http://www.suflanker.com/2008/04/05/%e9%80%9d%e5%8e%bb%e7%9a%84%e5%a4%9c%e9%b9%b0/</guid>
		<description><![CDATA[&#160;
HOLLOMAN AIR FORCE BASE &#8212; Holloman Air Force Base will say farewell
Monday to the F-117 Nighthawk stealth fighter, which the nation is
retiring from its arsenal after 27 years.
04/19/2008 12:00:0
&#160;
F117退役了，今天是其最后一次飞行。抛开政治，我对F117只有崇敬之情，作为洛马臭鼬工厂的杰作之一，作为世界上第一种投入使用的隐形战斗机，同时还作为世界上第一种被击落的隐形战斗机。它改变了传统意义上对战机机动能力之上的观念，同时它还改变了我们对战机的审美观
:）（想当年J8-IIM还被叫做空中美男子啊）。
&#160; 可以说它开创了一个时代，其nickname Nighthawk 形象的描述了它的一切，虽然仍有许多不足，但仍可称之完美。
&#160; 唉，旧的不去新的不来，F117在US实在没立足之地了，现在风光大葬是其最好归宿。
Goodbye Nighthawk:
随机日志2008-10-13 -- 抽风的FeedSky (0)2009-05-07 -- 极品拖把 (0)2008-07-30 -- 云南行1 (0)2009-07-02 -- Goodbye Blogbus (0)2008-08-20 -- 舍瓦回来了，后卫呢？ (0)]]></description>
			<content:encoded><![CDATA[<p>&nbsp;<img src="http://suflanker.com/pic/blogbus/12187966090.jpg" border="0" alt="" width="611" height="456" /></p>
<p>HOLLOMAN AIR FORCE BASE &mdash; Holloman Air Force Base will say farewell<br />
Monday to the F-117 Nighthawk stealth fighter, which the nation is<br />
retiring from its arsenal after 27 years.<br />
04/19/2008 12:00:0</p>
<p>&nbsp;<br />
F117退役了，今天是其最后一次飞行。抛开政治，我对F117只有崇敬之情，作为洛马臭鼬工厂的杰作之一，作为世界上第一种投入使用的隐形战斗机，同时还作为世界上第一种被击落的隐形战斗机。它改变了传统意义上对战机机动能力之上的观念，同时它还改变了我们对战机的审美观<br />
:）（想当年J8-IIM还被叫做空中美男子啊）。</p>
<p>&nbsp; 可以说它开创了一个时代，其nickname Nighthawk 形象的描述了它的一切，虽然仍有许多不足，但仍可称之完美。</p>
<p>&nbsp; 唉，旧的不去新的不来，F117在US实在没立足之地了，现在风光大葬是其最好归宿。</p>
<p>Goodbye Nighthawk:</p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=17&type=feed" alt="" /><h2  class="related_post_title">随机日志</h2><ul class="related_post"><li>2008-03-10 -- <a href="http://blog.suflanker.com/2008/03/%e5%a4%96%e7%bd%91%e9%83%81%e9%97%b7/" title="外网郁闷">外网郁闷</a> (0)</li><li>2008-02-20 -- <a href="http://blog.suflanker.com/2008/02/new/" title="New">New</a> (0)</li><li>2009-06-01 -- <a href="http://blog.suflanker.com/2009/06/%e9%a9%ac%e9%98%9f%e8%b5%b0%e5%a5%bd/" title="马队走好">马队走好</a> (1)</li><li>2008-08-02 -- <a href="http://blog.suflanker.com/2008/08/%e4%ba%91%e5%8d%97%e8%a1%8c-%e7%8e%89%e9%be%99%e9%9b%aa%e5%b1%b1/" title="云南行 &#8211; 玉龙雪山">云南行 &#8211; 玉龙雪山</a> (1)</li><li>2008-10-09 -- <a href="http://blog.suflanker.com/2008/10/mediawiki/" title="MediaWiki">MediaWiki</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2008/04/%e9%80%9d%e5%8e%bb%e7%9a%84%e5%a4%9c%e9%b9%b0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Place</title>
		<link>http://blog.suflanker.com/2008/02/my-place/</link>
		<comments>http://blog.suflanker.com/2008/02/my-place/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 08:11:56 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[垃圾]]></category>

		<guid isPermaLink="false">http://www.suflanker.com/2008/02/28/my-place/</guid>
		<description><![CDATA[
是不是很整洁啊 ，哈哈 
&#160;
相关日志2009-11-01 -- Job Digging (1)2009-10-09 -- GTD啊GTD (0)2008-11-10 -- &#8230;&#8230;&#8230;.凉皮&#038;肉夹馍&#8230;&#8230;&#8230;. (0)2008-10-15 -- Blog Action Day &#8211; Poverty (0)2008-08-26 -- 武汉 (3)]]></description>
			<content:encoded><![CDATA[<p><img src="http://suflanker.com/pic/blogbus/12071095370.jpg" border="0" alt="" /></p>
<p>是不是很整洁啊 ，哈哈 </p>
<p>&nbsp;</p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=10&type=feed" alt="" /><h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>2009-11-01 -- <a href="http://blog.suflanker.com/2009/11/job-digging/" title="Job Digging">Job Digging</a> (1)</li><li>2009-10-09 -- <a href="http://blog.suflanker.com/2009/10/think-in-gtd/" title="GTD啊GTD">GTD啊GTD</a> (0)</li><li>2008-11-10 -- <a href="http://blog.suflanker.com/2008/11/%e5%87%89%e7%9a%aeampamp%e8%82%89%e5%a4%b9%e9%a6%8d/" title="&#8230;&#8230;&#8230;.凉皮&#038;肉夹馍&#8230;&#8230;&#8230;.">&#8230;&#8230;&#8230;.凉皮&#038;肉夹馍&#8230;&#8230;&#8230;.</a> (0)</li><li>2008-10-15 -- <a href="http://blog.suflanker.com/2008/10/blog-action-day-poverty/" title="Blog Action Day &#8211; Poverty">Blog Action Day &#8211; Poverty</a> (0)</li><li>2008-08-26 -- <a href="http://blog.suflanker.com/2008/08/%e6%ad%a6%e6%b1%89/" title="武汉">武汉</a> (3)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2008/02/my-place/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rp大爆发?</title>
		<link>http://blog.suflanker.com/2008/02/rp%e5%a4%a7%e7%88%86%e5%8f%91/</link>
		<comments>http://blog.suflanker.com/2008/02/rp%e5%a4%a7%e7%88%86%e5%8f%91/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 00:22:11 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[教育网]]></category>

		<guid isPermaLink="false">http://www.suflanker.com/2008/02/28/rp%e5%a4%a7%e7%88%86%e5%8f%91/</guid>
		<description><![CDATA[今天早上起来居然发现学校竟然能上外网了。哈哈，这可是一件喜讯啊，终于不用找那些慢死的代理了，hoho.
也不知道处于什么原因，一向抠死的学校终于做了一件正事。恩，希望这能持续下去，要不然过几天又上不去就郁闷了
相关日志2009-11-01 -- Job Digging (1)2009-10-09 -- GTD啊GTD (0)2008-11-10 -- &#8230;&#8230;&#8230;.凉皮&#038;肉夹馍&#8230;&#8230;&#8230;. (0)2008-10-15 -- Blog Action Day &#8211; Poverty (0)2008-08-26 -- 武汉 (3)]]></description>
			<content:encoded><![CDATA[<p>今天早上起来居然发现学校竟然能上外网了。哈哈，这可是一件喜讯啊，终于不用找那些慢死的代理了，hoho.</p>
<p>也不知道处于什么原因，一向抠死的学校终于做了一件正事。恩，希望这能持续下去，要不然过几天又上不去就郁闷了</p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=9&type=feed" alt="" /><h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>2009-11-01 -- <a href="http://blog.suflanker.com/2009/11/job-digging/" title="Job Digging">Job Digging</a> (1)</li><li>2009-10-09 -- <a href="http://blog.suflanker.com/2009/10/think-in-gtd/" title="GTD啊GTD">GTD啊GTD</a> (0)</li><li>2008-11-10 -- <a href="http://blog.suflanker.com/2008/11/%e5%87%89%e7%9a%aeampamp%e8%82%89%e5%a4%b9%e9%a6%8d/" title="&#8230;&#8230;&#8230;.凉皮&#038;肉夹馍&#8230;&#8230;&#8230;.">&#8230;&#8230;&#8230;.凉皮&#038;肉夹馍&#8230;&#8230;&#8230;.</a> (0)</li><li>2008-10-15 -- <a href="http://blog.suflanker.com/2008/10/blog-action-day-poverty/" title="Blog Action Day &#8211; Poverty">Blog Action Day &#8211; Poverty</a> (0)</li><li>2008-08-26 -- <a href="http://blog.suflanker.com/2008/08/%e6%ad%a6%e6%b1%89/" title="武汉">武汉</a> (3)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2008/02/rp%e5%a4%a7%e7%88%86%e5%8f%91/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New</title>
		<link>http://blog.suflanker.com/2008/02/new/</link>
		<comments>http://blog.suflanker.com/2008/02/new/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 12:58:49 +0000</pubDate>
		<dc:creator>LajiCF</dc:creator>
				<category><![CDATA[扯淡]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.suflanker.com/2008/02/20/new/</guid>
		<description><![CDATA[搬家了，哈哈啊
相关日志2009-11-01 -- Job Digging (1)2009-10-09 -- GTD啊GTD (0)2008-08-26 -- 武汉 (3)2010-03-23 -- They will be back (0)2010-03-13 -- YY NAS Or 动物机 Or HTPC (0)]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: large;">搬家了，哈哈<img src="http://suflanker.com/pic/blogbus/01-20.gif" border="0" alt="" />啊</span></p>
<img src="http://blog.suflanker.com/?ak_action=api_record_view&id=6&type=feed" alt="" /><h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>2009-11-01 -- <a href="http://blog.suflanker.com/2009/11/job-digging/" title="Job Digging">Job Digging</a> (1)</li><li>2009-10-09 -- <a href="http://blog.suflanker.com/2009/10/think-in-gtd/" title="GTD啊GTD">GTD啊GTD</a> (0)</li><li>2008-08-26 -- <a href="http://blog.suflanker.com/2008/08/%e6%ad%a6%e6%b1%89/" title="武汉">武汉</a> (3)</li><li>2010-03-23 -- <a href="http://blog.suflanker.com/2010/03/they-will-be-back/" title="They will be back">They will be back</a> (0)</li><li>2010-03-13 -- <a href="http://blog.suflanker.com/2010/03/my-nas-is-coming/" title="YY NAS Or 动物机 Or HTPC">YY NAS Or 动物机 Or HTPC</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.suflanker.com/2008/02/new/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
