<?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:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/maliang1225" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/maliang1225" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 21 May 2010 13:33:00 GMT</lastBuildDate><title>幸福村的人</title><description>CSDN博客聚合服务</description><link>http://blog.csdn.net/blogrss.aspx?username=maliang1225</link><item><title>Window下创建进程和执行命令行程序的方法</title><link>http://blog.csdn.net/maliang1225/archive/2010/05/21/5615190.aspx</link><description>&lt;br /&gt;wxWidgets下的wxExecute(...) and wxShell(...)倒是可以执行命令行程序，但是cmd的窗口隐藏不了，所以只有让window和Mac上面分别实现执行命令了。查了一下，window上面大概有三种方法：&lt;br /&gt;&lt;br /&gt;1.WinExec(&quot;cmd.exe&quot;,SW_SHOW);可以隐藏程序界
面，一般在后台隐藏执行命令行或脚本时使用&lt;br /&gt;&lt;br /&gt;
2.system(&quot;cmd&quot;);直接执行命令，不可以隐藏界面&lt;br /&gt;&lt;br /&gt;
3.CreateProcess，一般执行带界面的进程，可以隐藏界面,隐藏方法要同时设置dwFlags和wShowWindow才可以生效，例如：&lt;br /&gt;STARTUPINFO si;&lt;br /&gt; ZeroMemory( &amp;si, sizeof(si) );&lt;br /&gt;
 si.cb = sizeof(si);&lt;br /&gt;
 si.dwFlags=STARTF_USESHOWWINDOW;&lt;br /&gt;
 si.wShowWindow=SW_HIDE;&lt;br /&gt;
 ZeroMemory(&lt;img src=&quot;http://www1.feedsky.com/t1/369066497/maliang1225/csdn.net/s.gif?r=http://blog.csdn.net/maliang1225/archive/2010/05/21/5615190.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/maliang1225/369066497/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/maliang1225/369066497/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 21 May 2010 21:33:00 +0800</pubDate><author>Linux&amp;&amp;unix&amp;&amp;vxwork</author><guid isPermaLink="false">http://blog.csdn.net/maliang1225/archive/2010/05/21/5615190.aspx</guid><dc:creator>Linux&amp;&amp;unix&amp;&amp;vxwork</dc:creator><fs:srclink>http://blog.csdn.net/maliang1225/archive/2010/05/21/5615190.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/maliang1225/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/maliang1225/~1089707/369066497/1089706</fs:itemid></item><item><title>ubuntu下移植QT基本流程</title><link>http://blog.csdn.net/maliang1225/archive/2010/01/31/5275322.aspx</link><description>&lt;br /&gt;配置tftp &lt;br /&gt;

 配置tftp服务的步骤： &lt;br /&gt;

 1、安装相关软件包：tftpd（服务端），tftp（客户端），xinetd &lt;br /&gt;

 sudo apt-get install tftpd tftp xinetd  &lt;br /&gt;&lt;br /&gt;

 2、建立配置文件 &lt;br /&gt;

 在/etc/xinetd.d/下建立一个配置文件tftp &lt;br /&gt;

 sudo vi tftp &lt;br /&gt;

 在文件中输入以下内容： &lt;br /&gt;

 service tftp &lt;br /&gt;

 { &lt;br /&gt;

 socket_type = dgram &lt;br /&gt;

 protocol = udp &lt;br /&gt;

 wait = yes &lt;br /&gt;

 user = root &lt;br /&gt;

 server = /usr/sbin/in.tftpd &lt;br /&gt;

 server_args = -s /tftpboot &lt;br /&gt;

 disable = no &lt;br /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/369066498/maliang1225/csdn.net/s.gif?r=http://blog.csdn.net/maliang1225/archive/2010/01/31/5275322.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/maliang1225/369066498/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/maliang1225/369066498/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 31 Jan 2010 21:57:00 +0800</pubDate><author>Linux&amp;&amp;unix&amp;&amp;vxwork</author><guid isPermaLink="false">http://blog.csdn.net/maliang1225/archive/2010/01/31/5275322.aspx</guid><dc:creator>Linux&amp;&amp;unix&amp;&amp;vxwork</dc:creator><fs:srclink>http://blog.csdn.net/maliang1225/archive/2010/01/31/5275322.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/maliang1225/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/maliang1225/~1089707/369066498/1089706</fs:itemid></item><item><title>项目管理- 项目阶段划分</title><link>http://blog.csdn.net/maliang1225/archive/2009/10/08/4643730.aspx</link><description>一个项目从开始到结束会经历一系列的阶段。有效划分这些阶段，对进度控制、成本控制、质量管理、功能控制至关重要。一般的大中型软件开发公司，都有自己的阶段划分方法，定义的各阶段要完成的任务也不尽相同。本文就个人从研发角度理解到的，简单叙述一下开发的各个流程。（1）phase0:由市场人员反馈提出项目开发阶段。该阶段没有明显的时间周期，是项目的发起阶段。由相关人员提供产品的主要feature、市场前景的说明文档。公司管理层、市场部、产品部召开p0会议，决议通过，指定该产品的全权负责人：产品经理。项目进入正式启动阶段。（2）phase1:计划阶段。产品经理制定产品各个阶段的时间段、成本、产品功能范围输出：进度、成本报告完成：召集系统部人员、研发部负责人召开pr1（phase review）会议。会议通过，指定系统部人员，分配时间，通知研发部、测试部准备人员在计划时间进入该项目。（3）phase2：需求设计阶段。系统设计人员完成需求设计输出：需求文档 各子系统需求 各子系统间的交互接口 须明&lt;img src=&quot;http://www1.feedsky.com/t1/369066499/maliang1225/csdn.net/s.gif?r=http://blog.csdn.net/maliang1225/archive/2009/10/08/4643730.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/maliang1225/369066499/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/maliang1225/369066499/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 08 Oct 2009 22:19:00 +0800</pubDate><author>Linux&amp;&amp;unix&amp;&amp;vxwork</author><guid isPermaLink="false">http://blog.csdn.net/maliang1225/archive/2009/10/08/4643730.aspx</guid><dc:creator>Linux&amp;&amp;unix&amp;&amp;vxwork</dc:creator><fs:srclink>http://blog.csdn.net/maliang1225/archive/2009/10/08/4643730.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/maliang1225/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/maliang1225/~1089707/369066499/1089706</fs:itemid></item><item><title>Eight Steps to Helping Yourself Have a Happier Life</title><link>http://blog.csdn.net/maliang1225/archive/2009/10/08/4643120.aspx</link><description>&lt;br /&gt;&lt;br /&gt;Research
into genetics can make it feel as if our personality and mood are
preordained. But you can do much to strengthen your mental health.
Attitudes and thoughts can control biologically induced anxiety.
Environment can mitigate mood problems. Relaxation techniques can keep
anxiety symptoms to tolerable levels.&lt;br /&gt;Here are eight steps to helping yourself have a happier life:&lt;br /&gt;REDUCE STRESS.
 Prolonged
stress increases the blood level of cortisol in your brain, affecti&lt;img src=&quot;http://www1.feedsky.com/t1/369066500/maliang1225/csdn.net/s.gif?r=http://blog.csdn.net/maliang1225/archive/2009/10/08/4643120.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/maliang1225/369066500/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/maliang1225/369066500/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 08 Oct 2009 20:25:00 +0800</pubDate><author>Linux&amp;&amp;unix&amp;&amp;vxwork</author><guid isPermaLink="false">http://blog.csdn.net/maliang1225/archive/2009/10/08/4643120.aspx</guid><dc:creator>Linux&amp;&amp;unix&amp;&amp;vxwork</dc:creator><fs:srclink>http://blog.csdn.net/maliang1225/archive/2009/10/08/4643120.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/maliang1225/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/maliang1225/~1089707/369066500/1089706</fs:itemid></item><item><title>转载： 简历模版(抛砖引玉)</title><link>http://blog.csdn.net/maliang1225/archive/2009/10/08/4642550.aspx</link><description>&lt;br /&gt;邮件标题：XX工作经验应聘XXXX+姓名+电话
（这样写 起码HR在想通知你面试的时候不需要再把邮件打开） &lt;br /&gt;
邮件正文： &lt;br /&gt;&lt;br /&gt;尊敬的先生/女士： &lt;br /&gt;
    您好。我叫XX，在XXX获知贵公司正在招聘XX岗位。我是XX学历（如果该公司对学历很重视），有XX语言，XX工作/项目经验（可根据实际情况，浓缩成一句到二句介绍）。特此付上简历一份，期待与您面谈。 &lt;br /&gt;
------------------------------------------------------------------------ &lt;br /&gt;
个人简历 &lt;br /&gt;&lt;br /&gt;
开头写基本情况，比如姓名、性别、学历、专业等……
（这
一部分可以根据招聘简章里面的要求写，比如有的要求学历、证书、经验。没有要求的，可以从简。）另外，可以精心准备一张照片1/3的小半身照（如果你觉得
相貌突出，证件照也好看，也可以直接上证件照），现在数码相机已经是普及了，找个环境好点的背景，配上清爽有活力的面容，职业装最好，休闲装也可，最好不
要运动装，背&lt;img src=&quot;http://www1.feedsky.com/t1/369066501/maliang1225/csdn.net/s.gif?r=http://blog.csdn.net/maliang1225/archive/2009/10/08/4642550.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/maliang1225/369066501/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/maliang1225/369066501/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 08 Oct 2009 17:32:00 +0800</pubDate><author>Linux&amp;&amp;unix&amp;&amp;vxwork</author><guid isPermaLink="false">http://blog.csdn.net/maliang1225/archive/2009/10/08/4642550.aspx</guid><dc:creator>Linux&amp;&amp;unix&amp;&amp;vxwork</dc:creator><fs:srclink>http://blog.csdn.net/maliang1225/archive/2009/10/08/4642550.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/maliang1225/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/maliang1225/~1089707/369066501/1089706</fs:itemid></item><item><title>转贴：一语道破：十种职场生存“潜规则”</title><link>http://blog.csdn.net/maliang1225/archive/2009/10/08/4642465.aspx</link><description>&lt;br /&gt;转自：http://www.crazyenglish.org/shangwuyingyu/zhichangyingyu/20091007/63626.html&lt;br /&gt;1.Don't be a yes /no man , be a good lieutenant。 &lt;br /&gt;　　不要做一个“唯唯诺诺者/否定论者”，做一个“优秀的中尉”。&lt;br /&gt;　　Offer polite, constructive criticism, and do your best to see how your boss's plans are feasible。&lt;br /&gt;　　有礼貌地提出建设性意见，并尽可能看到你上司的方案的可行性。&lt;br /&gt;　　2.Give your realistic deadlines。&lt;br /&gt;　　告诉上司现实的截止日期。&lt;br /&gt;　　Give yourself a bit of extra time to get the job done properly, and if you get things done early, the boss will b&lt;img src=&quot;http://www1.feedsky.com/t1/369066502/maliang1225/csdn.net/s.gif?r=http://blog.csdn.net/maliang1225/archive/2009/10/08/4642465.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/maliang1225/369066502/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/maliang1225/369066502/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 08 Oct 2009 17:09:00 +0800</pubDate><author>Linux&amp;&amp;unix&amp;&amp;vxwork</author><guid isPermaLink="false">http://blog.csdn.net/maliang1225/archive/2009/10/08/4642465.aspx</guid><dc:creator>Linux&amp;&amp;unix&amp;&amp;vxwork</dc:creator><fs:srclink>http://blog.csdn.net/maliang1225/archive/2009/10/08/4642465.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/maliang1225/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/maliang1225/~1089707/369066502/1089706</fs:itemid></item><item><title>成功需要走十步的话，三五步之间最难走……</title><link>http://blog.csdn.net/maliang1225/archive/2009/10/08/4642340.aspx</link><description>&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;img src=&quot;http://www1.feedsky.com/t1/369066503/maliang1225/csdn.net/s.gif?r=http://blog.csdn.net/maliang1225/archive/2009/10/08/4642340.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/maliang1225/369066503/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/maliang1225/369066503/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 08 Oct 2009 16:26:00 +0800</pubDate><author>Linux&amp;&amp;unix&amp;&amp;vxwork</author><guid isPermaLink="false">http://blog.csdn.net/maliang1225/archive/2009/10/08/4642340.aspx</guid><dc:creator>Linux&amp;&amp;unix&amp;&amp;vxwork</dc:creator><fs:srclink>http://blog.csdn.net/maliang1225/archive/2009/10/08/4642340.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/maliang1225/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/maliang1225/~1089707/369066503/1089706</fs:itemid></item><item><title>软件开发相关知识体系</title><link>http://blog.csdn.net/maliang1225/archive/2009/10/07/4638838.aspx</link><description>&lt;br /&gt;如下图所示：&lt;br /&gt;&lt;br /&gt;一些相关的解释：&lt;br /&gt;学校里的课程没用吗？&lt;br /&gt;
答：肯定有用。&lt;br /&gt;
计
算机专业的经典理论课，意义非凡：计算机组成原理、计算机体系结构、操作系统、编译原理、数据结构。操作系统中的内存管理算法、进程调度算法、并发控制算
法，都是非常经典的，你会在很多其它地方发现这些算法的应用或者变体。编译原理有助于我们理解编程语言是如何工作的，如何用范式来表达复杂的语法，编译原
理中的状态机相关知识，也是开发者手中的强大武器。数据结构就更不用说了，List，Map，Tree，是编程中广泛使用的。&lt;br /&gt;快餐式软件开发培训的问题何在？&lt;br /&gt;
一个典型的快
餐式培训班，先教java语言，然后教SSH，然后给个千篇一律的虚拟项目做一下，最后号称培养出来一批“WEB开发”程序员。我觉得，如果之前没有任何
基础，仅靠这样的培训，那么出来真的只能做非常程式化的工作。我一直提倡稳扎稳打，从下向上学起这样的方式，缺点是不如容易出效果。所以从两个方向入手，
一边学基础，一边学应用，互相印证，也是不错的学习路径。&lt;br /&gt;软&lt;img src=&quot;http://www1.feedsky.com/t1/369066504/maliang1225/csdn.net/s.gif?r=http://blog.csdn.net/maliang1225/archive/2009/10/07/4638838.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/maliang1225/369066504/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/maliang1225/369066504/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 07 Oct 2009 11:21:00 +0800</pubDate><author>Linux&amp;&amp;unix&amp;&amp;vxwork</author><guid isPermaLink="false">http://blog.csdn.net/maliang1225/archive/2009/10/07/4638838.aspx</guid><dc:creator>Linux&amp;&amp;unix&amp;&amp;vxwork</dc:creator><fs:srclink>http://blog.csdn.net/maliang1225/archive/2009/10/07/4638838.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/maliang1225/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/maliang1225/~1089707/369066504/1089706</fs:itemid></item><item><title>打印菱形，感觉还不错</title><link>http://blog.csdn.net/maliang1225/archive/2009/10/05/4634690.aspx</link><description>templatestruct Abs   {       enum {value = x&gt;0?x:-x};   };   #pragma pack(push , 1 )   template//x行数这是多少行，y递归用第几个元素   struct line   {       char mc;       struct line nextLine;       enum { e = Abs::value+Abs::value    line():mc(e)       {}   };   template&lt;img src=&quot;http://www1.feedsky.com/t1/369066505/maliang1225/csdn.net/s.gif?r=http://blog.csdn.net/maliang1225/archive/2009/10/05/4634690.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/maliang1225/369066505/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/maliang1225/369066505/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 05 Oct 2009 21:29:00 +0800</pubDate><author>Linux&amp;&amp;unix&amp;&amp;vxwork</author><guid isPermaLink="false">http://blog.csdn.net/maliang1225/archive/2009/10/05/4634690.aspx</guid><dc:creator>Linux&amp;&amp;unix&amp;&amp;vxwork</dc:creator><fs:srclink>http://blog.csdn.net/maliang1225/archive/2009/10/05/4634690.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/maliang1225/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/maliang1225/~1089707/369066505/1089706</fs:itemid></item><item><title>What is PKM?</title><link>http://blog.csdn.net/maliang1225/archive/2009/10/04/4632600.aspx</link><description>&lt;br /&gt;Overview of Personal Knowledge Management &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The concept of Personal Knowledge Management, as outlined below, was
developed by Professor Paul Dorsey and elaborated and made concrete in
a web site called PKMNet by Jonathon Goade, a Millikin University
graduate (2000) and Scovill Award winner (1999), who completed PKMNet
as part of his James Millikin Scholar project.  Jason Frand of the
Anderson School of Management at UCLA has used the concept of Personal
Knowledge Mana&lt;img src=&quot;http://www1.feedsky.com/t1/369066506/maliang1225/csdn.net/s.gif?r=http://blog.csdn.net/maliang1225/archive/2009/10/04/4632600.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/maliang1225/369066506/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/maliang1225/369066506/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 04 Oct 2009 21:47:00 +0800</pubDate><author>Linux&amp;&amp;unix&amp;&amp;vxwork</author><guid isPermaLink="false">http://blog.csdn.net/maliang1225/archive/2009/10/04/4632600.aspx</guid><dc:creator>Linux&amp;&amp;unix&amp;&amp;vxwork</dc:creator><fs:srclink>http://blog.csdn.net/maliang1225/archive/2009/10/04/4632600.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/maliang1225/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/maliang1225/~1089707/369066506/1089706</fs:itemid></item></channel></rss>
