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

<channel>
	<title>THE SIMPLE LIVE &#187; Work</title>
	<atom:link href="http://simplelive.org/html/category/work/feed" rel="self" type="application/rss+xml" />
	<link>http://simplelive.org</link>
	<description>木秀于林 风必摧之</description>
	<lastBuildDate>Fri, 30 Jul 2010 02:21:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>延迟加载图片的 jQuery 插件：Lazy Load</title>
		<link>http://simplelive.org/html/2010/1643.html</link>
		<comments>http://simplelive.org/html/2010/1643.html#comments</comments>
		<pubDate>Mon, 26 Jul 2010 05:12:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[WebTech]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery插件]]></category>
		<category><![CDATA[Lazy Load]]></category>
		<category><![CDATA[图片]]></category>
		<category><![CDATA[延迟加载]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1643</guid>
		<description><![CDATA[Lazy loader 是一个延迟加载图片的 jQuery 插件，在图片非常多的网页中应用会很有用，在浏览器可视区域外的图片不会被载入，直到用户将页面滚动到它们所在的位置才加载，这样对于含有很多图片的比较长的网页来说，可以加载的更快，并且还能节省服务器带宽。 使用Lazy Loader ，需要确保你的页面已经加载 jQuery Javascript 库，然后再加载 Lazy Load 的 Javascript 文件即可，因为很多和我一样的新手都不会加载jQuery Javascript 库的方法，浪费了许多时间。方法：WordPress加载 jQuery Javascript 库，可以通过将代码添加到主题header.php中&#60;head&#62;&#60;/head&#62;之间任意位置来实现，我所用的是Google提供的jquery库：http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js；jquery.lazyload.js 可以点此下载http://simplelive.org/wp-content/themes/blixed/jquery.lazyload.js，添加如下格式代码： &#60;script src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&#8221; type=&#8221;text/javascript&#8221; charset=&#8221;utf-8&#8243;&#62;&#60;/script&#62; &#60;script src=&#8221;http://simplelive.org/wp-content/themes/blixed/jquery.lazyload.js&#8221; type=&#8221;text/javascript&#8221; charset=&#8221;utf-8&#8243;&#62;&#60;/script&#62; 添加之后，恭喜你，你的WordPress任意页面都会自动加载 jQuery Javascript 库，只要你使用主题并加载&#60;?php get_header(); ?&#62;（相信你会用到主题的）。现在你可以在加载jQuery Javascript 、jquery.lazyload.js 库之后，添加你所要实现的功能的jQuery代码到相关页面，延迟加载图片代码格式： &#60;script type=&#8221;text/javascript&#8221; charset=&#8221;utf-8&#8243;&#62; $(function() { $(&#8220;img&#8221;).lazyload({ placeholder : &#8220;images/grey.gif&#8221;, effect      : &#8220;fadeIn&#8221; }); }); &#60;/script&#62; [...]<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1643.html">延迟加载图片的 jQuery 插件：Lazy Load</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p>Lazy loader 是一个延迟加载图片的 jQuery 插件，在图片非常多的网页中应用会很有用，在浏览器可视区域外的图片不会被载入，直到用户将页面滚动到它们所在的位置才加载，这样对于含有很多图片的比较长的网页来说，可以加载的更快，并且还能节省服务器带宽。</p>
<p>使用Lazy Loader ，需要确保你的页面已经加载 jQuery Javascript 库，然后再加载 Lazy Load 的 Javascript 文件即可，因为很多和我一样的新手都不会加载jQuery Javascript 库的方法，浪费了许多时间。方法：WordPress加载 jQuery Javascript 库，可以通过将代码添加到主题header.php中&lt;head&gt;&lt;/head&gt;之间任意位置来实现，我所用的是Google提供的jquery库：<a href="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" target="_blank">http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js</a>；jquery.lazyload.js 可以点此下载<a href="http://simplelive.org/wp-content/themes/blixed/jquery.lazyload.js" target="_blank">http://simplelive.org/wp-content/themes/blixed/jquery.lazyload.js</a>，添加如下格式代码：</p>
<blockquote>
<div id="_mcePaste">&lt;script src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&#8221; type=&#8221;text/javascript&#8221; charset=&#8221;utf-8&#8243;&gt;&lt;/script&gt;</div>
<div id="_mcePaste">&lt;script src=&#8221;http://simplelive.org/wp-content/themes/blixed/jquery.lazyload.js&#8221; type=&#8221;text/javascript&#8221; charset=&#8221;utf-8&#8243;&gt;&lt;/script&gt;</div>
</blockquote>
<div>添加之后，恭喜你，你的WordPress任意页面都会自动加载 jQuery Javascript 库，只要你使用主题并加载&lt;?php get_header(); ?&gt;（相信你会用到主题的）。现在你可以在加载jQuery Javascript 、jquery.lazyload.js 库之后，添加你所要实现的功能的jQuery代码到相关页面，延迟加载图片代码格式：</div>
<div>
<blockquote>
<div>&lt;script type=&#8221;text/javascript&#8221; charset=&#8221;utf-8&#8243;&gt;</div>
<div>$(function() {</div>
<div>$(&#8220;img&#8221;).lazyload({</div>
<div>placeholder : &#8220;images/grey.gif&#8221;,</div>
<div>effect      : &#8220;fadeIn&#8221;</div>
<div>});</div>
<div>});</div>
<div>&lt;/script&gt;</div>
</blockquote>
</div>
<div>至此只要你的WordPress加载&lt;?php get_header(); ?&gt;页面，那么你的任意页面便都会加载该 jQuery 代码，实现图片的延迟加载功能，赶快去看看吧。也可参照作者主页查看更多功能的实行方法：<a title="http://www.appelsiini.net/projects/lazyload" href="http://www.appelsiini.net/projects/lazyload" target="_blank">lazyload英文</a>，images/grey.gif所用图片1&#215;1：<a title="http://simplelive.org/wp-content/themes/blixed/images/grey.gif" href="http://simplelive.org/wp-content/themes/blixed/images/grey.gif" target="_blank">grey.gif</a>。</div>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1643.html">延迟加载图片的 jQuery 插件：Lazy Load</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">相关日志</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2010/1623.html" title="使用Google CDN服务提供的jQuery库">使用Google CDN服务提供的jQuery库</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1643.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>使用Google CDN服务提供的jQuery库</title>
		<link>http://simplelive.org/html/2010/1623.html</link>
		<comments>http://simplelive.org/html/2010/1623.html#comments</comments>
		<pubDate>Fri, 23 Jul 2010 05:21:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[WebTech]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Google CDN]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[库]]></category>
		<category><![CDATA[服务]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1623</guid>
		<description><![CDATA[GOOGLE提供了很多种jQuery CDN加载方式 方式一： 你在网站中是怎样引入jquery脚本库的呢？很多人是这样做的： &#60;script type=&#8221;text/javascript&#8221; src=&#8221;/js/jQuery.min.js&#8221;&#62;&#60;/script&#62; 其实我们可以通过Google的CDN（在计划要发布的“网站前端优化系列”文章中，会着重讲解CDN，敬请关注）服务来载入jquery库。相比上面的做法，这样会获得更好的性能。代码如下： &#60;script type=&#8221;text/javascript&#8221; src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&#8221;&#62;&#60;/script&#62; 这样做可以加快页面并行加载速度，减少加载延迟并获得更好的缓存 方式二： jQuery，让我们控制页面元素更加方便快捷，让我们在编写js的时候不需要过多地考虑浏览器特性问题了。但是jQuery功能越强大，它本身的文件也越大。在做网站优化的时候,通常会通过优化js、css和图片文件能挤出来的几百k尺寸的下载量. Google挺够意思，就提供了jQuery库，通过使用Google提供的jQuery库，Google的服务器和线路品质那自然是不在话下的。即提高了下载速度又减少了自己服务器的并发连接数。 用起来也很简单，直接在网页里引用Google服务器上的相关js文件就可以了。不过，如果引用多个js，就要插入多段的script。Google也提供了相应的办法，那就是google load。我们只需要在页面里引用一个js文件，就可以根据需要实时加载用到的js库了。 首先在页头部分加入以下这行代码： &#60; script type=&#8221;text/javascript&#8221; src=&#8221;http://www.google.com/jsapi&#8221;&#62;&#60;/script&#62; 加载jQuery，可以这样使用： google.load(&#8220;jquery&#8221;,&#8221;1.3.2&#8243;); jQuery1.4版本的可以使用：google.load(&#8220;jquery&#8221;,&#8221;1.4&#8243;); 这样我们就从Google的最近的CDN镜像上加载了jQuery 1.3.2版的js库，接下来就可以正常写js代码了。不过，即使是Google的CDN镜像，下载也毕竟是需要时间的，万一代码库还没有下载完而浏览器已经解释到了下面的代码了怎么办？我们可以设定在js库加载完以后才开始执行js： google.setOnLoadCallback(function(){//要执行的代码}); 更多有关google jsapi的相关介绍和文档，可以参考：google AJAX 库 API 除了jQuery,Google还提供供了以下这些js框架/库的API： jQuery UI Prototype script.aculo.us MooTools（via） 使用Google CDN服务提供的jQuery库 originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. [...]<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1623.html">使用Google CDN服务提供的jQuery库</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">GOOGLE提供了很多种jQuery CDN加载方式</div>
<div id="_mcePaste">方式一：</div>
<div id="_mcePaste">你在网站中是怎样引入jquery脚本库的呢？很多人是这样做的：</div>
<blockquote>
<div id="_mcePaste">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;/js/jQuery.min.js&#8221;&gt;&lt;/script&gt;</div>
</blockquote>
<div id="_mcePaste">其实我们可以通过Google的CDN（在计划要发布的“网站前端优化系列”文章中，会着重讲解CDN，敬请关注）服务来载入jquery库。相比上面的做法，这样会获得更好的性能。代码如下：</div>
<blockquote>
<div id="_mcePaste">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&#8221;&gt;&lt;/script&gt;</div>
</blockquote>
<div id="_mcePaste">这样做可以加快页面并行加载速度，减少加载延迟并获得更好的缓存</div>
<div id="_mcePaste">方式二：</div>
<div id="_mcePaste">jQuery，让我们控制页面元素更加方便快捷，让我们在编写js的时候不需要过多地考虑浏览器特性问题了。但是jQuery功能越强大，它本身的文件也越大。在做网站优化的时候,通常会通过优化js、css和图片文件能挤出来的几百k尺寸的下载量.</div>
<div id="_mcePaste">Google挺够意思，就提供了jQuery库，通过使用Google提供的jQuery库，Google的服务器和线路品质那自然是不在话下的。即提高了下载速度又减少了自己服务器的并发连接数。</div>
<div id="_mcePaste">用起来也很简单，直接在网页里引用Google服务器上的相关js文件就可以了。不过，如果引用多个js，就要插入多段的script。Google也提供了相应的办法，那就是google load。我们只需要在页面里引用一个js文件，就可以根据需要实时加载用到的js库了。</div>
<div id="_mcePaste">首先在页头部分加入以下这行代码：</div>
<blockquote>
<div id="_mcePaste">&lt; script type=&#8221;text/javascript&#8221; src=&#8221;http://www.google.com/jsapi&#8221;&gt;&lt;/script&gt;</div>
</blockquote>
<div id="_mcePaste">加载jQuery，可以这样使用：</div>
<blockquote>
<div id="_mcePaste">google.load(&#8220;jquery&#8221;,&#8221;1.3.2&#8243;);</div>
</blockquote>
<blockquote>
<div id="_mcePaste">jQuery1.4版本的可以使用：google.load(&#8220;jquery&#8221;,&#8221;1.4&#8243;);</div>
</blockquote>
<div id="_mcePaste">这样我们就从Google的最近的CDN镜像上加载了jQuery 1.3.2版的js库，接下来就可以正常写js代码了。不过，即使是Google的CDN镜像，下载也毕竟是需要时间的，万一代码库还没有下载完而浏览器已经解释到了下面的代码了怎么办？我们可以设定在js库加载完以后才开始执行js：</div>
<blockquote>
<div id="_mcePaste">google.setOnLoadCallback(function(){//要执行的代码});</div>
</blockquote>
<div id="_mcePaste">更多有关google jsapi的相关介绍和文档，可以参考：<a title="http://code.google.com/intl/zh-CN/apis/ajaxlibs/" href="http://code.google.com/intl/zh-CN/apis/ajaxlibs/" target="_blank">google AJAX 库 API</a></div>
<div id="_mcePaste">除了jQuery,Google还提供供了以下这些js框架/库的API：</div>
<div id="_mcePaste">jQuery UI</div>
<div id="_mcePaste">Prototype</div>
<div id="_mcePaste">script.aculo.us</div>
<div id="_mcePaste">MooTools（<a title="http://shanyou.cnblogs.com/" href="http://shanyou.cnblogs.com/" target="_blank">via</a>）</div>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1623.html">使用Google CDN服务提供的jQuery库</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">相关日志</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2010/1643.html" title="延迟加载图片的 jQuery 插件：Lazy Load">延迟加载图片的 jQuery 插件：Lazy Load</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1623.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>当众演讲的10项顶级技巧</title>
		<link>http://simplelive.org/html/2010/1620.html</link>
		<comments>http://simplelive.org/html/2010/1620.html#comments</comments>
		<pubDate>Wed, 21 Jul 2010 13:25:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[当众演讲的10项顶级技巧]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1620</guid>
		<description><![CDATA[1.展示您的激情 如果我仅有一条建议的话，那就是：对您的话题充满激情，让您的热情爆发出来！不错，您的话题需要完美的内容，需要专业的、精心设计的视觉效果。但是如果您对自己的话题没有深刻的、发自内心深处的自信，那么一切将化为乌有。世界级大师与普通演讲者的最大区别在于，他们具有以真诚而令人兴奋的方式与听众进行沟通的能力。不要退缩！自信起来！将您的激情展现给大家看！ 2.开个好头 您以前应该听说过：第一印象非常重要。相信这一点。开始2-3分钟的演讲是最重要的。观众要喜欢您，一开始会给您几分钟适应——不要错过这个机会。很多的演讲者栽倒在这里，因为他们花太多的时间来介绍过量的背景知识，或者是他们个人的/专业的历史。 3.保持简短 当人们坐下被动地听您演讲时，他们的注意力是非常短的。在演讲开始的时，以及在您说“综上所述……”的时候，听众的注意力最集中。这是人之常情，特别是对于今天繁忙（经常劳累）的知识工作者来说。因此，如果您有30分钟的演讲，那就25分钟完成吧。最好是让观众感到没听够，而不是让他们觉得您讲的太多。专业的娱乐界艺人就很懂得这个道理。 4.离开讲台 站在讲台前面，或离开讲台，去接近您的听众。讲台是您和听众之间的障碍，而我们演讲的目的是与听众建立联系。扫除您和听众之间的实物障碍，有助于您与听众建立联系，利于沟通。 5.使用遥控翻页器 使用一种小型的手持式遥控翻页器来控制您的幻灯片。翻页器可使您能够离开讲台。这是绝对必要的！KeySan有两种遥控翻页产品，我吐血推荐Keyspan。不过也有许多人喜欢Interlink 牌子的。 6. 记住“B”键 当您的PPT或Keynote幻灯片处于放映状态时，按下“B”键，屏幕立即变为空白。这一招在您需要转移话题时非常有用。通过把幻灯片变成空白，就可以将听众的注意力全都转移到您身上。当您准备好继续演讲时，再次按下“B”键，幻灯片图像就会重新出现。 7.眼神接触 尽力用眼睛盯住听众，而不是朝大伙轻瞄一眼。由于您正使用电脑，因此您决不需要看您后面的大屏幕——短时间低头看一下电脑屏幕就行了。把背朝向听众的做法一定会使您失去他们的。而当您和听众保持良好的眼神接触时，别忘了也要微笑一下。除非您的话题非常严肃，否则保持微笑是非常非常有好处的。 8.打开室内灯光 如果您是在会议室或教室演讲，那么关灯之后的幻灯片效果好些。但是要对明亮的屏幕图像和室内光线之间进行权衡。关了灯——除非是让大家睡觉——就是把大家的注意力都引到屏幕上了！听众应该多看您，而不是看屏幕！现在的投影仪已经足够亮了，您可以将室内的大多数灯光打开。 9.为小组提供电视 如果您的听众是一个小组，那么你就可以将电脑连接到一个大型电视（通过S端接入）。有了电视屏幕，你就可以打开大部分的灯光。请确保您的文本和图形足够大，这样在小屏幕上才看得清楚。您可能需要增大字号的大小。 10.在任何时候：礼貌、和蔼、专业 当观众提问或作评论的时候，你应该表现心态随和，并感谢他们参与。即使有人刻意刁难，您也要表现出绅士或淑女之风，以高姿态、礼貌的方式妥善处理。真正的专业人士总是能保持冷静，控制局面。请记住，这是您的声誉，即使遇到最难对付的听众，也始终保持和蔼可亲。 当众演讲的10项顶级技巧 originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. Random Posts张华的遗憾,平和的赢家 (2)别这样：世纪东方 (4)人保部将首次就&#8221;同工同酬&#8221;作出规定 (1)Microsoft .NET Framework 3.5 (0)WP2.5评论关闭问题 (0)Mozilla Firefox 3.0 RC1 Build1 (0)迅雷下载 [...]<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1620.html">当众演讲的10项顶级技巧</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p>1.展示您的激情<br />
如果我仅有一条建议的话，那就是：对您的话题充满激情，让您的热情爆发出来！不错，您的话题需要完美的内容，需要专业的、精心设计的视觉效果。但是如果您对自己的话题没有深刻的、发自内心深处的自信，那么一切将化为乌有。世界级大师与普通演讲者的最大区别在于，他们具有以真诚而令人兴奋的方式与听众进行沟通的能力。不要退缩！自信起来！将您的激情展现给大家看！</p>
<p>2.开个好头<br />
您以前应该听说过：第一印象非常重要。相信这一点。开始2-3分钟的演讲是最重要的。观众要喜欢您，一开始会给您几分钟适应——不要错过这个机会。很多的演讲者栽倒在这里，因为他们花太多的时间来介绍过量的背景知识，或者是他们个人的/专业的历史。</p>
<p>3.保持简短<br />
当人们坐下被动地听您演讲时，他们的注意力是非常短的。在演讲开始的时，以及在您说“综上所述……”的时候，听众的注意力最集中。这是人之常情，特别是对于今天繁忙（经常劳累）的知识工作者来说。因此，如果您有30分钟的演讲，那就25分钟完成吧。最好是让观众感到没听够，而不是让他们觉得您讲的太多。专业的娱乐界艺人就很懂得这个道理。</p>
<p>4.离开讲台<br />
站在讲台前面，或离开讲台，去接近您的听众。讲台是您和听众之间的障碍，而我们演讲的目的是与听众建立联系。扫除您和听众之间的实物障碍，有助于您与听众建立联系，利于沟通。</p>
<p>5.使用遥控翻页器<br />
使用一种小型的手持式遥控翻页器来控制您的幻灯片。翻页器可使您能够离开讲台。这是绝对必要的！KeySan有两种遥控翻页产品，我吐血推荐Keyspan。不过也有许多人喜欢Interlink 牌子的。</p>
<p>6. 记住“B”键<br />
当您的PPT或Keynote幻灯片处于放映状态时，按下“B”键，屏幕立即变为空白。这一招在您需要转移话题时非常有用。通过把幻灯片变成空白，就可以将听众的注意力全都转移到您身上。当您准备好继续演讲时，再次按下“B”键，幻灯片图像就会重新出现。</p>
<p>7.眼神接触<br />
尽力用眼睛盯住听众，而不是朝大伙轻瞄一眼。由于您正使用电脑，因此您决不需要看您后面的大屏幕——短时间低头看一下电脑屏幕就行了。把背朝向听众的做法一定会使您失去他们的。而当您和听众保持良好的眼神接触时，别忘了也要微笑一下。除非您的话题非常严肃，否则保持微笑是非常非常有好处的。</p>
<p>8.打开室内灯光<br />
如果您是在会议室或教室演讲，那么关灯之后的幻灯片效果好些。但是要对明亮的屏幕图像和室内光线之间进行权衡。关了灯——除非是让大家睡觉——就是把大家的注意力都引到屏幕上了！听众应该多看您，而不是看屏幕！现在的投影仪已经足够亮了，您可以将室内的大多数灯光打开。</p>
<p>9.为小组提供电视<br />
如果您的听众是一个小组，那么你就可以将电脑连接到一个大型电视（通过S端接入）。有了电视屏幕，你就可以打开大部分的灯光。请确保您的文本和图形足够大，这样在小屏幕上才看得清楚。您可能需要增大字号的大小。</p>
<p>10.在任何时候：礼貌、和蔼、专业<br />
当观众提问或作评论的时候，你应该表现心态随和，并感谢他们参与。即使有人刻意刁难，您也要表现出绅士或淑女之风，以高姿态、礼貌的方式妥善处理。真正的专业人士总是能保持冷静，控制局面。请记住，这是您的声誉，即使遇到最难对付的听众，也始终保持和蔼可亲。</p>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1620.html">当众演讲的10项顶级技巧</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2009/1010.html" title="某处机房初看">某处机房初看</a> (2)</li><li><a href="http://simplelive.org/html/2007/61.html" title="Returnil Virtual System V1.70.6191">Returnil Virtual System V1.70.6191</a> (0)</li><li><a href="http://simplelive.org/html/2009/1042.html" title="无名花－网络部">无名花－网络部</a> (5)</li><li><a href="http://simplelive.org/html/2007/222.html" title="Microsoft SQL Server 2008 November CTP">Microsoft SQL Server 2008 November CTP</a> (0)</li><li><a href="http://simplelive.org/html/2010/1541.html" title="“海底捞”的管理智慧">“海底捞”的管理智慧</a> (2)</li><li><a href="http://simplelive.org/html/2007/96.html" title="Trend Micro 2008 v16.0 Build 1412 Final 系列">Trend Micro 2008 v16.0 Build 1412 Final 系列</a> (0)</li><li><a href="http://simplelive.org/html/2008/405.html" title="Visual Studio 2008 Service Pack 1">Visual Studio 2008 Service Pack 1</a> (0)</li><li><a href="http://simplelive.org/html/2009/1109.html" title="昨儿下班心情好">昨儿下班心情好</a> (4)</li><li><a href="http://simplelive.org/html/2008/869.html" title="为什么会累？">为什么会累？</a> (0)</li><li><a href="http://simplelive.org/html/2007/251.html" title="仁慈对己!">仁慈对己!</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1620.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何克服职场性格缺陷？</title>
		<link>http://simplelive.org/html/2010/1562.html</link>
		<comments>http://simplelive.org/html/2010/1562.html#comments</comments>
		<pubDate>Fri, 02 Jul 2010 05:39:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[如何克服职场性格缺陷？]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1562</guid>
		<description><![CDATA[运动心理学的研究表明，各项体育活动都需要运动者具有一定的自我控制能力，因此，有针对性地选择体育锻炼，是有效纠正个人心理缺陷、培养健全人格的心理训练方法。 1、缺陷类型：紧张 此类人一遇重要场合或考试就惊慌失措，严重时大脑一片空白，从而导致正常水平无法发挥。 运动处方：这些人要克服性格缺陷，应多参加竞争激烈的运动项目，特别是足球、篮球、排球等比赛活动。 理由：赛场上风云变幻，紧张而激烈，只有拥有沉着冷静的心态，才能从容应对。若能时常经受这种激烈对抗的考验，人在遇事时就不至于过分紧张，学习就会更加从容。 2、缺陷类型：胆怯 此类人天性胆小，学习起来怕承担失败的风险，动辄害羞脸红，性格腼腆。 运动处方：建议参加游泳、溜冰、拳击、滑雪、单双杠、跳马、平衡木等运动项目。 理由：这些活动要求人们必须不断地克服害怕摔倒、跌痛等种种心理畏惧，以勇敢、无畏的精神去战胜困难，方能越过障碍。经过一段时期的锻炼，相信你的勇气会逐渐增加。 3、缺陷类型：自卑 此类人缺乏应有的自信心，习惯于未上战场就先打退堂鼓，经常担心自己完不成学习任务，挨老师、父母的骂。 运动处方：可以选择一些简单易做的体育项目，譬如跳绳、俯卧撑、广播操、跑步等。 理由：以上项目简单易行，有助于舒缓绷得过紧的“弦”，不断提醒自己“我还行”。坚持锻炼，自信心一定会逐步增强。 4、缺陷类型：急躁 此类人缺乏耐性、急于求成，往往因一时冲动犯下错误。 运动处方：要克服急躁情绪，可选择下象棋、打太极拳、慢跑、长距离散步、游泳及骑自行车、射击等运动项目。 　　理由：上述运动强度不高，强调持久性和耐力，坚持从事这样的活动，能帮助人调节神经系统的活动，增强自我控制能力，从而达到稳定情绪、克服焦躁的目的。 5、缺陷类型：犹疑 犹疑者不论大事小情都时常犹豫不决，办事缺乏果断，瞻前顾后，结果往往会错失良机，甚至做出错误抉择。 运动处方：建议选择乒乓球、网球、羽毛球、跳高、摩托、跳远、击剑、跨栏、角力等项目。 理由：以上项目要求运动者头脑冷静、思维敏捷、判断准确、当机立断，任何多疑、犹豫、动摇都可能导致失败，因而久练能帮助人培养果决的性格品质。 6、缺陷类型：自大 此类人凡事喜欢逞强，过于高估自己，轻视别人，易引起同伴反感。 运动处方：不妨有意选择难度较大、动作较为复杂的运动，如跳水、体操、马拉松等项目，或者找一些实力水平远超过自己的高手进行象棋、乒乓球、羽毛球等项目的对垒。 理由：人外有人，天外有天，多体验运动的艰难，有助于克服自负、骄傲的毛病。 7、缺陷类型：孤僻 这种人天生不大合群，不善于与人交往，容易被社会孤立起来，一不小心就使学习和生活陷入四面楚歌的境地。 运动处方：建议少从事单人的运动项目，多选择足球、篮球、排球或是接力跑、拔河等团队性体育项目。 理由：坚持参加这些集体项目的锻炼，能增强自身活力和与人合作精神，使运动者更加热爱集体，逐步适应与同学、朋友的交往，从而逐渐改变孤僻性格。（via） 如何克服职场性格缺陷？ originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. Random Posts谷歌音乐搜索改版 (3)近日空间将再次更换 (0)Visual Studio 2008 SDK 1.1 [...]<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1562.html">如何克服职场性格缺陷？</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p>运动心理学的研究表明，各项体育活动都需要运动者具有一定的自我控制能力，因此，有针对性地选择体育锻炼，是有效纠正个人心理缺陷、培养健全人格的心理训练方法。</p>
<p><strong><span style="color: #3fa600;">1、缺陷类型：紧张</span></strong></p>
<p>此类人一遇重要场合或考试就惊慌失措，严重时大脑一片空白，从而导致正常水平无法发挥。</p>
<p>运动处方：这些人要克服性格缺陷，应多参加竞争激烈的运动项目，特别是足球、篮球、排球等比赛活动。</p>
<p>理由：赛场上风云变幻，紧张而激烈，只有拥有沉着冷静的心态，才能从容应对。若能时常经受这种激烈对抗的考验，人在遇事时就不至于过分紧张，学习就会更加从容。</p>
<p><strong><span style="color: #3fa600;">2、缺陷类型：胆怯</span></strong></p>
<p>此类人天性胆小，学习起来怕承担失败的风险，动辄害羞脸红，性格腼腆。</p>
<p>运动处方：建议参加游泳、溜冰、拳击、滑雪、单双杠、跳马、平衡木等运动项目。</p>
<p>理由：这些活动要求人们必须不断地克服害怕摔倒、跌痛等种种心理畏惧，以勇敢、无畏的精神去战胜困难，方能越过障碍。经过一段时期的锻炼，相信你的勇气会逐渐增加。</p>
<p><strong><span style="color: #3fa600;">3、缺陷类型：自卑</span></strong></p>
<p>此类人缺乏应有的自信心，习惯于未上战场就先打退堂鼓，经常担心自己完不成学习任务，挨老师、父母的骂。</p>
<p>运动处方：可以选择一些简单易做的体育项目，譬如跳绳、俯卧撑、广播操、跑步等。</p>
<p>理由：以上项目简单易行，有助于舒缓绷得过紧的“弦”，不断提醒自己“我还行”。坚持锻炼，自信心一定会逐步增强。</p>
<p><strong><span style="color: #3fa600;">4、缺陷类型：急躁</span></strong></p>
<p>此类人缺乏耐性、急于求成，往往因一时冲动犯下错误。</p>
<p>运动处方：要克服急躁情绪，可选择下象棋、打太极拳、慢跑、长距离散步、游泳及骑自行车、射击等运动项目。 　　理由：上述运动强度不高，强调持久性和耐力，坚持从事这样的活动，能帮助人调节神经系统的活动，增强自我控制能力，从而达到稳定情绪、克服焦躁的目的。</p>
<p><strong><span style="color: #3fa600;">5、缺陷类型：犹疑</span></strong></p>
<p>犹疑者不论大事小情都时常犹豫不决，办事缺乏果断，瞻前顾后，结果往往会错失良机，甚至做出错误抉择。</p>
<p>运动处方：建议选择乒乓球、网球、羽毛球、跳高、摩托、跳远、击剑、跨栏、角力等项目。</p>
<p>理由：以上项目要求运动者头脑冷静、思维敏捷、判断准确、当机立断，任何多疑、犹豫、动摇都可能导致失败，因而久练能帮助人培养果决的性格品质。</p>
<p><strong><span style="color: #3fa600;">6、缺陷类型：自大</span></strong></p>
<p>此类人凡事喜欢逞强，过于高估自己，轻视别人，易引起同伴反感。</p>
<p>运动处方：不妨有意选择难度较大、动作较为复杂的运动，如跳水、体操、马拉松等项目，或者找一些实力水平远超过自己的高手进行象棋、乒乓球、羽毛球等项目的对垒。</p>
<p>理由：人外有人，天外有天，多体验运动的艰难，有助于克服自负、骄傲的毛病。</p>
<p><strong><span style="color: #3fa600;">7、缺陷类型：孤僻</span></strong></p>
<p>这种人天生不大合群，不善于与人交往，容易被社会孤立起来，一不小心就使学习和生活陷入四面楚歌的境地。</p>
<p>运动处方：建议少从事单人的运动项目，多选择足球、篮球、排球或是接力跑、拔河等团队性体育项目。</p>
<p>理由：坚持参加这些集体项目的锻炼，能增强自身活力和与人合作精神，使运动者更加热爱集体，逐步适应与同学、朋友的交往，从而逐渐改变孤僻性格。（<a href="http://www.5time.cn/show.php?tid=5574" target="_blank">via</a>）</p>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1562.html">如何克服职场性格缺陷？</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2007/115.html" title="GMAIL容量达到3.7G">GMAIL容量达到3.7G</a> (1)</li><li><a href="http://simplelive.org/html/2007/45.html" title="抛弃站长站,投向雅虎统计">抛弃站长站,投向雅虎统计</a> (0)</li><li><a href="http://simplelive.org/html/2007/73.html" title="Mono v1.2.51-开源的.NET框架">Mono v1.2.51-开源的.NET框架</a> (0)</li><li><a href="http://simplelive.org/html/2008/404.html" title="三种感情">三种感情</a> (0)</li><li><a href="http://simplelive.org/html/2010/1368.html" title="avatar 1080p">avatar 1080p</a> (8)</li><li><a href="http://simplelive.org/html/2007/1.html" title="Hello world!">Hello world!</a> (1)</li><li><a href="http://simplelive.org/html/2010/1534.html" title="24块固体硬盘联手狂飙">24块固体硬盘联手狂飙</a> (2)</li><li><a href="http://simplelive.org/html/2008/668.html" title="什么是爱">什么是爱</a> (1)</li><li><a href="http://simplelive.org/html/2008/869.html" title="为什么会累？">为什么会累？</a> (0)</li><li><a href="http://simplelive.org/html/2007/12.html" title="Nokia 6120 classic &#038; Nokia 6267发布上市">Nokia 6120 classic &#038; Nokia 6267发布上市</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1562.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>教你六招如何做好演讲</title>
		<link>http://simplelive.org/html/2010/1559.html</link>
		<comments>http://simplelive.org/html/2010/1559.html#comments</comments>
		<pubDate>Sun, 27 Jun 2010 08:20:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[教你六招如何做好演讲]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1559</guid>
		<description><![CDATA[有多少次你因为会议上演讲者呆板的陈述而感到无聊？反之，想想自己的演讲报告，你有多投入，又怎能确定可以吸引你的听众呢？你想表达的意思真的都传递出去了吗？ 下面就介绍六个绝佳方法，让你的陈述更富吸引力。 舍弃PPT 用PPT来做演讲报告实属普遍，但这真的是表达你自己想法的最好方式吗？用PPT的最大弊端是它将你紧紧束缚住了——你不得不按着屏幕上写好的来说。听众们看着幻灯片，根本不需要听你在讲什么。大多数用PPT的陈述报告总是有大量的幻灯片，幻灯片上的信息也过多，这实在枯燥无聊。试着将你的想法压缩成几个点，然后直接表达出来。看着你的听众，对着他们讲话，用少数几张甚至完全不用幻灯片。用你的直接和热情来代替PPT。 发自内心的表达 没有什么比激情更能说服人了——所以，对于你的想法持有激情吧。个人经历和强烈的情感总是比干巴巴的事实和数据更能吸引你的听众。当然，你也可以将你的个人情感赋予数据支持，这样会更好。但是，从你个人开始，你要注意的是怎样将这个经历跟自己产生联系的同时还要跟你听众产生联系。从个人经历延伸到跟听众的生活与职业息息相关的报告，是有趣而富有力量的，也最能吸引他们的注意。 富有幽默感 许多演讲者对讲笑话总是感到害羞，觉得自己的笑话会得不到任何回应，不过这确实值得一试。听众一般会比较欣赏那些愿意去取悦他们的演讲者，而不是那个在台上做简单陈述的人。仔细选择好你笑话的台词，多排演几次，记个时间，这样你再讲时就能满怀信心了。自嘲性质的笑话总是保险的。开开会场上有名气的几个人的玩笑也是不错的选择，但是之前要先问过他们。还有，跟种族、性有关或富有攻击性的笑话则要回避。 边走边讲 不使用PPT的另一个好处就是你不用一直待在讲台上，不停地按着鼠标。你可以在讲台上来回走动。当你走动时，一定要直视台下的听众，确保与他们有眼神接触。这种方式可以传送出的活力和说服力是躲在讲台后怎样也不可能做到的。 变换你的音调 许多演讲者在讲话时都很单调——从头到尾一模一样的节奏，一模一样的声量，一模一样的音调。要是你能在演讲过程中变换你的声音，听众们一定更感兴趣。你的音调一定要丰富而清晰——时而大声时而轻柔都是必要的。有时候，最有力的观点可以用非常轻柔的声音表达出来的，伴随着听众的呼吸声让他们接收。而一个演讲者最有力的却又常常未被充分利用的武器，就是暂停。适时的运用暂停可以使关键信息达到预期的效果，赋予冲击力且印象持久。 保持简单 告诉听众他们会听到什么，以及听到内容很重要的原因。比如，“我将给出四个要点，这可以帮助你们今年的市场份额翻一番”。接着你就可以开始说了，最后再总结和重复你的主要观点，结尾时的总结要富有力量和激发性。冗长、复杂的报告看起来很尖端，但往往引不起听众的兴趣，说完了也没什么可以记住的。优秀的报告会向听众呈现清晰的观点，而这往往富有启发性，富有力量，同时容易让人记住。 原文：Six Ways to Transform your Presentation – Lifehack.org 转自 ：褪墨 译者：何可人（译言） 教你六招如何做好演讲 originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. Random PostsAOL正式宣布停止Netscape的研发和支持 (0)Microsoft .NET Framework 3.5 (0)Visual Studio 2008 Service Pack 1 [...]<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1559.html">教你六招如何做好演讲</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p>有多少次你因为会议上演讲者呆板的陈述而感到无聊？反之，想想自己的演讲报告，你有多投入，又怎能确定可以吸引你的听众呢？你想表达的意思真的都传递出去了吗？</p>
<p>下面就介绍六个绝佳方法，让你的陈述更富吸引力。</p>
<ul>
<li>
<h3><strong>舍弃PPT</strong></h3>
</li>
</ul>
<p>用PPT来做演讲报告实属普遍，但这真的是表达你自己想法的最好方式吗？用PPT的最大弊端是它将你紧紧束缚住了——你不得不按着屏幕上写好的来说。听众们看着幻灯片，根本不需要听你在讲什么。大多数用PPT的陈述报告总是有大量的幻灯片，幻灯片上的信息也过多，这实在枯燥无聊。试着将你的想法压缩成几个点，然后直接表达出来。看着你的听众，对着他们讲话，用少数几张甚至完全不用幻灯片。用你的直接和热情来代替PPT。</p>
<ul>
<li>
<h3><strong>发自内心的表达</strong></h3>
</li>
</ul>
<p>没有什么比激情更能说服人了——所以，对于你的想法持有激情吧。个人经历和强烈的情感总是比干巴巴的事实和数据更能吸引你的听众。当然，你也可以将你的个人情感赋予数据支持，这样会更好。但是，从你个人开始，你要注意的是怎样将这个经历跟自己产生联系的同时还要跟你听众产生联系。从个人经历延伸到跟听众的生活与职业息息相关的报告，是有趣而富有力量的，也最能吸引他们的注意。</p>
<ul>
<li>
<h3><strong>富有幽默感</strong></h3>
</li>
</ul>
<p>许多演讲者对讲笑话总是感到害羞，觉得自己的笑话会得不到任何回应，不过这确实值得一试。听众一般会比较欣赏那些愿意去取悦他们的演讲者，而不是那个在台上做简单陈述的人。仔细选择好你笑话的台词，多排演几次，记个时间，这样你再讲时就能满怀信心了。自嘲性质的笑话总是保险的。开开会场上有名气的几个人的玩笑也是不错的选择，但是之前要先问过他们。还有，跟种族、性有关或富有攻击性的笑话则要回避。</p>
<ul>
<li>
<h3><strong>边走边讲</strong></h3>
</li>
</ul>
<p>不使用PPT的另一个好处就是你不用一直待在讲台上，不停地按着鼠标。你可以在讲台上来回走动。当你走动时，一定要直视台下的听众，确保与他们有眼神接触。这种方式可以传送出的活力和说服力是躲在讲台后怎样也不可能做到的。</p>
<ul>
<li>
<h3><strong>变换你的音调</strong></h3>
</li>
</ul>
<p>许多演讲者在讲话时都很单调——从头到尾一模一样的节奏，一模一样的声量，一模一样的音调。要是你能在演讲过程中变换你的声音，听众们一定更感兴趣。你的音调一定要丰富而清晰——时而大声时而轻柔都是必要的。有时候，最有力的观点可以用非常轻柔的声音表达出来的，伴随着听众的呼吸声让他们接收。而一个演讲者最有力的却又常常未被充分利用的武器，就是暂停。适时的运用暂停可以使关键信息达到预期的效果，赋予冲击力且印象持久。</p>
<ul>
<li>
<h3><strong>保持简单</strong></h3>
</li>
</ul>
<p>告诉听众他们会听到什么，以及听到内容很重要的原因。比如，“我将给出四个要点，这可以帮助你们今年的市场份额翻一番”。接着你就可以开始说了，最后再总结和重复你的主要观点，结尾时的总结要富有力量和激发性。冗长、复杂的报告看起来很尖端，但往往引不起听众的兴趣，说完了也没什么可以记住的。优秀的报告会向听众呈现清晰的观点，而这往往富有启发性，富有力量，同时容易让人记住。</p>
<p><strong>原文：</strong><a href="http://www.lifehack.org/articles/communication/six-ways-to-transform-your-presentation.html" target="_blank">Six Ways to Transform your Presentation</a> – Lifehack.org<br />
<strong>转自 ：</strong><a href="http://www.mifengtd.cn/articles/six-ways-to-transform-your-presentation.html" target="_blank">褪墨</a><br />
<strong>译者：</strong><a href="http://article.yeeyan.org/view/freebright/95950" target="_blank">何可人</a>（译言）</p>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1559.html">教你六招如何做好演讲</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2009/932.html" title="谷歌Google Map 带你进入二次元空间">谷歌Google Map 带你进入二次元空间</a> (2)</li><li><a href="http://simplelive.org/html/2008/375.html" title="WordPress 2.5.1">WordPress 2.5.1</a> (0)</li><li><a href="http://simplelive.org/html/2010/1447.html" title="复制唐骏">复制唐骏</a> (7)</li><li><a href="http://simplelive.org/html/2007/187.html" title=" IESuper(IE超人) v1.0.1.6"> IESuper(IE超人) v1.0.1.6</a> (0)</li><li><a href="http://simplelive.org/html/2009/1342.html" title="Advertising lonely">Advertising lonely</a> (1)</li><li><a href="http://simplelive.org/html/2008/481.html" title="思科认证费用全线涨价">思科认证费用全线涨价</a> (4)</li><li><a href="http://simplelive.org/html/2008/623.html" title="For NetWork">For NetWork</a> (2)</li><li><a href="http://simplelive.org/html/2007/75.html" title="Process Monitor 1.23">Process Monitor 1.23</a> (0)</li><li><a href="http://simplelive.org/html/2007/226.html" title="CHM文件打不开的解决方法">CHM文件打不开的解决方法</a> (0)</li><li><a href="http://simplelive.org/html/2007/135.html" title="29个骗子购物网站">29个骗子购物网站</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1559.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>谁来接下中国移动的接力棒？</title>
		<link>http://simplelive.org/html/2010/1522.html</link>
		<comments>http://simplelive.org/html/2010/1522.html#comments</comments>
		<pubDate>Wed, 12 May 2010 02:44:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[中国移动]]></category>
		<category><![CDATA[接力棒]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1522</guid>
		<description><![CDATA[一则微博，不知道是否流言飞语，总之再次搅动电信运营商江湖，突然之间，中国移动的总裁位置好像成为了业内的焦点。不管消息真假，铁打的营盘，流水的兵，总归有换人的时候，只是时间问题而已。 中国移动自从创立以来，历经多年已经成长为电信运营商中的新老大。记得前些天在某地开会，三家运营商发言先后排序，电信和移动的老总纷纷尊称对方为“老大”，可见新老“老大”易位是明摆的事情，毕竟在三国之中也是靠实力说话。只是，这大好的江山能否顺利的传承下去，就算是时势造英雄，未来的领导人会有更好的运气吗? 这些年来，中国移动的发展中已经深深打上了王建宙的烙印，正如《亮剑》所说，其个人风格已经在很多地方转化为企业风格。这对中国移动是好事，也是坏事。领导人的风吹草动也许真的会给正处多事之夏的中国移动带来更多的不确定性，这估计也是国资委和中央不愿意看到的。更重要的，接任的领导人一定会花费更多的精力才能有效的驾驭这艘航船，付出的功力会比王建宙当年更多更艰苦。 还有，不管到何时，王总裁离任后，希望中国移动现在已经成型或正在大力布局的战略不会有大的中断和调整，希望不是人走政息，这对中国移动非常重要。不折腾，胡主席的名言，大家都还记得，也应该身体力行! 一般来说，运营商的“一把手”会来自三种地方：一是企业内部提拔，甚至拔擢，本着领导年轻化的目标提升青年才俊;二是来自三家运营商的领导互换，符合党的用人原则，虽说于上市公司的现代企业管理制度有冲突，但却屡试不爽;三是空降，从政府(特别是与通信相关的部门)的副部长甚至某重要司局长直接上位，甚至空降一毫无瓜葛的外行也都可以，毕竟在这个位置上政治可靠比技术突出更重要。 那以此来看，谁将接下中国移动未来十年的接力棒呢?我们只能拭目以待!而最可能的结果是储备力量，扶上马送一程，这才符合惯例!（via） update：王建宙回应移动高层变动传闻：不要相信传言 update : 中移动宣布高层变动 李跃接替王建宙任总经理 谁来接下中国移动的接力棒？ originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. Random PostsPHP 5.3.0 Alpha 2 (0)&#8216;好男当家&#8217;片尾曲-碎片 (0)Anti-Secession (0)雨停了，该醒了 (3)WordPress 2.7.1 (1) 嫦娥一号卫星今天发射 (0)OpenSuSE 11.0 (0)phpMyAdmin 2.11.7.1 (0)phpMyAdmin 2.11.4 RC1 (0)CHM文件打不开的解决方法 (0)<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1522.html">谁来接下中国移动的接力棒？</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://simplelive.org/wp-content/uploads/2010/05/｢里芋の葉に登るアマガエル｣神奈川-横浜-ASO-FUJITA-age-fotostock-©-Bing-Japan.jpg"><img class="aligncenter size-full wp-image-1523" title="｢里芋の葉に登るアマガエル｣神奈川, 横浜 -- ASO FUJITA - age fotostock  © (Bing Japan)" src="http://simplelive.org/wp-content/uploads/2010/05/｢里芋の葉に登るアマガエル｣神奈川-横浜-ASO-FUJITA-age-fotostock-©-Bing-Japan.jpg" alt="" width="580" height="310" /></a></p>
<p>一则微博，不知道是否流言飞语，总之再次搅动电信运营商江湖，突然之间，中国移动的总裁位置好像成为了业内的焦点。不管消息真假，铁打的营盘，流水的兵，总归有换人的时候，只是时间问题而已。</p>
<p>中国移动自从创立以来，历经多年已经成长为电信运营商中的新老大。记得前些天在某地开会，三家运营商发言先后排序，电信和移动的老总纷纷尊称对方为“老大”，可见新老“老大”易位是明摆的事情，毕竟在三国之中也是靠实力说话。只是，这大好的江山能否顺利的传承下去，就算是时势造英雄，未来的领导人会有更好的运气吗?</p>
<p>这些年来，中国移动的发展中已经深深打上了王建宙的烙印，正如《亮剑》所说，其个人风格已经在很多地方转化为企业风格。这对中国移动是好事，也是坏事。领导人的风吹草动也许真的会给正处多事之夏的中国移动带来更多的不确定性，这估计也是国资委和中央不愿意看到的。更重要的，接任的领导人一定会花费更多的精力才能有效的驾驭这艘航船，付出的功力会比王建宙当年更多更艰苦。</p>
<p>还有，不管到何时，王总裁离任后，希望中国移动现在已经成型或正在大力布局的战略不会有大的中断和调整，希望不是人走政息，这对中国移动非常重要。不折腾，胡主席的名言，大家都还记得，也应该身体力行!</p>
<p>一般来说，运营商的“一把手”会来自三种地方：一是企业内部提拔，甚至拔擢，本着领导年轻化的目标提升青年才俊;二是来自三家运营商的领导互换，符合党的用人原则，虽说于上市公司的现代企业管理制度有冲突，但却屡试不爽;三是空降，从政府(特别是与通信相关的部门)的副部长甚至某重要司局长直接上位，甚至空降一毫无瓜葛的外行也都可以，毕竟在这个位置上政治可靠比技术突出更重要。</p>
<p>那以此来看，谁将接下中国移动未来十年的接力棒呢?我们只能拭目以待!而最可能的结果是储备力量，扶上马送一程，这才符合惯例!（<a title="作者：马继华 http://majihua.blog.techweb.com.cn/archives/175.html" href="http://majihua.blog.techweb.com.cn/archives/175.html" target="_blank">via</a>）</p>
<p><strong>update：</strong><a title="http://www.techweb.com.cn/people/2010-05-13/600566.shtml" href="http://www.techweb.com.cn/people/2010-05-13/600566.shtml" target="_blank">王建宙回应移动高层变动传闻：不要相信传言<br />
</a> <strong>u</strong><strong>p</strong><strong>date : </strong><a href="http://www.techweb.com.cn/news/2010-05-31/613097.shtml" target="_blank">中移动宣布高层变动 李跃接替王建宙任总经理</a></p>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1522.html">谁来接下中国移动的接力棒？</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2007/68.html" title="Wordpress更换主机问题zt">Wordpress更换主机问题zt</a> (0)</li><li><a href="http://simplelive.org/html/2009/1055.html" title="周末游泳路上">周末游泳路上</a> (0)</li><li><a href="http://simplelive.org/html/2008/862.html" title="长头发的 Jona Ive 来推销新产品啰！">长头发的 Jona Ive 来推销新产品啰！</a> (4)</li><li><a href="http://simplelive.org/html/2007/115.html" title="GMAIL容量达到3.7G">GMAIL容量达到3.7G</a> (1)</li><li><a href="http://simplelive.org/html/2008/388.html" title="OpenSUSE 11.0 Beta 2">OpenSUSE 11.0 Beta 2</a> (0)</li><li><a href="http://simplelive.org/html/2008/308.html" title="我的落伍经历">我的落伍经历</a> (3)</li><li><a href="http://simplelive.org/html/2007/127.html" title="WordPress 2.3.1 RC1">WordPress 2.3.1 RC1</a> (0)</li><li><a href="http://simplelive.org/html/2009/1010.html" title="某处机房初看">某处机房初看</a> (2)</li><li><a href="http://simplelive.org/html/2008/626.html" title="Google之足球">Google之足球</a> (0)</li><li><a href="http://simplelive.org/html/2009/1277.html" title="Google AdSense Disabled">Google AdSense Disabled</a> (11)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1522.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>如果你写HTML，那么Zen Coding会改变的你生活</title>
		<link>http://simplelive.org/html/2010/1512.html</link>
		<comments>http://simplelive.org/html/2010/1512.html#comments</comments>
		<pubDate>Thu, 06 May 2010 01:28:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[如果你写HTML，那么Zen Coding会改变的你生活]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1512</guid>
		<description><![CDATA[如果你靠写HTML谋生，而你有又不知道Zen Coding的话， 那你错过了一款及其优秀的工具。 这是我这周见到过的最酷的一款工具。我这几天一直在手头使用。起先，它给人的感觉有些花哨。我不敢说我领会了它的语法，但是今天我对他真的研究了一番，发现它真的很牛X。 OK，我就不再这里继续表达我那难以言表的激动之情。接下来我给你简要介绍一下这玩意的功能。这玩意儿可以将缩略的标记转换成完整的HMTL结构标签（div，tabe，cell，link，以及list等标签），而它的实现方式是我有生以来见过的最智能的。注意，我没吹牛皮。 比如，题图中的这行神秘晦涩的字符串只需敲击一下就可以转换成下面这段完整的HTML代码 这玩意儿可以让我见过的其他标签自动补全的功能入土为安了。它完全超越了我见过的任何一种工具，而它的自动完成功能是我苦苦寻觅，并希望其他浏览器和IDE提供的功能。， 目前有几种办法让多个编辑器中整合这项功能。比如我正在使用的Komodo编辑器。它的语法起来也很简单，只要你熟悉CSS。 目前它提供不少简单的办法来给已有的内容加上标签。比如。我可以输入下面这几行文本 Foo Bar Baf 在浏览器中选中这段文本，然后在点击Zen Coding&#62;使用缩略词添加标签（Wrap with Abbreviation ）（你也可以使用快捷键），然后输入ul&#62;li*&#62;a&#62;b，你慢上就可以得到下面这段内容。 真的，如果它不是如此优秀的话，我可能还不知道这东东。如果你感兴趣，稍后我就放上视频，更详细的介绍这个的工具。我目前也只是简单的接触了了它的功能——实际上它还有其他功能，像自动对元素编号。反正没Zen coding这玩意儿的话，我是不打算再写什么HTML文档的。（via） 如果你写HTML，那么Zen Coding会改变的你生活 originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. Random PostsPHP 5.3.0 Alpha 2 (0)加班工作 (10)冷静沉着 (0)FileZilla 3.0.10 &#8211; Final (0)Gtalk未死 新版将有重大更新 (0)GMAIL容量达到3.7G (1)Wordpress更换主机问题zt (0)培训的再次学习 (0)北京：大学生宿舍自发挂国旗 [...]<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1512.html">如果你写HTML，那么Zen Coding会改变的你生活</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://simplelive.org/wp-content/uploads/2010/05/20100504130539_57987.png"><img class="aligncenter size-full wp-image-1513" title="20100504130539_57987" src="http://simplelive.org/wp-content/uploads/2010/05/20100504130539_57987.png" alt="" width="523" height="147" /></a></p>
<p>如果你靠写HTML谋生，而你有又不知道<a id="dfub" title="Zend Coding" href="http://code.google.com/p/zen-coding/">Zen Coding</a>的话， 那你错过了一款及其优秀的工具。</p>
<p>这是我这周见到过的最酷的一款工具。我这几天一直在手头使用。起先，它给人的感觉有些花哨。我不敢说我领会了它的语法，但是今天我对他真的研究了一番，发现它真的很牛X。</p>
<p>OK，我就不再这里继续表达我那难以言表的激动之情。接下来我给你简要介绍一下这玩意的功能。这玩意儿可以将缩略的标记转换成完整的HMTL结构标签（div，tabe，cell，link，以及list等标签），而它的实现方式是我有生以来见过的最智能的。注意，我没吹牛皮。</p>
<p>比如，题图中的这行神秘晦涩的字符串只需敲击一下就可以转换成下面这段完整的HTML代码</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/05/20100504160514_83872.png"><img class="aligncenter size-full wp-image-1514" title="20100504160514_83872" src="http://simplelive.org/wp-content/uploads/2010/05/20100504160514_83872.png" alt="" width="580" height="311" /></a></p>
<p>这玩意儿可以让我见过的其他标签自动补全的功能入土为安了。它完全超越了我见过的任何一种工具，而它的自动完成功能是我苦苦寻觅，并希望其他浏览器和IDE提供的功能。，</p>
<p>目前有几种办法让多个编辑器中整合这项功能。比如我正在使用的Komodo编辑器。它的语法起来也很简单，只要你熟悉CSS。</p>
<p>目前它提供不少简单的办法来给已有的内容加上标签。比如。我可以输入下面这几行文本</p>
<p>Foo<br />
Bar<br />
Baf</p>
<p>在浏览器中选中这段文本，然后在点击<strong>Zen Coding&gt;使用缩略词添加标签（Wrap with Abbreviation ）（你也可以使用快捷键），然后输入</strong>ul&gt;li*&gt;a&gt;b，你慢上就可以得到下面这段内容。</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/05/20100504160558_32178.png"><img class="aligncenter size-full wp-image-1515" title="20100504160558_32178" src="http://simplelive.org/wp-content/uploads/2010/05/20100504160558_32178.png" alt="" width="543" height="156" /></a></p>
<p>真的，如果它不是如此优秀的话，我可能还不知道这东东。如果你感兴趣，稍后我就放上视频，更详细的介绍这个的工具。我目前也只是简单的接触了了它的功能——实际上它还有其他功能，像自动对元素编号。反正没Zen coding这玩意儿的话，我是不打算再写什么HTML文档的。（<a title="原文链接：http://www.downloadsquad.com/2010/04/30/if-you-code-html-zen-coding-will-change-your-life/ 原文作者： Erez Zukerman" href="http://www.downloadsquad.com/2010/04/30/if-you-code-html-zen-coding-will-change-your-life/" target="_blank">via</a>）</p>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1512.html">如果你写HTML，那么Zen Coding会改变的你生活</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2009/1351.html" title="Google发布Browser Size">Google发布Browser Size</a> (4)</li><li><a href="http://simplelive.org/html/2008/504.html" title="春游记事">春游记事</a> (0)</li><li><a href="http://simplelive.org/html/2008/315.html" title="忙忙碌碌">忙忙碌碌</a> (0)</li><li><a href="http://simplelive.org/html/2008/292.html" title="IE浏览辅助-IE7Pro 2.0">IE浏览辅助-IE7Pro 2.0</a> (2)</li><li><a href="http://simplelive.org/html/2007/36.html" title=".NET资源站点汇总">.NET资源站点汇总</a> (0)</li><li><a href="http://simplelive.org/html/2008/419.html" title="simplelive.org 的Pagerank值：3">simplelive.org 的Pagerank值：3</a> (1)</li><li><a href="http://simplelive.org/html/2008/415.html" title="一路走好">一路走好</a> (0)</li><li><a href="http://simplelive.org/html/2010/1614.html" title="OPhone 2.0原创技术征文大赛">OPhone 2.0原创技术征文大赛</a> (0)</li><li><a href="http://simplelive.org/html/2007/49.html" title="我的和谐指数">我的和谐指数</a> (1)</li><li><a href="http://simplelive.org/html/2007/109.html" title="Gmail容量的增长">Gmail容量的增长</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1512.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>全中国最穷的小伙子发财日记</title>
		<link>http://simplelive.org/html/2010/1487.html</link>
		<comments>http://simplelive.org/html/2010/1487.html#comments</comments>
		<pubDate>Sun, 25 Apr 2010 14:10:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[全中国最穷的小伙子发财日记]]></category>
		<category><![CDATA[重庆老康]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1487</guid>
		<description><![CDATA[读发财日记，学最笨发财之道—— 一部向全中国3亿草根青年传授最笨发财之道的自传体小说！无权无势又年轻，坠入人生谷底，绝地反击，3年成为百万富翁的真实经历。他做的事，都没有难度；他遇到的机会，是我们天天都碰到的机会；他靠最平庸的方式，经过3年坚持，最终成为百万富翁。 老康成功的奇特之处，在于他做的事没有任何奇特之处！从老康身上，你将学会那些白手起家的百万富翁都有的“特异功能”：从日常生活中认出遍地发财机会。一旦你拥有这种“特异功能”，发财好比例行公事！ 重庆老康常说：我都能发财，何况兄弟你！（以上引用互联网） 无意之中在中国移动的手机阅读软件里看到了这本书的推荐，确实我坦诚，标题很吸引人，书中老康最后说为了给自己的书起一个艺术点的名字，他与出版社争论了几次，最后还是就范了，要说呢，还是人家出版社了解读者的需求，名字都不吸引人，谁会进来看呢？ 推荐一下吧，确实是值得一看的，可能是不适合一部分人，因为这部分人可能永远不会为了生计、发展问题发愁，因为一毕业就进了大公司，铁饭碗的单位，一辈子安逸，过的安逸，更活的安逸，但是对于在生活中遇到暂时困难的青年，值得一读，哪怕暂时给予你少许的自信也好。 我坦诚的说，自传体日记，也许经过后期加工，但作者确实写的很好。 几处连接：1、DouBan 2、当当网都买 3、在线阅读免费章节 4、Google TXT 全中国最穷的小伙子发财日记 originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. Random Posts潜心烦躁 (0)升级到WordPress2.3正式版 (0)落伍一看 (0)Visual Studio 2008 RTM (0)思念是一种病 (1)生病的时候注意，这些东西不要吃！ (2)phpMyAdmin 2.11.4 RC1 (0)少有人走的路 (6)为了明天 (0)测试影音播放插件 (0)<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1487.html">全中国最穷的小伙子发财日记</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://simplelive.org/wp-content/uploads/2010/04/｢カシオペヤ座A｣-ハッブル宇宙望遠鏡-NASA-©-Bing-Japan.jpg"><img class="aligncenter size-full wp-image-1495" title="｢カシオペヤ座A｣ ハッブル宇宙望遠鏡 -- NASA  © (Bing Japan)" src="http://simplelive.org/wp-content/uploads/2010/04/｢カシオペヤ座A｣-ハッブル宇宙望遠鏡-NASA-©-Bing-Japan.jpg" alt="" width="580" height="310" /></a><br />
读发财日记，学最笨发财之道——</p>
<p>一部向全中国3亿草根青年传授最笨发财之道的自传体小说！无权无势又年轻，坠入人生谷底，绝地反击，3年成为百万富翁的真实经历。他做的事，都没有难度；他遇到的机会，是我们天天都碰到的机会；他靠最平庸的方式，经过3年坚持，最终成为百万富翁。</p>
<p>老康成功的奇特之处，在于他做的事没有任何奇特之处！从老康身上，你将学会那些白手起家的百万富翁都有的“特异功能”：从日常生活中认出遍地发财机会。一旦你拥有这种“特异功能”，发财好比例行公事！</p>
<blockquote><p>重庆老康常说：我都能发财，何况兄弟你！（以上引用互联网）</p></blockquote>
<p>无意之中在中国移动的手机阅读软件里看到了这本书的推荐，确实我坦诚，标题很吸引人，书中老康最后说为了给自己的书起一个艺术点的名字，他与出版社争论了几次，最后还是就范了，要说呢，还是人家出版社了解读者的需求，名字都不吸引人，谁会进来看呢？</p>
<p>推荐一下吧，确实是值得一看的，可能是不适合一部分人，因为这部分人可能永远不会为了生计、发展问题发愁，因为一毕业就进了大公司，铁饭碗的单位，一辈子安逸，过的安逸，更活的安逸，但是对于在生活中遇到暂时困难的青年，值得一读，哪怕暂时给予你少许的自信也好。</p>
<p>我坦诚的说，自传体日记，也许经过后期加工，但作者确实写的很好。</p>
<blockquote><p>几处连接：1、<a title="看看大家说的。" href="http://www.douban.com/group/topic/10700821/" target="_blank">DouBan</a> 2、<a title="不贵，10几块。" href="http://product.dangdang.com/product.aspx?product_id=20802862" target="_blank">当当网都买</a> 3、<a href="http://read.dangdang.com/book_9795" target="_blank">在线阅读免费章节</a> 4、<a href="http://www.google.com.hk/search?hl=zh-CN&amp;newwindow=1&amp;safe=strict&amp;client=aff-avalanche&amp;hs=9g2&amp;channel=textlink&amp;source=hp&amp;q=%E5%85%A8%E4%B8%AD%E5%9B%BD%E6%9C%80%E7%A9%B7%E7%9A%84%E5%B0%8F%E4%BC%99%E5%AD%90%E7%9A%84%E5%8F%91%E8%B4%A2%E6%97%A5%E8%AE%B0+TXT&amp;meta=&amp;aq=f&amp;aqi=&amp;aql=&amp;oq=&amp;gs_rfai=" target="_blank">Google TXT</a></p></blockquote>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1487.html">全中国最穷的小伙子发财日记</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2008/503.html" title="静寂喧闹">静寂喧闹</a> (1)</li><li><a href="http://simplelive.org/html/2007/137.html" title="Replacement of the theme">Replacement of the theme</a> (0)</li><li><a href="http://simplelive.org/html/2008/342.html" title="Wine 0.9.58">Wine 0.9.58</a> (0)</li><li><a href="http://simplelive.org/html/2008/407.html" title="Mozilla Firefox 3.0 RC1 Build1">Mozilla Firefox 3.0 RC1 Build1</a> (0)</li><li><a href="http://simplelive.org/html/2008/319.html" title="蓝牙技术最强应用:蓝牙假肢">蓝牙技术最强应用:蓝牙假肢</a> (1)</li><li><a href="http://simplelive.org/html/2010/1398.html" title="三个网站让你成为 Linux 命令行高手">三个网站让你成为 Linux 命令行高手</a> (0)</li><li><a href="http://simplelive.org/html/2008/385.html" title="cFosSpeed v4.21 Build 1402 [测试版]">cFosSpeed v4.21 Build 1402 [测试版]</a> (0)</li><li><a href="http://simplelive.org/html/2007/6.html" title="测试影音播放插件">测试影音播放插件</a> (0)</li><li><a href="http://simplelive.org/html/2007/177.html" title="优化asp数据访问代码">优化asp数据访问代码</a> (0)</li><li><a href="http://simplelive.org/html/2007/187.html" title=" IESuper(IE超人) v1.0.1.6"> IESuper(IE超人) v1.0.1.6</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1487.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>复制唐骏</title>
		<link>http://simplelive.org/html/2010/1447.html</link>
		<comments>http://simplelive.org/html/2010/1447.html#comments</comments>
		<pubDate>Thu, 08 Apr 2010 02:10:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[唐骏亲口讲述讲述人生、职场奋斗史]]></category>
		<category><![CDATA[复制唐骏]]></category>
		<category><![CDATA[复制鬼话]]></category>
		<category><![CDATA[我的成功可以复制]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1447</guid>
		<description><![CDATA[唐骏是一个职业经理人（这个好像都知道 ），他成功与否，相信每人的看法都不同；但不管他是否成功，他的《我的成功可以复制》一书，还是值得我们一看的。 个人觉得看《我的成功可以复制》一书，不应看他的辉煌时期，辉煌只是表象，而应看他在求学、创业、工作中值得我们借鉴的很多经验，这些经验很宝贵，可能我们每个人都在走自己的路；轻谈复制很不妥，因为任何事情都是因人而异的，但是借鉴与学习其的经验还是有必要的事情，即使我觉得我已经不再年轻，但是20几岁的事实可能告诉我，我还年轻吧。有句话说，活到老，学到老。既然我还算年轻，那么学习还不晚，不求学多少，学点皮毛，能对自己人生所作出的决定起点作用就好，要求蛮低的，希望能够借鉴出来一点点。 复制是鬼话，不要迷信，要吸取好的，舍弃不适合你的。 Update 2 更多内容还是看书吧： 1、购买书籍 2、PDF下载 3、手机阅读 4、关于唐骏 复制唐骏 originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. Random PostsFeedDemon v2.6 Beta 2 (0)Visual Studio 2008 SDK 1.1 (1)WordPress2.6 (2)会漫步的iPhone (4)Google Wave (16)落伍一看 (0)让Windows Server 2008支持蓝牙 (0)CCDE将正式启用 (2)BitDefender公布九月份十大病毒 (0)Microsoft Process Explorer 11.04 + Process [...]<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1447.html">复制唐骏</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://simplelive.org/wp-content/uploads/2010/04/｢平野神社の夜桜｣京都-北区-JTB-Photolibrary-©-Bing-Japan.jpg"><img class="aligncenter size-full wp-image-1446" title="｢平野神社の夜桜｣京都,  北区 -- JTB - Photolibrary  © (Bing Japan)" src="http://simplelive.org/wp-content/uploads/2010/04/｢平野神社の夜桜｣京都-北区-JTB-Photolibrary-©-Bing-Japan.jpg" alt="" width="580" height="310" /></a></p>
<p><a href="http://baike.baidu.com/view/118862.htm" target="_blank">唐骏</a>是一个职业经理人（这个好像都知道 <img src='http://simplelive.org/wp-includes/images/smilies/icon_twisted.gif' alt=':twisted:' class='wp-smiley' />  ），他成功与否，相信每人的看法都不同；但不管他是否成功，他的《我的成功可以复制》一书，还是值得我们一看的。</p>
<p>个人觉得看《我的成功可以复制》一书，不应看他的辉煌时期，辉煌只是表象，而应看他在求学、创业、工作中值得我们借鉴的很多经验，这些经验很宝贵，可能我们每个人都在走自己的路；轻谈复制很不妥，因为任何事情都是因人而异的，但是借鉴与学习其的经验还是有必要的事情，即使我觉得我已经不再年轻，但是20几岁的事实可能告诉我，我还年轻吧。有句话说，活到老，学到老。既然我还算年轻，那么学习还不晚，不求学多少，学点皮毛，能对自己人生所作出的决定起点作用就好，要求蛮低的，希望能够借鉴出来一点点。</p>
<p>复制是鬼话，不要迷信，要吸取好的，舍弃不适合你的。</p>
<blockquote><p>Update 2 更多内容还是看书吧：</p>
<p>1、<a href="http://product.dangdang.com/product.aspx?product_id=20398216" target="_blank">购买书籍</a> 2、<a href="http://www.eshu123.com/lizhi/shuji/20090922/2656.html" target="_blank">PDF下载</a> 3、<a href="http://book.monternet.com/" target="_blank">手机阅读</a> 4、<a href="http://baike.baidu.com/view/118862.htm" target="_blank">关于唐骏</a></p></blockquote>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1447.html">复制唐骏</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2010/1368.html" title="avatar 1080p">avatar 1080p</a> (8)</li><li><a href="http://simplelive.org/html/2010/1415.html" title="Vim使用简介">Vim使用简介</a> (0)</li><li><a href="http://simplelive.org/html/2008/495.html" title="MonoDevelop 2.0 Alpha1">MonoDevelop 2.0 Alpha1</a> (0)</li><li><a href="http://simplelive.org/html/2007/22.html" title="用串口连接 设置超级终端管理交换机">用串口连接 设置超级终端管理交换机</a> (0)</li><li><a href="http://simplelive.org/html/2008/608.html" title="结束了">结束了</a> (6)</li><li><a href="http://simplelive.org/html/2009/1177.html" title="Ubuntu Linux 桌面分享">Ubuntu Linux 桌面分享</a> (2)</li><li><a href="http://simplelive.org/html/2008/717.html" title="本站改用simplelive.org新米">本站改用simplelive.org新米</a> (7)</li><li><a href="http://simplelive.org/html/2008/392.html" title="烦心依旧">烦心依旧</a> (0)</li><li><a href="http://simplelive.org/html/2008/862.html" title="长头发的 Jona Ive 来推销新产品啰！">长头发的 Jona Ive 来推销新产品啰！</a> (4)</li><li><a href="http://simplelive.org/html/2010/1689.html" title="关于Android 3.0，你想要知道的">关于Android 3.0，你想要知道的</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1447.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>春天不远了</title>
		<link>http://simplelive.org/html/2010/1429.html</link>
		<comments>http://simplelive.org/html/2010/1429.html#comments</comments>
		<pubDate>Wed, 24 Mar 2010 02:31:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[春天不远了]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1429</guid>
		<description><![CDATA[时至今日，已经3月末了，天气一天天的暖和起来，虽然还是零下的，但是和以前相比已经是很大的暖和了，起码不是那么冷的时候了，接近零度，就是暖和，理解下我这个生活在寒带的挨踢民工吧。 很多时候都期盼春天，总抱怨为何这么冷呢？但悲哀却在于生活在寒冷的日子久了，自然磨灭了原本对好天气的期盼，所处环境恶劣，自然需求就少了很多吧？其实我这里在然然的夏日还是相当的凉爽的，有得有失，但是不要患得患失的好，说乱了有点， 。记得夏日的时候，在江边吹着凉爽的风，愿意的话，可以垂钓于江畔，前提是得用海杆来钓，感觉冬日的寒冷不在考虑了，因为冬日里出行乘车，多居于办公室内，寒意自然少了许多。 期盼春天早点来吧，我这过了5.1也不会暖和多少，寒地啊。 春天不远了 originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. Random PostsPaint.NET v3.22 Final (2)博客基调低沉了？ (2)怎样填补内心的空洞？ (0)爱情/思想/嫖客 (3)微软IIS 7.0十大改进 (0)ASP使用ACCESS的“存储过程” (0)Rec:中小企业网络管理员实战指南 (0)3号回家 (0)Anti-Secession (0)沉默情人节 (5)<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1429.html">春天不远了</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://simplelive.org/wp-content/uploads/2010/03/美属处女群岛沙滩上的船-Reed-Kaestner-Corbis-©-Bing-China.jpg"><img class="aligncenter size-full wp-image-1428" title="美属处女群岛沙滩上的船 -- Reed Kaestner-Corbis  © (Bing China)" src="http://simplelive.org/wp-content/uploads/2010/03/美属处女群岛沙滩上的船-Reed-Kaestner-Corbis-©-Bing-China.jpg" alt="" width="580" height="310" /></a></p>
<p>时至今日，已经3月末了，天气一天天的暖和起来，虽然还是零下的，但是和以前相比已经是很大的暖和了，起码不是那么冷的时候了，接近零度，就是暖和，理解下我这个生活在寒带的挨踢民工吧。<br />
很多时候都期盼春天，总抱怨为何这么冷呢？但悲哀却在于生活在寒冷的日子久了，自然磨灭了原本对好天气的期盼，所处环境恶劣，自然需求就少了很多吧？其实我这里在然然的夏日还是相当的凉爽的，有得有失，但是不要患得患失的好，说乱了有点， <img src='http://simplelive.org/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' />  。记得夏日的时候，在江边吹着凉爽的风，愿意的话，可以垂钓于江畔，前提是得用海杆来钓，感觉冬日的寒冷不在考虑了，因为冬日里出行乘车，多居于办公室内，寒意自然少了许多。</p>
<p>期盼春天早点来吧，我这过了5.1也不会暖和多少，寒地啊。</p>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1429.html">春天不远了</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2007/190.html" title="Microsoft Process Explorer 11.04 + Process Monitor 1.26">Microsoft Process Explorer 11.04 + Process Monitor 1.26</a> (0)</li><li><a href="http://simplelive.org/html/2007/216.html" title="Windows XP Service Pack 3 RC1 v.3244">Windows XP Service Pack 3 RC1 v.3244</a> (0)</li><li><a href="http://simplelive.org/html/2008/713.html" title="WordPress 2.6.3">WordPress 2.6.3</a> (4)</li><li><a href="http://simplelive.org/html/2008/441.html" title="Mozilla FireFox 3.0 RC2 发布">Mozilla FireFox 3.0 RC2 发布</a> (2)</li><li><a href="http://simplelive.org/html/2007/68.html" title="Wordpress更换主机问题zt">Wordpress更换主机问题zt</a> (0)</li><li><a href="http://simplelive.org/html/2007/124.html" title="搬家到dreamhost.com">搬家到dreamhost.com</a> (0)</li><li><a href="http://simplelive.org/html/2008/523.html" title="欺骗.闭嘴">欺骗.闭嘴</a> (4)</li><li><a href="http://simplelive.org/html/2008/367.html" title="Anti-Secession">Anti-Secession</a> (0)</li><li><a href="http://simplelive.org/html/2007/151.html" title="Oracle 11g for Windows">Oracle 11g for Windows</a> (0)</li><li><a href="http://simplelive.org/html/2007/286.html" title="WordPress 2.3.2 Final">WordPress 2.3.2 Final</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1429.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
