﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>C++博客-我相信</title><link>http://www.cppblog.com/sarah/</link><description>要让未来的自己，喜欢自己的模样。</description><language>zh-cn</language><lastBuildDate>Wed, 08 Apr 2026 17:16:46 GMT</lastBuildDate><pubDate>Wed, 08 Apr 2026 17:16:46 GMT</pubDate><ttl>60</ttl><item><title>Linux上vi(vim)编辑器使用教程</title><link>http://www.cppblog.com/sarah/archive/2012/08/01/185858.html</link><dc:creator>sarah</dc:creator><author>sarah</author><pubDate>Wed, 01 Aug 2012 03:09:00 GMT</pubDate><guid>http://www.cppblog.com/sarah/archive/2012/08/01/185858.html</guid><wfw:comment>http://www.cppblog.com/sarah/comments/185858.html</wfw:comment><comments>http://www.cppblog.com/sarah/archive/2012/08/01/185858.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/sarah/comments/commentRss/185858.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/sarah/services/trackbacks/185858.html</trackback:ping><description><![CDATA[<p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><a href="http://www.vpser.net/manage/vi.html"><span style="font-family: Georgia; ">vi(vim)</span></a><span style="font-family: Georgia; ">是上Linux非常常用的编辑器，很多Linux发行版都默认安装了vi(vim)。vi(vim)命令繁多但是如果使用灵活之后将会大大提高效率。vi是&#8220;visual interface&#8221;的缩写，vim是vi IMproved(增强版的vi)。在一般的系统管理维护中vi就够用，如果想使用代码加亮的话可以使用vim。下面</span><a href="http://www.vpser.net/" target="_blank"><span style="font-family: Georgia; ">vps侦探</span></a><span style="font-family: Georgia; ">整理一下vi的使用教程：包含vi的基本介绍、使用模式、文件的打开关闭保存、插入文本或新建行、移动光标、删除、恢复字符或行、搜索等等，算是一篇比较适合</span><a href="http://www.vpser.net/manage/vi.html"><span style="font-family: Georgia; ">新手学习vi的教程</span></a><span style="font-family: Georgia; ">。</span></p><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">vi有3个模式：插入模式、命令模式、低行模式。</span></p><blockquote style="font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><p style="margin: 0px 0px 1.8em; "><span style="font-family: Georgia; ">插入模式：在此模式下可以输入字符，按ESC将回到命令模式。</span><br /><span style="font-family: Georgia; ">命令模式：可以移动光标、删除字符等。</span><br /><span style="font-family: Georgia; ">低行模式：可以保存文件、退出vi、设置vi、查找等功能(低行模式也可以看作是命令模式里的)。</span></p></blockquote><h2><span style="font-family: Georgia; ">一、打开文件、保存、关闭文件(vi命令模式下使用)</span></h2><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">vi filename &nbsp; &nbsp; &nbsp; //打开filename文件</span><br /><span style="font-family: Georgia; ">:w &nbsp; &nbsp; &nbsp; //保存文件</span><br /><span style="font-family: Georgia; ">:w vpser.net //保存至vpser.net文件</span><br /><span style="font-family: Georgia; ">:q &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//退出编辑器，如果文件已修改请使用下面的命令</span><br /><span style="font-family: Georgia; ">:q! &nbsp; &nbsp; &nbsp; &nbsp;//退出编辑器，且不保存</span><br /><span style="font-family: Georgia; ">:wq &nbsp; &nbsp; &nbsp; &nbsp; //退出编辑器，且保存文件</span></p><h2><span style="font-family: Georgia; ">二、插入文本或行(vi命令模式下使用，执行下面命令后将进入插入模式，按ESC键可退出插入模式)</span></h2><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">a &nbsp; &nbsp; &nbsp;//在当前光标位置的右边添加文本</span><br /><span style="font-family: Georgia; ">i &nbsp; &nbsp; &nbsp;&nbsp;//在当前光标位置的左边添加文本</span><br /><span style="font-family: Georgia; ">A &nbsp; &nbsp; //在当前行的末尾位置添加文本</span><br /><span style="font-family: Georgia; ">I &nbsp; &nbsp; &nbsp;//在当前行的开始处添加文本(非空字符的行首)</span><br /><span style="font-family: Georgia; ">O &nbsp; &nbsp; //在当前行的上面新建一行</span><br /><span style="font-family: Georgia; ">o &nbsp; &nbsp; //在当前行的下面新建一行</span><br /><span style="font-family: Georgia; ">R &nbsp; &nbsp;//替换(覆盖)当前光标位置及后面的若干文本</span><br /><span style="font-family: Georgia; ">J &nbsp; &nbsp;//合并光标所在行及下一行为一行(依然在命令模式)</span></p><h2><span style="font-family: Georgia; ">三、移动光标(vi命令模式下使用)</span></h2><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">1、使用上下左右方向键</span></p><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">2、命令模式下：h &nbsp; 向左、j &nbsp; 向下 、k &nbsp; 向上、l &nbsp;向右。</span><br /><span style="font-family: Georgia; ">空格键 向右、Backspace &nbsp;向左、Enter &nbsp;移动到下一行首、- &nbsp;移动到上一行首。</span></p><h2><span style="font-family: Georgia; ">四、删除、恢复字符或行(vi命令模式下使用)</span></h2><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">x &nbsp; &nbsp; &nbsp; &nbsp; //删除当前字符</span><br /><span style="font-family: Georgia; ">nx &nbsp; &nbsp; &nbsp; &nbsp; //删除从光标开始的n个字符</span><br /><span style="font-family: Georgia; ">dd &nbsp; &nbsp; &nbsp;//删除当前行</span><br /><span style="font-family: Georgia; ">ndd &nbsp; //向下删除当前行在内的n行</span><br /><span style="font-family: Georgia; ">u &nbsp; &nbsp; &nbsp; //撤销上一步操作</span><br /><span style="font-family: Georgia; ">U &nbsp; &nbsp; &nbsp;//撤销对当前行的所有操作</span></p><h2><span style="font-family: Georgia; ">五、搜索(vi命令模式下使用)</span></h2><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">/vpser &nbsp; &nbsp; //向光标下搜索vpser字符串</span><br /><span style="font-family: Georgia; ">?vpser &nbsp; &nbsp; //向光标上搜索vpser字符串</span><br /><span style="font-family: Georgia; ">n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //向下搜索前一个搜素动作</span><br /><span style="font-family: Georgia; ">N &nbsp; &nbsp; &nbsp; &nbsp; //向上搜索前一个搜索动作</span></p><h2><span style="font-family: Georgia; ">六、跳至指定行(vi命令模式下使用)</span></h2><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">n+ &nbsp; &nbsp; &nbsp; &nbsp;//向下跳n行</span><br /><span style="font-family: Georgia; ">n- &nbsp; &nbsp; &nbsp; &nbsp; //向上跳n行</span><br /><span style="font-family: Georgia; ">nG &nbsp; &nbsp; &nbsp; &nbsp;//跳到行号为n的行</span><br /><span style="font-family: Georgia; ">G &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //跳至文件的底部</span></p><h2><span style="font-family: Georgia; ">七、设置行号(vi命令模式下使用)</span></h2><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">:set &nbsp;nu &nbsp; &nbsp; //显示行号</span><br /><span style="font-family: Georgia; ">:set nonu &nbsp; &nbsp;//取消显示行号</span></p><h2><span style="font-family: Georgia; ">八、复制、粘贴(vi命令模式下使用)</span></h2><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">yy &nbsp; &nbsp;//将当前行复制到缓存区，也可以用 "ayy 复制，"a 为缓冲区，a也可以替换为a到z的任意字母，可以完成多个复制任务。</span><br /><span style="font-family: Georgia; ">nyy &nbsp; //将当前行向下n行复制到缓冲区，也可以用 "anyy 复制，"a 为缓冲区，a也可以替换为a到z的任意字母，可以完成多个复制任务。</span><br /><span style="font-family: Georgia; ">yw &nbsp; &nbsp;//复制从光标开始到词尾的字符。</span><br /><span style="font-family: Georgia; ">nyw &nbsp; //复制从光标开始的n个单词。</span><br /><span style="font-family: Georgia; ">y^ &nbsp; &nbsp; &nbsp;//复制从光标到行首的内容。&nbsp;&nbsp;</span><a href="http://www.vpser.net/"><span style="color: #ffffff; font-family: Georgia; ">VPS侦探</span></a><br /><span style="font-family: Georgia; ">y$ &nbsp; &nbsp; &nbsp;//复制从光标到行尾的内容。</span><br /><span style="font-family: Georgia; ">p &nbsp; &nbsp; &nbsp; &nbsp;//粘贴剪切板里的内容在光标后，如果使用了前面的自定义缓冲区，建议使用"ap 进行粘贴。</span><br /><span style="font-family: Georgia; ">P &nbsp; &nbsp; &nbsp; &nbsp;//粘贴剪切板里的内容在光标前，如果使用了前面的自定义缓冲区，建议使用"aP 进行粘贴。</span></p><h2><span style="font-family: Georgia; ">九、替换(vi命令模式下使用)</span></h2><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">:s/old/new &nbsp; &nbsp; &nbsp;//用new替换行中首次出现的old</span><br /><span style="font-family: Georgia; ">:s/old/new/g &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;//用new替换行中所有的old</span><br /><span style="font-family: Georgia; ">:n,m&nbsp;s/old/new/g &nbsp; &nbsp; //用new替换从n到m行里所有的old</span><br /><span style="font-family: Georgia; ">:%s/old/new/g &nbsp; &nbsp; &nbsp;//用new替换当前文件里所有的old</span></p><h2><span style="font-family: Georgia; ">十、编辑其他文件</span></h2><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">:e otherfilename &nbsp; &nbsp;//编辑文件名为otherfilename的文件。</span></p><h2><span style="font-family: Georgia; ">十一、修改文件格式</span></h2><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">:set fileformat=unix &nbsp; //将文件修改为unix格式，如win下面的文本文件在linux下会出现^M。</span></p><p style="margin: 0px 0px 1.8em; font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px; "><span style="font-family: Georgia; ">总结：</span><a href="http://www.vpser.net/manage/vi.html"><span style="font-family: Georgia; ">vi(vim)教程</span></a><span style="font-family: Georgia; ">虽然有比较多的命令，但是只要勤加练习，相信你会很快的熟练掌握，同时也会给你的工作或学习带来更高的效率。当如果不知道自己处在什么模式时可以按2次Esc键即可回到命令模式，会有最后提醒一点：注意大小写！！！<br />[ 原文链接：</span><a href="http://www.vpser.net/manage/vi.html">http://www.vpser.net/manage/vi.html</a><br /><span style="font-family: Georgia; ">]</span></p><img src ="http://www.cppblog.com/sarah/aggbug/185858.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/sarah/" target="_blank">sarah</a> 2012-08-01 11:09 <a href="http://www.cppblog.com/sarah/archive/2012/08/01/185858.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>web1.0与web2.0的区别</title><link>http://www.cppblog.com/sarah/archive/2012/05/11/174568.html</link><dc:creator>sarah</dc:creator><author>sarah</author><pubDate>Fri, 11 May 2012 07:40:00 GMT</pubDate><guid>http://www.cppblog.com/sarah/archive/2012/05/11/174568.html</guid><wfw:comment>http://www.cppblog.com/sarah/comments/174568.html</wfw:comment><comments>http://www.cppblog.com/sarah/archive/2012/05/11/174568.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/sarah/comments/commentRss/174568.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/sarah/services/trackbacks/174568.html</trackback:ping><description><![CDATA[<p style="text-align: left; widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; letter-spacing: normal; font: 14px/26px Arial; white-space: normal; orphans: 2; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"><span style="font-family: Comic Sans MS">WEB1.0是以数据为核心的网，那我觉得WEB2.0是以人为出发点的互联网。 我们看一看最近的一些WEB2.0产品，就可以理解以上观点。</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">Blog： 用户织网，发表新知识，和其他用户内容链接，进而非常自然的组织这些内容。</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">RSS： 用户产生内容自动分发，定阅</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">Podcasting： 个人视频/声频的发布/定阅</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">SNS： blog+人和人之间的链接</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">WIKI： 用户共同建设一个大百科全书</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">从知识生产的角度看，WEB1.0的任务，是将以前没有放在网上的人类知识，通过商业的力量，放到网上去。WEB2.0的任务是，将这些知识，通过每个用户的浏览求知的力量，协作工作，把知识有机的组织起来，在这个过程中继续将知识深化，并产生新的思想火花；</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">从内容产生者角度看，WEB1.0是商业公司为主体把内容往网上搬，而WEB2.0则是以用户为主，以简便随意方式，通过blog/podcasting 方式把新内容往网上搬；</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">从交互性看，WEB1.0是网站对用户为主；WEB2.0是以P2P为主。</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">从技术上看，WEB客户端化，工作效率越来越高。比如像Ajax技术, GoogleMAP/Gmail里面用得出神入化。</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">我们看到，用户在互联网上的作用越来越大；他们贡献内容，传播内容，而且提供了这些内容之间的链接关系和浏览路径。在SNS里面，内容是以用户为核心来组织的。WEB2.0是以用户为核心的互联网。</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">那么，这种意义上的WEB2.0，和Tim Berners-Lee的语义网，有什么不同呢？语义网的出发点是数据的规整及可重复换鞯饔茫岢鍪褂糜镆寤哪谌莘&#9353;脊ぞ撸?nbsp;试图从规则和技术标准上使互联网更加有序。 Google等搜索引擎，在没有语义网的情况下，尽可能的给互联网提供了线索。 WEB2.0则是鼓励用户用最方便的办法发布内容（blog/podcasting），但是通过用户自发的（blog）或者系统自动以人为核心（SNS）的互相链接给这些看似凌乱的内容提供索引。 因为这些线索是用户自己提供，更加符合用户使用感受。互联网逐渐从以关键字为核心的组织方式和阅读方式，到以互联网用户的个人portal（SNS）为线索，或者以个人的思想脉络（blog／rss）为线索的阅读方式。WEB2.0强调用户之间的协作。WIKI是个典型例子。从这个角度看，互联网是在变得更有序，每个用户都在贡献:要么贡献内容,要么贡献内容的次序.</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">对下一代互联网的看法，还会有很多的讨论。有一点可以肯定，WEB2.0是以人为核心线索的网。提供更方便用户织网的工具，鼓励提供内容。根据用户在互联网上留下的痕迹，组织浏览的线索，提供相关的服务，给用户创造新的价值，给整个互联网产生新的价值，才是WEB2.0商业之道&nbsp;</span></p>
<p style="text-align: left; widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; letter-spacing: normal; font: 14px/26px Arial; white-space: normal; orphans: 2; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"><strong style="font-family: Comic Sans MS">以上的话来自MOP网董事长兼CEO</strong></p>
<p style="text-align: left; widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; letter-spacing: normal; font: 14px/26px Arial; white-space: normal; orphans: 2; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"><span style="font-family: Comic Sans MS">WEB2.0将成就新一轮网站创业、变革的狂潮</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">很感谢web2.0这个概念的诞生，它让互联网又焕发了新的活力，并吸引着资本流向web2.0，无数具有创新意义的web2.0网站应运而生，短短的几个月时间，圈内圈外关于web2.0的争议、讨论已经引起了创业者和投资者的广泛关注。如果你在IT圈混，而且你想获得风险投资，你想立即创业致富，那你最好了解web2.0，吃透web2.0，创立web2.0，因为国外投资商已经认定web2.0前途无限。不知道是否新一轮网络泡沫的诞生还是新一轮网络变革的机遇，web2.0反正给我们带来了激情。</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">what&#8217;s web 2.0？Wikipedia中有相应的描述，不过仍然含糊不清，不能作为web2.0的准确定义。有的说web2.0可定义为&#8220;可写的互联网&#8221;，这也不完全准确。</span><strong style="font-family: Comic Sans MS"><u>关于web1.0和2.0的区别，我很赞同吕欣欣的一番比较，"web1.0天天谈门户，web2.0谈个人化；web1.0谈内容，web2.0谈应用；web1.0商业模式，web2.0谈服务；web1.0谈密闭、大而全，web2.0大家谈开放、谈联合；web1.0网站中心化，web2.0谈个人中心化；web1.0一对一，web2.0谈社会性网络；web1.0不知道你是狗，web2.0你去年夏天干了什么我一清二楚甚至想要干什么呢。。。"</u></strong><span class="Apple-converted-space">&nbsp;</span><br /><br />我认为的web2.0的典型特征和表现形式：个人出版和聚合(如blog,rss,atom)、社会协作(wiki,软件工程协作)、更好的用户体验（如简短的url、ajax技术）、开放APIs(Flickr、del.icio.us、Bloglines)，用户参与占主导(sns,blog,社会化书签,网摘)。除此之外我还认为网络游戏也具有web2.0的性质，因为它讲究社会协作、讲究用户参与占主导，讲究给用户带来更好的体验。<span class="Apple-converted-space">&nbsp;</span><br /><br />新事物新概念的诞生，总是会存在反对意见的，国外的就不说了，国内老冒的"朝web 2.0泼点冷水"、周天舒的"给&#8220;所谓的&#8221;Web 2.0泼点热水"，都从技术角度分析认为web2.0是早就已经使用的技术，这有些让我失望，因为他们的观点走向了狭隘，没有看到后面的本质。也许web2.0的几种表现形式早就有了，例如rss,blog,ajax等等都已经有年头了，但是真正大规模应用却是在近期，个体现象的发展与汇合逐渐被提炼成一种模式、理论和概念，这就脱离了其表现形式这一技术外壳所赋予的基本内涵，通俗点说这就是"量变到质变"的一个革命性的过程，这是对表面现象的更深层次的发掘和提炼，带有更具变革更具创意更具激情的深刻含义。<span class="Apple-converted-space">&nbsp;</span><br /><br />在如今传统的互联网模式越来越单一，并逐渐走向了死胡同，仅靠服务商自身的鼠标＋水泥来造就庞大的内容平台和用户数量，这样的模式如今已经受到严峻挑战。而web2.0的浪潮已经席卷了全球最知名的网络巨头：yaohoo、msn、google等，国内的门户网站首当其冲需要进行web2.0变革，而其他网络应用，如求职招聘、同学录、分类信息、b2b、b2c等各类网站都需要经过web2.0的改造，来面对新的挑战和冲击。<span class="Apple-converted-space">&nbsp;</span><br /><br />普通用户也许不需要知道sns,web2.0等概念，但作为互联网的创业者、参与者、投资者，你不能只做旁观，你需要行动起来，机会就在眼前。<span class="Apple-converted-space">&nbsp;</span><br /><br />web2.0让我感受到了互联网新一轮发展的巨大机遇，也让我感受到了互联网寻求突破创新的迫切。当然除了国内copy国外的常用web2.0模式以外，我也一直在探寻着整合性质的web2.0，传统应用的web2.0化以及更合适的web2.0的创业模式，欢迎大家有空交流。</p>
<p style="text-align: left; widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; letter-spacing: normal; font: 14px/26px Arial; white-space: normal; orphans: 2; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"><span style="font-family: Comic Sans MS">全民上网到全民织网 Web 2.0掀起人民战争</span></p>
<p style="text-align: left; widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; letter-spacing: normal; font: 14px/26px Arial; white-space: normal; orphans: 2; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"><span style="font-family: Comic Sans MS">作者： CNET科技资讯网</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">Web 2.0 正在让互联网逐渐找回Internet的真正含义：平等、交互，去中心化。你不应该只是互联网的读者，你也应该是互联网的作者；你不该只是在互联网上冲浪，你本身就是波浪制造者。Web 2.0 之于Web 1.0 ，如同分布式计算之于集中式计算，网格之于大型主机。</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">CNET科技资讯网7月5日北京报道（文/高飞）当Internet的创立者利克&#183;李德在1963年提出&#8220;超银河网络&#8221;（Internet的前身）时，他想的是如何让计算机和网络帮助人们沟通和思考，如何让网络&#8220;去中心化（Decentralization）&#8221;。但在上世纪90年代初雅虎等超级门户网站出现之后，互联网的发展却一度远离利克。李德的初衷。</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">雅虎、亚马逊，和中国百度、搜狐等超级网站凭借强势的内容，常年驻扎在网民的收藏夹中。网民们美其名曰的&#8220;网上冲浪&#8221;其实就是围绕这些网络&#8220;恒星&#8221;所作的圆周运动，网民仅仅充当互联网的读者，而不是作者，这时的互联网是&#8220;只读&#8221;的。但Web 2.0 的出现，结束了了网民周期性赶集运动。</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">Blog作者Keso说：&#8220;在Web 1.0 时代，我们所能做的，就是各处瞎逛，并美其名曰&#8212;&#8212;冲浪（即Web 浏览）。Web 2.0 带给我们的，是一个可以读写的互联网，Blog、Wiki等是其中的代表。&#8221;</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><span style="font-family: Comic Sans MS">借助Web 2.0 ，一个不仅&#8220;可读&#8221;，而且&#8220;可写&#8221;和&#8220;可交互&#8221;的互联网正逐渐浮出水面。利克&#183;李德30多年前的梦想正逐渐被实现。</span><span class="Apple-converted-space">&nbsp;</span><br /><br /><strong style="font-family: Comic Sans MS">Web 2.0 重要名词解释</strong><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">Blog：Blog是个人或群体以时间顺序所作的一种记录，且不断更新。Blog之间的交流主要是通过反向引用（TrackBack ）和留言/ 评论（Comment ）的方式来进行的。Blog的作者（Blogger ），既是这个Blog的创作人，也是其档案管理人。</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">TrackBack ：是一种Blog应用工具，它可以让Blogger 知道有哪些人看到自己的文章后撰写了与之有关的内容。这种功能实现了网站之间的互相通告；因此它也可以看作一种提醒功能。</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">RSS：是一种用于共享新闻和其他Web 内容的数据交换规范。读者可以通过RSS 订阅一个Blog，确知该Blog最近的更新。</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">Wiki：1995年，沃德。坎宁安（Ward Cunningham ）为了方便模式社群的交流创建了全世界第一个w i k i 系统&#8212;&#8212;WikiWikiWeb （</span><a style="font-family: Comic Sans MS; color: rgb(51,102,153); text-decoration: none" href="http://c2.com/cgi/wiki" target="_blank">http://c2.com/cgi/wiki</a><span style="font-family: Comic Sans MS">），并用它建立了波特兰模式知识库，在建立过程中，沃德。坎宁安创造了Wiki的概念和名称，并且实现了支持这些概念的服务系统。</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">Social Bookmark ：社会化书签，它可以让你把喜爱的网站随时加入自己的网络书签中；你可以用多个关键词（Tag ）而不是分类来标示和整理你的书签，并与其他人共享。</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">六度分隔理论：（Six Degrees of Separation ）。1967年，哈佛大学的心理学教授Stanley Milgram （1933～1984）创立。简单地说：&#8220;你和任何一个陌生人之间所间隔的人不会超过六个，也就是说，最多通过六个人你就能够认识任何一个陌生人。&#8221;六度分隔理论的数学解释是：如果每个人平均认识260 人，其六度就是2606＝1188137600000.消除一些节点重复，那也几乎覆盖了整个地球人口若干多倍。</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">（名词解释的主要内容来自Wiki网络大百科全书）</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">小资料</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">SNS 以及六度分隔理论</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">Social Networking Service （简称SNS ，社会化网络软件）是Web 2.0 体系下的一个技术应用架构。SNS 基于六度分隔理论运作，这个理论的通俗解释是：&#8220;在人脉网络中，要结识任何一位陌生的朋友，中间最多只要通过六个朋友就可以达到目的。&#8221;</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">我们举个例子更好地介绍六度分隔理论。一位叫做&#8220;FLYPI &#8221;的网友用歌手孙燕姿做起了实验，如何才能与这个&#8220;亚洲小天后&#8221;建立联系呢？他认为以下的链条可能行之有效：&#8220;我&#8594;初中同学Eric&#8594; Eric 在南洋理工大学念书的表哥Michael &#8594; Michael的教授，也就是孙燕姿的父亲&#8594;孙燕姿。&#8221;</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">放在Web 2.0 的背景下，每个用户都拥有自己的Blog、自己维护的Wiki、社会化书签或者Podcast.用户通过Tag 、RSS 或者IM、邮件等方式连接到一起，&#8220;按照六度分隔理论，每个个体的社交圈都不断放大，最后成为一个大型网络，这就是社会化网络（SNS ）。&#8221;</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Google推出1GB 免费信箱也是一个SNS 应用，通过网友之间的互相邀请，Gmail 在很短的时间内就获得了巨大的用户群。</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;</span><br style="font-family: Comic Sans MS" /><span style="font-family: Comic Sans MS">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SNS 还处于起步阶段，对于它的商业价值和未来的发展方向，现在也没有一个统一的认识。</span><span style="font-family: Comic Sans MS" class="Apple-converted-space">&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [&nbsp;<a href="http://blog.csdn.net/sy_litao/article/details/2283366">http://blog.csdn.net/sy_litao/article/details/2283366</a> ]<br /></span></p><img src ="http://www.cppblog.com/sarah/aggbug/174568.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/sarah/" target="_blank">sarah</a> 2012-05-11 15:40 <a href="http://www.cppblog.com/sarah/archive/2012/05/11/174568.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>李开复谈互联网如何赚钱</title><link>http://www.cppblog.com/sarah/archive/2012/04/24/172667.html</link><dc:creator>sarah</dc:creator><author>sarah</author><pubDate>Tue, 24 Apr 2012 14:25:00 GMT</pubDate><guid>http://www.cppblog.com/sarah/archive/2012/04/24/172667.html</guid><wfw:comment>http://www.cppblog.com/sarah/comments/172667.html</wfw:comment><comments>http://www.cppblog.com/sarah/archive/2012/04/24/172667.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/sarah/comments/commentRss/172667.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/sarah/services/trackbacks/172667.html</trackback:ping><description><![CDATA[<p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">互联网的兴起和发展不但是我们在信息时代中创造出的最伟大的奇迹之一，事实上，它也是最近五十年来对人们的生活习惯和行为方式影响最大的技术因素。只要看看我们身边发生的一切就不难知道，没有什么东西能像互联网那样深入到个人生活、人际交往、教育培训、游戏娱乐、企业管理、金融商贸、国际交流乃至爱情婚姻、生老病死等各个层面，也没有什么东西能像互联网那样同时将全世界数以亿计的不同肤色、不同种族、不同背景的人吸引到一个虚拟的大世界里。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; ">　<strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #ffffff; font-family: Verdana; ">　网民不同，赚钱模式不同</strong></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　中国互联网有什么不一样，中国的互联网非常大，去年差不多2亿9千万，已经超过了美国总人口，可以说中国已经成为互联网大国。中国互联网使用的模式跟美国没什么不一样，音乐搜索，电子商务都和美国差不多。再看一下应用，在中国非常的普及，比如说在线阅读新闻。电子邮件在美国使用得稍微多一些，但差别不是很大。很多的美国人会假设一个互联网模式在英国日本美国如果做得成，在中国也会成功。但是这种假设是错误的，所有国家网民的行为差不多，互联网是反应用户的镜子，他们高兴能反应出来，他们好奇能反应出来，他们愤怒也反应出来。世界上不同地方的互联网有一些不同之处，比如说能开放平等的获取信息，连接人文，电子邮件，公开搜索，这些在很多国家一样，但是内容不一样。如果社会学家看这个问题他们肯定会同意，国家和民众的状况不同，互联网的状况不同。有的中国公司动作更加敏捷，而且了解本国的情况，发展会更快，很多美国公司因为这个原因，有做本地市场的困难，谷歌没有放弃中国的市场，我们做的不错，但是这方面我们不是做的最好的。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; ">　　<strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #ffffff; font-family: Verdana; ">中国的电子商务怎么赚到钱</strong></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　讲讲不同国家互联网的不同点和相同点，比如说监管使用模式，还有人们的状况。举电子商务的例子，美国每家都有信用卡，中国信用卡的普及率比较低，平均200人有一张信用卡。这跟经济发展有关，而且对这个卡片不相信，30年40年前美国也是用了很长时间做信用卡发行。让人们相信互联网需要时间，所以在中国做电子商务就有支付手段的问题。</span><span id="hkstock_hk01688" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #ffffff; font-family: Verdana; ">阿里巴巴</span><span id="quote_hk01688" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #ffffff; font-family: Verdana; ">(14,0.34,2.49%)</span><span style="background-color: #ffffff; font-family: Verdana; ">做的是平台，把钱放在那里，开一个帐户，就可以付款，解决了信用的问题。淘宝是阿里巴巴的子公司，采取了其他非常好的做法，就是取消了手续费，这一招非常吸引人气。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　最近阿里巴巴做了一些广告，做的非常好，这种业务模式非常有效，使</span><span id="hkstock_hk00085" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #ffffff; font-family: Verdana; ">中国电子</span><span id="quote_hk00085" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #ffffff; font-family: Verdana; ">(0.88,-0.02,-2.22%)</span><span style="background-color: #ffffff; font-family: Verdana; ">商务跟美国的完全不一样。通过不同的方式解决信用问题。还有就是送货问题，中国的物流跟美国相比效率不是很高，有时候地址不是很清楚，UPS很贵。本地有的是用自行车送货，如果你去当当图书网，需要买书就留一个电话号码，第二天就会有人骑自行车给你送，交易的成本很低。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　QQ是即时通讯工具，腾讯的产品，有广告盈利。QQ的虚拟产品QQ秀，在线的时候可以看，那怎么样收到钱呢？方式是这样，比如一件虚拟的NBA衣服，你的头像可以先免费使用，一个月后如果还要就付一点点钱，每个月付1毛钱，你同意就开帐户付钱。大家都非常羡慕你有NBA的衣服，一个月后说你每个月要付一毛钱使用费可以吗？如果你不愿意的话就失去了这件非常好的衣服，我想每个月付一毛钱是挺好的选择。腾讯这种做法是非常有意思和聪明的，而且很合法，可以招来很多生意，有更多这类聪明的电子商务出现，还有网游。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; ">　<strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #ffffff; font-family: Verdana; ">　中国的网游怎么赚到钱</strong></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　有人说中国只是克隆，只是拷贝美国的一些方法，没有自己的创新，我觉得不对。网络游戏是个例子，我不支持网游，但它有很多的创新。有在纽约上市的两家公司，一家叫巨人，一家叫征途，两家公司很类似。他们都有非常好的主意，如付钱拿到武器升级，还有多重的市场宣传，即你必须有20个弟子，你是他们的老师，这就是让更多的人玩这个网游。这么一个简单的想法，让他们从白手起家到三年内在纽约的证监所上市，赚了很多的钱，他们非常聪明。我跟他们的CEO沟通，说你怎么挣了那么多的钱，他说我们卖饼，就是虚拟社区卖蛋糕。我问多少钱，他说非常便宜，跟实际生活中的蛋糕一样的。这个东西非常的贵，或者说你可以在网络游戏里获得更多的荣誉，只要你愿意多付一点钱。这是 90/10的现象，每个月10%的人花几千美元升级，创造90%的利润。为什么玩家们这么做？我不是社会学家，但是可能跟虚荣心有关，社会上一些人希望自己非常显赫，非常有钱，他们可以在虚拟的游戏里实现理想。还有更多创新的例子，巨人公司有一类产品，他们分析网游的玩家不是为了打斗上线，而是与虚拟美女约会，而实际上美女ID的用户可能是男的，或者说是女的但没有那么漂亮。巨人公司就设计了一个美丽验证，通过网络认证某个用户确实是美女，就发个认证标志，男的用户看到经过认证的美女用户提出约会，见面了就不会发现美女用户其实是一个男的，或者说是很丑的一个女性。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　女生为什么会登陆，因为在虚拟网络中她们会有礼物，就像去酒吧女士免费。一些人认为中国没有好的创新，这是错的。中国人在网游上有非常多的创新，非常多的点子。即便是金融危机时期，网游公司也是在赚钱的，像盛大、网易都非常赚钱，就是网游支撑的。能赚到钱的原因有很多，像这些用户想获得很多的荣誉，有很多闲暇的时间，很多都是独生子女等等。&nbsp;</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; ">　　<strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #ffffff; font-family: Verdana; ">中国的网吧怎么赚到钱</strong></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　再说网吧，有人联想到是玩游戏的地方，这是一个非常狭隘的不准确的理解。网吧也有豪华型的，可以在网吧约会。这种网吧有非常好的空间，有包间，可以吃饭喝咖啡。也有比较简单的网吧，就几张桌子放着电脑，这是在农村地区，收费比较低，农村的小孩不是在这里玩儿游戏，而是第一次接触互联网。Google刚刚进入中国时犯了一个错误，认为网吧是玩游戏的。我们现在有一个想法，要保证农村的小孩接触互联网，他们现在接受了，以后上大学也会认可。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　网吧是人们了解互联网的场所，美国模式是有一个不错的产品，宣传一下，大家看到产品广告，很快的亲朋好友也讲这个产品，就火了，谷歌就是这么发展起来的。在中国不是这样的发展模式，网络上的影响力非常的有限，只有10%的互联网用户会注意到广告，大部分人是在网吧里听网吧管理员或是游戏伙伴的意见，所以一个公司如果有一个好产品他们会通过网吧宣传。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; ">　<strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #ffffff; font-family: Verdana; ">　音乐、视频、交友，人来钱也来</strong></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　在中国音乐是免费下载的，怎么样免费下载呢？我总是会劝告大家，不要这么做，现在盗版音乐下载非常泛滥，谷歌是唯一提供合法的免费音乐下载的。上谷歌网站就可以下载周杰伦的音乐，免费的而且是合法的。而且在google上听音乐是非常享受的，我们走在市场的前沿，哪怕自己先付钱都要让用户享受这些，不然我们就没有办法成功，现在我们采用广告商资助的方式。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　谷歌有视频搜索，在中国我们没有托管视频内容，因为目前监管不允许。视频方面土豆网做得不错，可以看看这个网是如何挣钱的。主要还是广告。如背景的大广告，和冒出来的广告窗口。视频网站的发展非常快，土豆网上大多不是专业制作的内容，都是个人用户上传的内容。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　社会交友网站，这些交友网站在中国非常火热，如开心网是1年前创立的，经过6个月的营运已经超过了大的门户网站。主打的产品是一些游戏，其中一个游戏是开心农场，能偷蔬菜，每天你去种蔬菜，过一段时间会成熟，你可以走访你朋友的蔬菜地，如果他不在你就可以把蔬菜偷走。不知道社会学家怎么理解，但是这个游戏非常火热，还有停车场，奴隶交易等游戏，这些游戏风靡速度非常的快。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　开心网上有很多游戏，创始人没什么钱，所以买了开心网001.COM域名，然后克隆了别人的界面，你们上开心网吗？其实完全是克隆的。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; ">　　<strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #ffffff; font-family: Verdana; ">互联网的中国风味</strong></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　三个例子说说中国特色的互联网。互联网对中国发挥了巨大的作用，打开了人的眼界，接触了更多信息，加强了人与人之间的连接，尤其是一些年轻人追求物质上的成功，但在现实生活中成功要很辛苦的工作，现实中财富不是很多，就需要一些虚拟的。互联网是镜子，看一下这方面的例子。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　第一个例子是博客，中国差不多有1亿6千万的博客，跟美国比影响非常大。我常常去大学演讲，过去我不知道大家的反应，现在演讲后我可以收集博客资料，有的博客说非常好，有的说不够好。网上有很多博客，你可以表达，也有表达的渠道。还有明星博客，比如徐静蕾，在过去的几年差不多是2亿6千万的点击，她在博客写的文章，很多人来写评论，从一个侧面说明了博客的受欢迎程度。还有韩寒，他是80后，也是愤青，这不见得是一个贬义词，他是一个有正义感也很爱国的人，他非常坦率的说了一些别人不爱说的话。和一些愤青不一样，他是比较积极的，已经成为偶像，把博客变成了畅销书。他名利双收，对年轻人的影响非常大。博客和新闻已经合为一体，把每一个人都变成了记者和作者。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　第二个是人肉搜索。有一些人由于愤怒发表博客，导致社会事件。有一位女士要自杀，自杀前发表了一个博客，说亲爱的朋友我要离开这个世界，我老公有外遇，他居然这样对待我。一些网民非常激动，说她丈夫是谁？第三者是谁？后来网民成立团队把这个丈夫和第三者都找了出来，批评这个丈夫怎么不对。非常有影响，造成了社会事件。</span></p><p style="margin: 15px 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: #f5f8fd; font-family: Simsun; line-height: 23px; "><span style="background-color: #ffffff; font-family: Verdana; ">　　还有个例子是上级对秘书无理发脾气，于是秘书写了一封辞职信，用电子邮件发给整个公司而后被网络转载。很多人支持她，谴责她的上级不道德，对公司进行抗议。最后上级只好辞职了，这就是人肉搜索，用互联网做斗争。互联网除了是获取信息，连接人们的工具，也是匿名平台。有一些人要捣乱，他们利用匿名说一些实际生活中不会说的话。这是过于偏激的。还有一个例子，是去年四川的地震。地震发生后人们使用互联网来告知谁需要帮助，告知直升机可以降落在什么地方，搜查寻找那些失踪的亲戚朋友。互联网作为一种抗震救灾的工具在使用。当然也有一些反面的例子，比如有一些人搜索哪些人捐了多少钱物，哪些吝啬的富人捐了多少钱，又搜索了一些大方的富人捐钱的情况，通过这些例子可以了解中国互联网与国际的不同点和相同点，所以互联网是本地的互联网，而且在很多情况下用积极的方式帮助中国的社会向前发展。</span></p><img src ="http://www.cppblog.com/sarah/aggbug/172667.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/sarah/" target="_blank">sarah</a> 2012-04-24 22:25 <a href="http://www.cppblog.com/sarah/archive/2012/04/24/172667.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>求职讲堂·调研相关</title><link>http://www.cppblog.com/sarah/archive/2012/04/19/172040.html</link><dc:creator>sarah</dc:creator><author>sarah</author><pubDate>Thu, 19 Apr 2012 14:37:00 GMT</pubDate><guid>http://www.cppblog.com/sarah/archive/2012/04/19/172040.html</guid><wfw:comment>http://www.cppblog.com/sarah/comments/172040.html</wfw:comment><comments>http://www.cppblog.com/sarah/archive/2012/04/19/172040.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/sarah/comments/commentRss/172040.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/sarah/services/trackbacks/172040.html</trackback:ping><description><![CDATA[<span style="font-family: Verdana; ">1.知己知彼，百战不殆。</span><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">2.拿完年终奖后离职率高，着重留意招聘信息。</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">3.做简历时尽量附上照片，HR如是说。</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">4.调研什么</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">&nbsp; （1）职位信息（职责和内容/招聘规模流程/驻地和出差/薪酬和福利/笔经和面经/职业发展路径/上下级关系）</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">&nbsp; （2）公司信息（业务范围/历史大事/文化之都/职位需求/社会口碑/关键人物）</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">&nbsp; （3）行业信息（行业划分/典型公司/典型职位/行业前景）</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">5.调研渠道</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">&nbsp; （1）网络（BBS/搜索引擎/专业招聘网站/公司主页/就业指导中心/OIEGG/应届生/google、百度百科/中华英才网/师大北大清华就业指导中心/高效人才网/我学网/大街网/前程无忧（公务员））</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">&nbsp; （2）人脉（让周围的人知道你在找工作，让你知道周围的人都在哪工作）</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">&nbsp; （3）实地（工作环境交通着装工作地点/考察市场表现市场店面客户/了解各主要行业及有关公司/交谈中准备几个买点吸引HR兴趣）</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">6.他山之石</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">&nbsp; （1）李开复 给中国学生的几封信 我学网</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">&nbsp; （2）孙振要 前HP大众化总裁 《工作与生活的感悟》</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">&nbsp; （3）《从无领到白领》 《这些到底有没有人告诉你》 《不抱怨的世界》 《杜拉拉升职记》 《高效能人士的七个习惯》 《了风四则》</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">&nbsp; （4）求职就业版精华区</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">7.小组作业</span></div><div style="font-family: 宋体, Verdana, Arial, Helvetica, sans-serif; "><span style="font-family: Verdana; ">&nbsp; 请展示你们队目标职位的调研结果（5分钟）&#8212;&#8212;PPT、summary、valuable information。</span></div><img src ="http://www.cppblog.com/sarah/aggbug/172040.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/sarah/" target="_blank">sarah</a> 2012-04-19 22:37 <a href="http://www.cppblog.com/sarah/archive/2012/04/19/172040.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>求职讲堂·准备自己</title><link>http://www.cppblog.com/sarah/archive/2012/04/19/172039.html</link><dc:creator>sarah</dc:creator><author>sarah</author><pubDate>Thu, 19 Apr 2012 14:36:00 GMT</pubDate><guid>http://www.cppblog.com/sarah/archive/2012/04/19/172039.html</guid><wfw:comment>http://www.cppblog.com/sarah/comments/172039.html</wfw:comment><comments>http://www.cppblog.com/sarah/archive/2012/04/19/172039.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/sarah/comments/commentRss/172039.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/sarah/services/trackbacks/172039.html</trackback:ping><description><![CDATA[<div style="font-family: simsun; text-align: left; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; "><span style="word-wrap: normal; word-break: normal; line-height: 25px; color: #000000; font-family: Verdana; ">似乎是从今年开学之后，心里迅速的开始为了找工作而焦虑起来。</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr><span style="color: #000000; font-family: Verdana; ">&nbsp;有幸参加学校某协会举办的第十三届求职讲堂，希望从中能够得到一些收获，使得接下来的求职之路能够少一些坎坷，多一些顺利和如意。</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr><span style="color: #000000; font-family: Verdana; ">&nbsp;第一堂课师兄讲的内容不多，但也从讲课内容还有其它同学的经验分享中还是有一些收获：</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr><span style="color: #000000; font-family: Verdana; ">（1）别人自我介绍的时候要注意倾听，尊重别人的同时也会有额外的收获。</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr><span style="color: #000000; font-family: Verdana; ">（2）有时候听比说更重要，学会察言观色，在适当的时候插话会达到事半功倍的功效。不仅适用于销售人员，同时也适用于平时到与人交往。</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr><span style="color: #000000; font-family: Verdana; ">（3）ENGLISH要流利。</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr><span style="color: #000000; font-family: Verdana; ">（4）国企对细节要求比较严苛一些，比如说获奖证书面试时要随带备查，要准备一份英文简历，搜集薪酬等信息，培养写作能力（如散文、议论文的写作能力）。</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr><span style="color: #000000; font-family: Verdana; ">（5）沟通能力的培养。不只包括演讲，还包括书面沟通（PPT、EMAIL）跨语言沟通（ENGLISH）等。</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr><span style="color: #000000; font-family: Verdana; ">（6）找工作是一项持久战，良好的</span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">心态非常重要，面试中保持一颗平常心才能够做到临危不乱，展现给卖家一个最真实最优秀的自我。</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; "><span style="word-wrap: normal; word-break: normal; line-height: 22px; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">（7）责任感。毁约的时候要提前告知公司，最好的方法是推荐自己尚未找到工作的同学给该公司，尽量减小损失达到双赢。</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; "><span style="word-wrap: normal; word-break: normal; line-height: 22px; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">（8）进公司要先注意学习和积累，不要空口谈战略。</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; "><span style="word-wrap: normal; word-break: normal; line-height: 22px; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">（9）</span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">男士扎领带应把衬衣第一个扣子遮住。</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; "><span style="word-wrap: normal; word-break: normal; line-height: 22px; font-family: Helvetica, Arial, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">（10）实习。喜欢一份工作一定要去实习，只有在实习过程中才能了解到你是否真的喜欢这份工作以及这份工作是否适合你。</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; "><span style="word-wrap: normal; word-break: normal; line-height: 22px; font-family: Helvetica, Arial, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">&nbsp;课后：</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; "><span style="word-wrap: normal; word-break: normal; line-height: 22px; font-family: Helvetica, Arial, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">（1）金正昆 &nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">礼仪讲座</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; "><span style="word-wrap: normal; word-break: normal; line-height: 22px; font-family: Helvetica, Arial, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">（2）许国庆 &nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">求职讲座</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; "><span style="word-wrap: normal; word-break: normal; line-height: 22px; font-family: Helvetica, Arial, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">（3）视频 &nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">&nbsp;兰迪教授到最后一课</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; "><span style="word-wrap: normal; word-break: normal; line-height: 22px; font-family: Helvetica, Arial, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">（4）TOW &nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">&nbsp;求职经验精华分享帖</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; "><span style="word-wrap: normal; word-break: normal; line-height: 22px; font-family: Helvetica, Arial, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">（5）电影 &nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">&nbsp;The Pursuit of Happyness</span></div><div style="text-align: left; line-height: 25px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; color: #666666; font-family: Verdana, Arial, Helvetica, 宋体, sans-serif; "><span style="word-wrap: normal; word-break: normal; line-height: 22px; font-family: Helvetica, Arial, sans-serif; ">&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr>&nbsp;&nbsp;<wbr></span><span style="word-wrap: normal; word-break: normal; line-height: 22px; color: #000000; font-family: Verdana; ">&nbsp;最后用师兄到一句话来勉励自己：心态，永远不死；生活，才会依然奔跑在路上。加油。</span></div><img src ="http://www.cppblog.com/sarah/aggbug/172039.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/sarah/" target="_blank">sarah</a> 2012-04-19 22:36 <a href="http://www.cppblog.com/sarah/archive/2012/04/19/172039.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>