<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/lengxingfei" type="application/rss+xml" ref="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/lengxingfei" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 13 Dec 2007 10:03:00 GMT</lastBuildDate><title>lengxingfei的专栏</title><item><title>Big-Endian vs Little-Endian</title><link>http://blog.csdn.net/lengxingfei/archive/2007/12/13/1932534.aspx</link><wfw:comment>comments/1932534.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1932534.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1932534</trackback:ping><description>The adjectives big-endian and little-endian refer to which bytes are most significant in multi-byte data types and describe the order in which a sequence of bytes is stored in a computer抯 memory.

In a big-endian system, the most significant value in the sequence is stored at the lowest storage address (i.e., first). In a little-endian system, the least significant value in the sequence is stored first. For example, consider the number 1025 (2 to the tenth power plus one) stored in a 4-byte in&lt;img src =&quot;aggbug/1932534.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 13 Dec 2007 18:03:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/12/13/1932534.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/12/13/1932534.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/12/13/1932534.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438164/1129599</fs:itemid></item><item><title>Thinking Like an Athlete at Work</title><link>http://blog.csdn.net/lengxingfei/archive/2007/12/03/1914576.aspx</link><wfw:comment>comments/1914576.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1914576.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1914576</trackback:ping><description>Kate Lorenz, CareerBuilder.com Editor
Five Tips

Even if your idea of working out is watching the ESPN without a remote, you can still train to be a top competitor at the office. Here are five strategies winning athletes use to get their game on that you can use on the job. No matter what event you're in, following these strategies will improve your mental game and help make you a champion!
&lt;img src =&quot;aggbug/1914576.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 04 Dec 2007 07:06:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/12/03/1914576.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/12/03/1914576.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/12/03/1914576.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438165/1129599</fs:itemid></item><item><title>C++中的虚函数(virtual function)</title><link>http://blog.csdn.net/lengxingfei/archive/2007/11/09/1876570.aspx</link><wfw:comment>comments/1876570.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1876570.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1876570</trackback:ping><description>一.简介

虚函数是C++中用于实现多态(polymorphism)的机制。核心理念就是通过基类访问派生类定义的函数。假设我们有下面的类层次：

class A

{

public:

virtual void foo() { cout &lt;&lt; &quot;A::foo() is called&quot; &lt;&lt; endl;}

};

class B: public A

{

public:

virtual void foo() { cout &lt;&lt; &quot;B::foo() is called&quot; &lt;&lt; endl;}

};&lt;img src =&quot;aggbug/1876570.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 10 Nov 2007 02:17:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/11/09/1876570.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/11/09/1876570.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/11/09/1876570.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438166/1129599</fs:itemid></item><item><title>读杂志心得——影响算法世界的十位大师</title><link>http://blog.csdn.net/lengxingfei/archive/2007/11/08/1874889.aspx</link><wfw:comment>comments/1874889.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1874889.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1874889</trackback:ping><description>Don E. Knuth
伟大的智者——Don E.Knuth，中文名：高德纳(1938-)算法和程序设计技术的先驱者。Oh,God!一些国外网站这样评价他。一般说来，不知道此人的程序员是不可原谅的。其经典著作《计算机程序设计艺术》更是被誉为算法中“真正”的圣经，像KMP和LR(K)这样令人不可思议的算法，在此书比比皆是。难怪连Bill Gates都说：“如果能做对书里所有的习题，就直接来微软上班吧！”
对于Don E.Knuth本人，一生中获得的奖项和荣誉不计其数，包括图灵奖，美国国家科学金奖，美国数学学会斯蒂尔将（AMS Steel Prize），以及发明先进技术荣获的极受尊重的京都奖（KyotoPrize）等等，写过19部书和160余篇论文，每一篇著作都能用影响深远来形容。Don E.Knuth也被公认是美国最聪明的人之一。当年他上大学的时候，常写些各种各样的编译器来挣外快，只要是他参加的编程比赛，总是第一名，同时也是世上少有的编程达到40年以上的程序员之一。他除了是技术与科学上的泰斗外，更是无可非议的写作高手，技术文章堪称一绝，文风细腻，讲解透彻，思路清晰而且没有学究气，估&lt;img src =&quot;aggbug/1874889.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 09 Nov 2007 06:12:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/11/08/1874889.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/11/08/1874889.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/11/08/1874889.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438167/1129599</fs:itemid></item><item><title>12种貌似卫生的不卫生习惯</title><link>http://blog.csdn.net/lengxingfei/archive/2007/11/06/1870312.aspx</link><wfw:comment>comments/1870312.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1870312.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1870312</trackback:ping><description>生活中有一些习惯，貌似卫生，实际上并不卫生，不仅不能保证身体健康，反而对身体有害。2.卫生纸擦拭餐具、水果。只有经过严格消毒处理的高级餐巾纸才符合卫生标准。用纱罩罩在食物上，苍蝇虽然不会直接落到食物上，但会停留在纱罩上面，仍会留下带有病菌的虫卵，这些虫卵极易从纱孔中落下而污染食物。&lt;img src =&quot;aggbug/1870312.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 07 Nov 2007 04:56:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/11/06/1870312.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/11/06/1870312.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/11/06/1870312.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438168/1129599</fs:itemid></item><item><title>Installing Bochs/Unix_v6 on your 32-bit Linux machine</title><link>http://blog.csdn.net/lengxingfei/archive/2007/11/04/1866823.aspx</link><wfw:comment>comments/1866823.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1866823.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1866823</trackback:ping><description>Sunday, April 22, 2007
Installing Bochs/Unix_v6 on your 32-bit Linux machine

Start of with downloading the latest bochs source from this site.
I have downloaded this snapshot.
&lt;img src =&quot;aggbug/1866823.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 05 Nov 2007 07:04:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/11/04/1866823.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/11/04/1866823.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/11/04/1866823.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438169/1129599</fs:itemid></item><item><title>Chapter 2 Variables and Basic Types</title><link>http://blog.csdn.net/lengxingfei/archive/2007/10/30/1858151.aspx</link><wfw:comment>comments/1858151.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1858151.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1858151</trackback:ping><description>Chapter 2 Variables and Basic Types
&lt;img src =&quot;aggbug/1858151.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 31 Oct 2007 06:13:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/10/30/1858151.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/10/30/1858151.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/10/30/1858151.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438170/1129599</fs:itemid></item><item><title>Sneaky food books: Hot and a hot topic</title><link>http://blog.csdn.net/lengxingfei/archive/2007/10/22/1838096.aspx</link><wfw:comment>comments/1838096.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1838096.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1838096</trackback:ping><description>By MEGAN K. SCOTT, Associated Press Writer Sat Oct 20, 12:54 AM ET

NEW YORK - It's a technique on the tip of a lot of parents' tongues — and maybe their children's too: Puree healthy fruits and vegetables, and sneak them into regular kid food like macaroni and cheese or chocolate pudding. Watch the kids unknowingly gobble down their vitamins, and smile.
&lt;img src =&quot;aggbug/1838096.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 23 Oct 2007 06:11:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/10/22/1838096.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/10/22/1838096.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/10/22/1838096.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438171/1129599</fs:itemid></item><item><title>Climate change blamed for fading foliage</title><link>http://blog.csdn.net/lengxingfei/archive/2007/10/22/1836437.aspx</link><wfw:comment>comments/1836437.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1836437.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1836437</trackback:ping><description>By DAVE GRAM, Associated Press Writer Sat Oct 20, 4:39 PM ET

EAST MONTPELIER, Vt. - Every fall, Marilyn Krom tries to make a trip to Vermont to see its famously beautiful fall foliage.
The colors of fall are seen on trees that frame the First Congregational Church in South Woodbury, Vt., Wednesday, Sept. 26, 2007. University of Vermont plant biologist Tom Vogelmann, a Vermont native who's among those who believes warming weather may be to blame for lackluster foliage. He says autumn has beco&lt;img src =&quot;aggbug/1836437.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 22 Oct 2007 17:31:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/10/22/1836437.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/10/22/1836437.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/10/22/1836437.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438172/1129599</fs:itemid></item><item><title>用GDB调试程序</title><link>http://blog.csdn.net/lengxingfei/archive/2007/10/20/1834642.aspx</link><wfw:comment>comments/1834642.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1834642.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1834642</trackback:ping><description>GDB是一个强大的命令行调试工具。大家知道命令行的强大就是在于，其可以形成执行序列，形成脚本。UNIX下的软件全是命令行的，这给程序开发提代供了极大的便利，命令行软件的优势在于，它们可以非常容易的集成在一起，使用几个简单的已有工具的命令，就可以做出一个非常强大的功能。

于是UNIX下的软件比Windows下的软件更能有机地结合，各自发挥各自的长处，组合成更为强劲的功能。而Windows下的图形软件基本上是各自为营，互相不能调用，很不利于各种软件的相互集成。在这里并不是要和Windows做个什么比较，所谓“寸有所长，尺有所短”，图形化工具还是有不如命令行的地方。

用GDB调试程序
&lt;img src =&quot;aggbug/1834642.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 21 Oct 2007 02:27:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/10/20/1834642.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/10/20/1834642.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/10/20/1834642.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438173/1129599</fs:itemid></item><item><title>Forget peace. Americans want a computer this holiday</title><link>http://blog.csdn.net/lengxingfei/archive/2007/10/19/1833101.aspx</link><wfw:comment>comments/1833101.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1833101.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1833101</trackback:ping><description>NEW YORK (Reuters) - Forget peace and happiness. Most U.S. adults want a computer under the tree this holiday. &lt;img src =&quot;aggbug/1833101.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 20 Oct 2007 00:37:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/10/19/1833101.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/10/19/1833101.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/10/19/1833101.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438174/1129599</fs:itemid></item><item><title>Maine middle school to offer birth control</title><link>http://blog.csdn.net/lengxingfei/archive/2007/10/19/1833078.aspx</link><wfw:comment>comments/1833078.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1833078.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1833078</trackback:ping><description>PORTLAND, Maine (AP) -- After an outbreak of pregnancies among middle school girls, education officials in this city have decided to allow a school health center to make birth control pills available to girls as young as 11.&lt;img src =&quot;aggbug/1833078.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 20 Oct 2007 00:31:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/10/19/1833078.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/10/19/1833078.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/10/19/1833078.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438175/1129599</fs:itemid></item><item><title>［转贴］手把手教你如何建立自己的Linux系统（LFS速成手册）</title><link>http://blog.csdn.net/lengxingfei/archive/2007/10/17/1829942.aspx</link><wfw:comment>comments/1829942.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1829942.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1829942</trackback:ping><description>前言：
　　LFS是一部非常好的制作一个完整的操作系统的手册，但LFS是属于指导性的手册，因此它默认的前提条件是具备一定的Linux使用经验的用户群，所以它在每个软件包的安装部分只给出了在目录中的全部操作指令，而对于解压缩之类的则交给用户自己去解决，但对于很多第一次使用LFS的用户往往会出现一些不清楚某条命令应该是在哪里执行的问题，本文力图从实例上来解释这些问题。
　　本文虽然是采用VMWare Workstation 5.0的环境下制作的，但仍然符合使用真实机器上的过程，只是会在某些地方要根据具体机器进行更改，文中会在这些地方做出说明。
　　使用WMWare来写这篇文章是为了说明方便，因为VMWare在各种不同机器环境下模拟的虚拟设备几乎相同，所以用它来说明一些需要实际例子才说的清楚的地方非常合适，而且用VMWare来做即使出错也不会对真实的系统造成破坏，很适合新手使用，唯一的缺点就是速度慢了些，一般只有真实机器的一半左右的速度。
　　本文力争完成一个完整的制作命令，可以根据本文提供的命令顺序输入就可以完成LFS了，通常命令表示为
&lt;img src =&quot;aggbug/1829942.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 18 Oct 2007 05:20:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/10/17/1829942.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/10/17/1829942.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/10/17/1829942.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438176/1129599</fs:itemid></item><item><title>how to inspire your employee</title><link>http://blog.csdn.net/lengxingfei/archive/2007/10/17/1829934.aspx</link><wfw:comment>comments/1829934.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1829934.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1829934</trackback:ping><description>American business professionals are uninspired. Only 10% of employees look forward to going to work and most point to a lack of leadership as the reason why, according to a recent Maritz Research poll. But it doesn't have to be that way. All business leaders have the power to inspire, motivate, and positively influence the people in their professional lives. &lt;img src =&quot;aggbug/1829934.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 18 Oct 2007 05:15:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/10/17/1829934.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/10/17/1829934.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/10/17/1829934.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438177/1129599</fs:itemid></item><item><title>Apple's Leopard system goes on sale</title><link>http://blog.csdn.net/lengxingfei/archive/2007/10/17/1829714.aspx</link><wfw:comment>comments/1829714.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1829714.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1829714</trackback:ping><description>SAN JOSE, Calif. - Apple Inc.'s next-generation operating system, Mac OS X &quot;Leopard,&quot; will be available Oct. 26 for $129, and Apple's online store is taking pre-orders, the company said Tuesday.&lt;img src =&quot;aggbug/1829714.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 18 Oct 2007 02:10:00 +0800</pubDate><author>lengxingfei</author><comments>http://blog.csdn.net/lengxingfei/archive/2007/10/17/1829714.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lengxingfei/archive/2007/10/17/1829714.aspx</guid><dc:creator>lengxingfei</dc:creator><fs:srclink>http://blog.csdn.net/lengxingfei/archive/2007/10/17/1829714.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lengxingfei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/lengxingfei/~1129605/35438178/1129599</fs:itemid></item></channel></rss>