<?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>五四陈科学院-坚信科学，分享技术 &#187; 人人网</title>
	<atom:link href="http://www.54chen.com/tag/%e4%ba%ba%e4%ba%ba%e7%bd%91/feed" rel="self" type="application/rss+xml" />
	<link>http://www.54chen.com</link>
	<description>PHP、JAVA、缓存、架构、经验、分享</description>
	<lastBuildDate>Sat, 11 Feb 2012 17:09:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>[54chen开发日记]注解和拦截器实现权限通用模型的设计实践</title>
		<link>http://www.54chen.com/java-ee/54chen-notes-annotation-interceptor-design.html</link>
		<comments>http://www.54chen.com/java-ee/54chen-notes-annotation-interceptor-design.html#comments</comments>
		<pubDate>Sun, 22 Aug 2010 08:35:20 +0000</pubDate>
		<dc:creator>54chen</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[架构研究]]></category>
		<category><![CDATA[rose]]></category>
		<category><![CDATA[人人网]]></category>

		<guid isPermaLink="false">http://www.54chen.com/java-ee/54chen-notes-annotation-interceptor-design.html</guid>
		<description><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br>------------------英文大爱----------------------- &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;在近期的开发过程中，有使用到拦截器来实现权限控制，使用这种设计方案，可以很好地分离权限与系统本身的功能，让开发过程更加关注系统的核心功能，同时可以很容易做到开发时的任务划分，同时使项目代码的可读性大大提升。先来普及几个相关的名词： 1.AOP：是OOP的延续，是（Aspect Oriented Programming）的缩写，意思是面向切面编程，也有叫面向方面编程，不过切面更加形象。可以通过预编译方式和运行期动态代理实现在不修改源代码的情况下给程序动态统一添加功能的一种技术。AOP实际是GoF设计模式的延续，设计模式孜孜不倦追求的是调用者和被调用者之间的解耦，AOP可以说也是这种目标的一种实现。 2.GoF：《Design Patterns: Elements of Reusable Object-Oriented Software》（即《设计模式》一书），由 Erich Gamma、Richard Helm、Ralph Johnson 和 John Vlissides 合著（Addison-Wesley，1995）。这几位作者常被称为"四人组（Gang of Four）"，而这本书也就被称为"四人组（或 GoF）"书。话说为首的Erich Gamma，在QCon的大会上54chen也有半面之缘。 权限模型的常量定义 &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;一个系统里最常见的需求莫过于权限、角色，事实上往往这样子的需求和系统本身的功能又是没有太多关联的。按照常规的做法，我们需要两个类，一个表明都有什么权限（例如：删除帖子权限、编辑帖子权限，等等）;另一个类表明，各个角色都有什么权限。这样子相当于定义了一个权限和角色模型。 拦截器与注解 &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;拦截器（Invocation）在在流行的开源框架中很常见，依赖的技术就是Java的动态代理。许多流行的框架都提供实现拦截器的接口，可以很简单就实现一个拦截器，此文不表如何实现。注解（Annotations）是JAVA在5.0后引入的特性，它引入的目的是为了替代一些简单的配置到java代码里，而不用原来的xml。 注解请求示例 &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;一般的框架，都会有一个controller类，以下用伪代码表示： public class ThreadsController{ @PriCheckRequired({MemberPrivilegeIdentity.CREATE_THREAD}) public String createThread(){ return "createThread"; } &#8230;<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></description>
			<content:encoded><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br><p><img src="http://img03.taobaocdn.com/imgextra/i3/T1uu8JXcxbXXXYIGZ2_043201.jpg" alt="54chen" /><br />
------------------英文大爱-----------------------</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;在近期的开发过程中，有使用到拦截器来实现权限控制，使用这种设计方案，可以很好地分离权限与系统本身的功能，让开发过程更加关注系统的核心功能，同时可以很容易做到开发时的任务划分，同时使项目代码的可读性大大提升。先来普及几个相关的名词：</p>
<p>1.<strong>AOP</strong>：是OOP的延续，是（Aspect Oriented Programming）的缩写，意思是面向切面编程，也有叫面向方面编程，不过切面更加形象。可以通过预编译方式和运行期动态代理实现在不修改源代码的情况下给程序动态统一添加功能的一种技术。AOP实际是GoF设计模式的延续，设计模式孜孜不倦追求的是调用者和被调用者之间的解耦，AOP可以说也是这种目标的一种实现。</p>
<p>2.<strong>GoF</strong>：《Design Patterns: Elements of Reusable Object-Oriented  Software》（即《设计模式》一书），由 Erich Gamma、Richard Helm、Ralph Johnson 和 John  Vlissides 合著（Addison-Wesley，1995）。这几位作者常被称为"四人组（Gang of  Four）"，而这本书也就被称为"四人组（或 GoF）"书。话说为首的Erich Gamma，在QCon的大会上54chen也有半面之缘。</p>
<p><strong>权限模型的常量定义</strong></p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;一个系统里最常见的需求莫过于权限、角色，事实上往往这样子的需求和系统本身的功能又是没有太多关联的。按照常规的做法，我们需要两个类，一个表明都有什么权限（例如：删除帖子权限、编辑帖子权限，等等）;另一个类表明，各个角色都有什么权限。这样子相当于定义了一个权限和角色模型。</p>
<p><strong>拦截器与注解</strong></p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;拦截器（Invocation）在在流行的开源框架中很常见，依赖的技术就是Java的动态代理。许多流行的框架都提供实现拦截器的接口，可以很简单就实现一个拦截器，此文不表如何实现。注解（Annotations）是JAVA在5.0后引入的特性，它引入的目的是为了替代一些简单的配置到java代码里，而不用原来的xml。</p>
<p><strong>注解请求示例</strong></p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;一般的框架，都会有一个controller类，以下用伪代码表示：<br />
<code><br />
public class ThreadsController{<br />
@PriCheckRequired({MemberPrivilegeIdentity.CREATE_THREAD})<br />
public String createThread(){<br />
return "createThread";<br />
}<br />
}</code><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;如代码中所示，一个controller里的一个method对应一个url请求（例中所示为创建帖子）。我们只需要在其方法上标注@PriCheckRequired({MemberPrivilegeIdentity.CREATE_THREAD})，PriCheckRequired就是注解，其传递了一个信息MemberPrivilegeIdentity.CREATE_THREAD，这也就是前文说的权限类中的创建帖子权限。<br />
<strong>拦截器工作</strong><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;拦截器一般都是实现一个框架提供的接口来实现，常用框架都支持。<br />
可以想像在拦截器里要做的事情：</p>
<blockquote><p>1.根据规定好的request请求的参数，取到用户属于哪个角色。<br />
2.根据controller中注解，取到当前要判断的权限。<br />
3.对比用户角色是否有注解中的权限，如果有，放行，反之拦截。
</p></blockquote>
<p><strong>代码实现</strong><br />
拦截器的代码实现与框架有关:<br />
rose框架如何实现拦截器请看<a href="http://code.google.com/p/paoding-rose/wiki/Rose_Code_Fragment_Interceptor">http://code.google.com/p/paoding-rose/wiki/Rose_Code_Fragment_Interceptor</a>;另外spring等都可以简单实现拦截器。</p>
<p><strong>篇末</strong><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;这种方式可以做的事情还有许多，例如cache等公共模块的地方，都可以使用，对开发速度、任务划分、代码重用程度都有非常适用的地方。</p>
<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></content:encoded>
			<wfw:commentRss>http://www.54chen.com/java-ee/54chen-notes-annotation-interceptor-design.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>闲谈分布式key-value存储服务nuclear及其他</title>
		<link>http://www.54chen.com/_linux_/distributed-key-value-storage.html</link>
		<comments>http://www.54chen.com/_linux_/distributed-key-value-storage.html#comments</comments>
		<pubDate>Sat, 27 Mar 2010 08:44:23 +0000</pubDate>
		<dc:creator>cc0cc</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nuclear]]></category>
		<category><![CDATA[人人网]]></category>

		<guid isPermaLink="false">http://www.54chen.com/_linux_/distributed-key-value-storage.html</guid>
		<description><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br>现在很多国内公司都纷纷开始了key-value的nosql存储方式，然而，从什么时候开始key-value会变得这么流行呢？是风靡一时，还是顺应时代的潮流？前后数一数，有豆瓣网的beandb、有新浪的SDD、小道消息还有腾讯的TDB以及人人网的nuclear。再数国外，吹起这阵风的原因是亚马逊的一篇文档，这篇文档讲述了在亚马逊的S3服务中所使用的存储系统dynamo实现方式，但遗憾的是dynamo并不开源。紧随其后，facebook来了位号称是当年亚马逊dynamo的开发人员之一的同志，实现了facebook的cassandra，并且值得表扬的是还将其开源了。与此同时，相同理论下产生的，还有linkedin的voldemort系统。 百家争鸣还是百家讲坛 分布式存储的目标，是解决大规模数据在数据量不断增长的情况下，让服务更加稳定，更容易扩展。 其主要具备以下几个特点： 1.高可靠性：系统能够长时间高效运行不迭机。严格的说即使坏了一部分机器也没事。 2.可扩展性：可以随意增加减少机器，不用担心额外的数据损失。 3.负载均衡：要保证每个节点的数据都是负载均衡的，不出现集中负载到一个节点的情况。 4.一致性：因为是分布式的节点，就需要保证节点与节点之间保存数据的一致。 鱼与熊掌不可兼得，这几点，往往完成了其中几点就会损失另外一点，要全部达到完美，是一件非常困难的事情。 在国内的几个存储来看，基本都是只实现了其中的一部分，再按照自己业务的需求，来加强其中更为关心的建设。 beansdb的最终一致性通过哈希树实现快速完整数据同步（短时间内数据可能不一致）；可以在不中断服务的情况下进行容量扩展；异步IO和高性能的KeyValue数据TokyoCabinet：通过N,W,R进行配置（这点其实是dynamo的文档里的方案，并非beansdb所创）；Memcache兼容协议，大量可用客户端。sdd也大同小异。 Nuclear完成了这些功能，并且可以适配到mysql\tc\bdb等存储引擎之上。 为什么已经有开源的项目，还要去自己实现呢？简单的说，twitter敢用，你敢用吗？ 分布式key-value存储之所以稳定的原因 从设计之初，注定这个系统会很稳定。为什么呢，主要是下面几点： 1.dynamo文档中的NWR的观点，可以让节点在损坏的情况下也能稳定如新。基本上这些系统都实现了。 2.dynamo文档中的两层数据节点的观点，可以让各节点在大负载的情况下负载均衡。部分实现了这一点。 3.底层存储的时候是key-value的读和取，只有一个维度的底层操作，对引擎来说，所有的操作都是可计算时间的。这一点的意思是说，假设都是MYSQL的底层存储，这个系统只会有一堆的select value form table where key=num这样的查询，而不会出现select * from table where key in(num1,num2,num3....)这样的查询，这两个查询不同的地方在于，如果都是1000次的查询，那么前一条的时间是可以准确预估的，而后一条取决于mysql底层实现的逻辑，而这个逻辑对上层是不可见的。 更多不明原因。。。 适合使用的范围 这套系统也不是放之四海而皆准的东西，如果说您的系统有如下的特征，可以考虑考虑： 1.数据插入后不需要各维度的查询。 2.数据不需要100%精确立即展示。 更多不明特点。 总结 其实这个系统，在过十亿的数据量下才有意思。 本文作者： 54chen(陈臻)，人人网分布式存储研究人员，业余时间混迹于各技术组织且乐此不疲。目前关注实施PHP培训。对flex等前端技术有一点研究。 个人技术站点:http://www.54chen.com/ &#8230;<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></description>
			<content:encoded><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br><p>现在很多国内公司都纷纷开始了key-value的nosql存储方式，然而，从什么时候开始key-value会变得这么流行呢？是风靡一时，还是顺应时代的潮流？前后数一数，有豆瓣网的beandb、有新浪的SDD、小道消息还有腾讯的TDB以及人人网的nuclear。再数国外，吹起这阵风的原因是亚马逊的一篇文档，这篇文档讲述了在亚马逊的S3服务中所使用的存储系统dynamo实现方式，但遗憾的是dynamo并不开源。紧随其后，facebook来了位号称是当年亚马逊dynamo的开发人员之一的同志，实现了facebook的cassandra，并且值得表扬的是还将其开源了。与此同时，相同理论下产生的，还有linkedin的voldemort系统。</p>
<p><strong>百家争鸣还是百家讲坛</strong></p>
<p>分布式存储的目标，是解决大规模数据在数据量不断增长的情况下，让服务更加稳定，更容易扩展。</p>
<p>其主要具备以下几个特点：</p>
<p>1.高可靠性：系统能够长时间高效运行不迭机。严格的说即使坏了一部分机器也没事。</p>
<p>2.可扩展性：可以随意增加减少机器，不用担心额外的数据损失。</p>
<p>3.负载均衡：要保证每个节点的数据都是负载均衡的，不出现集中负载到一个节点的情况。</p>
<p>4.一致性：因为是分布式的节点，就需要保证节点与节点之间保存数据的一致。</p>
<p>鱼与熊掌不可兼得，这几点，往往完成了其中几点就会损失另外一点，要全部达到完美，是一件非常困难的事情。</p>
<p>在国内的几个存储来看，基本都是只实现了其中的一部分，再按照自己业务的需求，来加强其中更为关心的建设。</p>
<p>beansdb的最终一致性通过哈希树实现快速完整数据同步（短时间内数据可能不一致）；可以在不中断服务的情况下进行容量扩展；异步IO和高性能的KeyValue数据TokyoCabinet：通过N,W,R进行配置（这点其实是dynamo的文档里的方案，并非beansdb所创）；Memcache兼容协议，大量可用客户端。sdd也大同小异。</p>
<p>Nuclear完成了这些功能，并且可以适配到mysql\tc\bdb等存储引擎之上。</p>
<p>为什么已经有开源的项目，还要去自己实现呢？简单的说，twitter敢用，你敢用吗？</p>
<p><strong>分布式key-value存储之所以稳定的原因</strong></p>
<p>从设计之初，注定这个系统会很稳定。为什么呢，主要是下面几点：</p>
<p>1.dynamo文档中的NWR的观点，可以让节点在损坏的情况下也能稳定如新。基本上这些系统都实现了。</p>
<p>2.dynamo文档中的两层数据节点的观点，可以让各节点在大负载的情况下负载均衡。部分实现了这一点。</p>
<p>3.底层存储的时候是key-value的读和取，只有一个维度的底层操作，对引擎来说，所有的操作都是可计算时间的。这一点的意思是说，假设都是MYSQL的底层存储，这个系统只会有一堆的select value form table where key=num这样的查询，而不会出现select * from table where key in(num1,num2,num3....)这样的查询，这两个查询不同的地方在于，如果都是1000次的查询，那么前一条的时间是可以准确预估的，而后一条取决于mysql底层实现的逻辑，而这个逻辑对上层是不可见的。</p>
<p>更多不明原因。。。</p>
<p><strong>适合使用的范围</strong></p>
<p>这套系统也不是放之四海而皆准的东西，如果说您的系统有如下的特征，可以考虑考虑：</p>
<p>1.数据插入后不需要各维度的查询。</p>
<p>2.数据不需要100%精确立即展示。</p>
<p>更多不明特点。</p>
<p><strong>总结</strong></p>
<p>其实这个系统，在过十亿的数据量下才有意思。<br />
本文作者：<br />
54chen(陈臻)，人人网分布式存储研究人员，业余时间混迹于各技术组织且乐此不疲。目前关注实施PHP培训。对flex等前端技术有一点研究。<br />
个人技术站点:<a href="http://www.54chen.com/">http://www.54chen.com/</a> 。可以通过电子邮件 czhttp@gmail.com 联系到他。</p>
<p><strong>[文中所提及的链接]</strong></p>
<p>beansDB:http://code.google.com/p/beansdb/</p>
<p>SDD:http://code.google.com/p/sina-sdd/</p>
<p>Nuclear:http://ugc.renren.com</p>
<p>S3:http://aws.amazon.com/s3/</p>
<p>dynamo:http://s3.amazonaws.com/AllThingsDistributed/sosp/amazon-dynamo-sosp2007.pdf</p>
<p>cassandra:http://incubator.apache.org/cassandra/</p>
<p>voldemort:http://project-voldemort.com/</p>
<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></content:encoded>
			<wfw:commentRss>http://www.54chen.com/_linux_/distributed-key-value-storage.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>[视频]暨大坠楼女生终于清醒，自称不认识坠楼男子！内涵了等</title>
		<link>http://www.54chen.com/life/renren-video-1017.html</link>
		<comments>http://www.54chen.com/life/renren-video-1017.html#comments</comments>
		<pubDate>Thu, 25 Mar 2010 11:16:07 +0000</pubDate>
		<dc:creator>cc0cc</dc:creator>
				<category><![CDATA[生活备份]]></category>
		<category><![CDATA[人人网]]></category>
		<category><![CDATA[视频]]></category>

		<guid isPermaLink="false">http://www.54chen.com/life/renren-video-1017.html</guid>
		<description><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br>[人人网热门视频展播] 由人肉手工选择，每周两到三集连播。复习前面的播放请进》》》。 近期潜心写代码，nuclear使用于renren-photo迁移，技术文章滞后发稿。 孙燕姿+萧亚轩+蔡依林+王力宏+周杰伦+H... 辽宁9岁男童长31根指头 惊魂鬼片场(爆笑) - 有史以来最好看的鬼片 张卫平：“这逼一下就丢球了”。 啊哈哈哈 监控实录嚣张男子手持甘蔗抢网吧 暨大坠楼女生终于清醒，自称不认识坠... 街头女生《sorry sorry》爵士鼓 ...分享:39674分享 Lady GaGa 最新9分半MV 全裸抬...分享:28733分享 如果你在大学堕落了，请听一听...分享:77471分享 中国军人与美国军人惊人对比 - ...分享:35507分享 奥塞利文怒了。。。凌空架杆！...分享:142103分享 监控：男子冲入法院60秒杀4人! ...分享:36393分享 探索频道—恐怖的中國四川大地...分享:29580分享 柯南 经典 主题曲锦集（最好听的...分享:27741分享<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></description>
			<content:encoded><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br><p><strong>[人人网热门视频展播] 由人肉手工选择，每周两到三集连播。复习前面的播放<a href="http://www.54chen.com/category/happy">请进》》》</a>。</strong><br />
<strong>近期潜心写代码，nuclear使用于renren-photo迁移，技术文章滞后发稿。</strong></p>
<p><a id="previewLink" title="暨大坠楼女生终于清醒，自称不认识坠楼男子！内涵了……" href="http://share.renren.com/share/GetShare.do?id=1821551813&amp;owner=287286115&amp;from=hotvideo6" target="_blank"><img id="previewImg" src="http://g4.ykimg.com/0100641F464BAA97FBEB0F00937647FFC23024-0559-A9F9-E911-47B79EE62307" alt="" width="220px" height="165px" /></a></p>
<ul id="share_hot_video_list">
<li class="  current"><a title="孙燕姿+萧亚轩+蔡依林+王力宏+周杰伦+Hebe+Selina 用MV拍了一个电影!" href="http://share.renren.com/share/GetShare.do?id=1812997278&amp;owner=273316500&amp;from=hotvideo1" target="_blank">孙燕姿+萧亚轩+蔡依林+王力宏+周杰伦+H...</a></li>
<li class=" "><a title="辽宁9岁男童长31根指头" href="http://share.renren.com/share/GetShare.do?id=1815388096&amp;owner=263511200&amp;from=hotvideo2" target="_blank">辽宁9岁男童长31根指头</a></li>
<li class=" "><a title="惊魂鬼片场(爆笑) - 有史以来最好看的鬼片 " href="http://share.renren.com/share/GetShare.do?id=1812461374&amp;owner=267602100&amp;from=hotvideo3" target="_blank">惊魂鬼片场(爆笑) - 有史以来最好看的鬼片</a></li>
<li class=" "><a title="张卫平：“这逼一下就丢球了”。  啊哈哈哈" href="http://share.renren.com/share/GetShare.do?id=1813788941&amp;owner=279495200&amp;from=hotvideo4" target="_blank">张卫平：“这逼一下就丢球了”。 啊哈哈哈</a></li>
<li class=" "><a title="监控实录嚣张男子手持甘蔗抢网吧" href="http://share.renren.com/share/GetShare.do?id=1813279582&amp;owner=279529900&amp;from=hotvideo5" target="_blank">监控实录嚣张男子手持甘蔗抢网吧</a></li>
<li class=" "><a title="暨大坠楼女生终于清醒，自称不认识坠楼男子！内涵了……" href="http://share.renren.com/share/GetShare.do?id=1821551813&amp;owner=287286115&amp;from=hotvideo6" target="_blank">暨大坠楼女生终于清醒，自称不认识坠...</a></li>
</ul>
<ul class="video-list clearfix">
<li><span class="share-name"><a title="街头女生《sorry sorry》爵士鼓  我靠、太帅了" href="http://share.renren.com/share/GetShare.do?id=1812608304&amp;owner=&amp;from=hotvideo" target="_blank">街头女生《sorry sorry》爵士鼓 ...</a></span><span class="share-num">分享:<em>39674</em></span><span class="float-right"><a onclick="create_share_nosysn(1812608304,238463600,238463600)" href="http://share.renren.com/?_os_type=87#nogo">分享</a></span></li>
<li><a class="share-figure" title="Lady GaGa 最新9分半MV 全裸抬腿露私处 只为了证明是女人 （老妈杀了我也要校内首发讲解说明）" href="http://share.renren.com/share/GetShare.do?id=1813204168&amp;owner=250378300&amp;from=hotvideo" target="_blank"><img src="http://g3.ykimg.com/0100641F464B9BABC61392015D597FCDCFA0A2-E5F0-19EB-D094-478EBDE3CD81" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="Lady GaGa 最新9分半MV 全裸抬腿露私处 只为了证明是女人 （老妈杀了我也要校内首发讲解说明）" href="http://share.renren.com/share/GetShare.do?id=1813204168&amp;owner=&amp;from=hotvideo" target="_blank">Lady GaGa 最新9分半MV 全裸抬...</a></span><span class="share-num">分享:<em>28733</em></span><span class="float-right"><a onclick="create_share_nosysn(1813204168,250378300,250378300)" href="http://share.renren.com/?_os_type=87#nogo">分享</a></span></li>
<li><a class="share-figure" title="如果你在大学堕落了，请听一听《我相信》" href="http://share.renren.com/share/GetShare.do?id=1808227668&amp;owner=272295500&amp;from=hotvideo" target="_blank"><img src="http://g1.ykimg.com/0100641F4649B7736C0A340187C013A3EC247F-6E61-496D-8721-14DA5C1670D4" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="如果你在大学堕落了，请听一听《我相信》" href="http://share.renren.com/share/GetShare.do?id=1808227668&amp;owner=&amp;from=hotvideo" target="_blank">如果你在大学堕落了，请听一听...</a></span><span class="share-num">分享:<em>77471</em></span><span class="float-right"><a onclick="create_share_nosysn(1808227668,272295500,272295500)" href="http://share.renren.com/?_os_type=87#nogo">分享</a></span></li>
<li><a class="share-figure" title="中国军人与美国军人惊人对比 - 视频 - 优酷视频 - 在线观看" href="http://share.renren.com/share/GetShare.do?id=1812485709&amp;owner=87610400&amp;from=hotvideo" target="_blank"><img src="http://g4.ykimg.com/0100641F4648FBEAA75E8A00341DCAFBDC56DD-7835-541F-8A2D-37AC962A41FF" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="中国军人与美国军人惊人对比 - 视频 - 优酷视频 - 在线观看" href="http://share.renren.com/share/GetShare.do?id=1812485709&amp;owner=&amp;from=hotvideo" target="_blank">中国军人与美国军人惊人对比 - ...</a></span><span class="share-num">分享:<em>35507</em></span><span class="float-right"><a onclick="create_share_nosysn(1812485709,87610400,87610400)" href="http://share.renren.com/?_os_type=87#nogo">分享</a></span></li>
<li><a class="share-figure" title="奥塞利文怒了。。。凌空架杆！各种赛！一万库叫球！太TM霸气了！！" href="http://share.renren.com/share/GetShare.do?id=1800749405&amp;owner=223514100&amp;from=hotvideo" target="_blank"><img src="http://g4.ykimg.com/0100641F464B8A2AEFFB8500D1B90DF6FBB24D-2605-EC4A-D7F2-1E47C054DEA1" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="奥塞利文怒了。。。凌空架杆！各种赛！一万库叫球！太TM霸气了！！" href="http://share.renren.com/share/GetShare.do?id=1800749405&amp;owner=&amp;from=hotvideo" target="_blank">奥塞利文怒了。。。凌空架杆！...</a></span><span class="share-num">分享:<em>142103</em></span><span class="float-right"><a onclick="create_share_nosysn(1800749405,223514100,223514100)" href="http://share.renren.com/?_os_type=87#nogo">分享</a></span></li>
<li><a class="share-figure" title="监控：男子冲入法院60秒杀4人!  猛输出 秒伤高  好生猛的DPS !估计是个毁伤贼。" href="http://share.renren.com/share/GetShare.do?id=1812514923&amp;owner=244851100&amp;from=hotvideo" target="_blank"><img src="http://i21.ku6.com/20103/19/8/1271944633364/8.jpg" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="监控：男子冲入法院60秒杀4人!  猛输出 秒伤高  好生猛的DPS !估计是个毁伤贼。" href="http://share.renren.com/share/GetShare.do?id=1812514923&amp;owner=&amp;from=hotvideo" target="_blank">监控：男子冲入法院60秒杀4人! ...</a></span><span class="share-num">分享:<em>36393</em></span><span class="float-right"><a onclick="create_share_nosysn(1812514923,244851100,244851100)" href="http://share.renren.com/?_os_type=87#nogo">分享</a></span></li>
<li><a class="share-figure" title="探索频道—恐怖的中國四川大地震（开头画面很难在CC和谐AV看到）" href="http://share.renren.com/share/GetShare.do?id=1806540181&amp;owner=224825300&amp;from=hotvideo" target="_blank"><img src="http://g1.ykimg.com/0100641F464BA53F90ED7300A2544FD1B96D6A-0B6F-F346-26AE-8045CD048A1B" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="探索频道—恐怖的中國四川大地震（开头画面很难在CC和谐AV看到）" href="http://share.renren.com/share/GetShare.do?id=1806540181&amp;owner=&amp;from=hotvideo" target="_blank">探索频道—恐怖的中國四川大地...</a></span><span class="share-num">分享:<em>29580</em></span><span class="float-right"><a onclick="create_share_nosysn(1806540181,224825300,224825300)" href="http://share.renren.com/?_os_type=87#nogo">分享</a></span></li>
<li><a class="share-figure" title="柯南 经典 主题曲锦集（最好听的15首）" href="http://share.renren.com/share/GetShare.do?id=1812477776&amp;owner=283351500&amp;from=hotvideo" target="_blank"><img src="http://g1.ykimg.com/0100641F464B5A2D84EA1B016BD100615AD2D2-4919-C642-8675-A3FA4DC8A5C9" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="柯南 经典 主题曲锦集（最好听的15首）" href="http://share.renren.com/share/GetShare.do?id=1812477776&amp;owner=&amp;from=hotvideo" target="_blank">柯南 经典 主题曲锦集（最好听的...</a></span><span class="share-num">分享:<em>27741</em></span><span class="float-right"><a onclick="create_share_nosysn(1812477776,283351500,283351500)" href="http://share.renren.com/?_os_type=87#nogo">分享</a></span></li>
</ul>
<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></content:encoded>
			<wfw:commentRss>http://www.54chen.com/life/renren-video-1017.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>[视频]《这是护士吗畜生，人肉她！！》等</title>
		<link>http://www.54chen.com/life/renren-video-3-23.html</link>
		<comments>http://www.54chen.com/life/renren-video-3-23.html#comments</comments>
		<pubDate>Tue, 23 Mar 2010 01:01:13 +0000</pubDate>
		<dc:creator>cc0cc</dc:creator>
				<category><![CDATA[生活备份]]></category>
		<category><![CDATA[人人网]]></category>
		<category><![CDATA[视频]]></category>

		<guid isPermaLink="false">http://www.54chen.com/life/renren-video-3-23.html</guid>
		<description><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br>[人人网热门视频展播] 由人肉手工选择，每周两到三集连播。复习前面的播放请进》》》。 今天谷歌切换域名，特此表示沉默。 好强悍的奶牛~~~~~这广告很不错啊 终于知道什么叫绝世美女了 这是护士吗畜生，人肉她！！ 处处都是美女，但是。。。。。。。。。 玛丽莲凤姐-告诉你什么叫有灵魂的摇滚... 抖腿帝。看完如果你不想杀人，我就撞墙... 惊！给90后看的成人动画？中国... 分享:31350 分享 神作！Eason Chan 「陈奕迅」20... 分享:35031 分享 2010温答记者问（翻译是外交学... 分享:53432 分享 这视频让我笑了一天！ 分享:122280 分享 从7:30，他还想坚持，他一瘸一... 分享:142981 分享 《杜拉拉升职记》预告片 4月15... 分享:32889 分享 2010世博会主题曲/ 陈绮贞/张靓... 分享:34471 分享 怎样制做内容丰富的幻灯片 PPT -...<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></description>
			<content:encoded><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br><p><strong>[人人网热门视频展播] 由人肉手工选择，每周两到三集连播。复习前面的播放<a href="http://www.54chen.com/category/happy">请进》》》</a>。</strong></p>
<p><strong>今天谷歌切换域名，特此表示沉默。</strong></p>
<div class="share-figuie"><a id="previewLink" title="这是护士吗畜生，人肉她！！" href="http://share.renren.com/share/GetShare.do?id=1795160846&amp;owner=250471200&amp;from=hotvideo3" target="_blank"> <img id="previewImg" src="http://i22.ku6.com/200912/24/11/32906747266018476/5.jpg" alt="" width="220px" height="165px" /> </a></div>
<ul id="share_hot_video_list">
<li class="  current"> <a title="好强悍的奶牛~~~~~这广告很不错啊" href="http://share.renren.com/share/GetShare.do?id=1795461800&amp;owner=254581800&amp;from=hotvideo1" target="_blank">好强悍的奶牛~~~~~这广告很不错啊</a></li>
<li class=" "> <a title="终于知道什么叫绝世美女了" href="http://share.renren.com/share/GetShare.do?id=1795048584&amp;owner=233036700&amp;from=hotvideo2" target="_blank">终于知道什么叫绝世美女了</a></li>
<li class=" "> <a title="这是护士吗畜生，人肉她！！" href="http://share.renren.com/share/GetShare.do?id=1795160846&amp;owner=250471200&amp;from=hotvideo3" target="_blank">这是护士吗畜生，人肉她！！</a></li>
<li class=" "> <a title="处处都是美女，但是。。。。。。。。。" href="http://share.renren.com/share/GetShare.do?id=1794947030&amp;owner=257499900&amp;from=hotvideo4" target="_blank">处处都是美女，但是。。。。。。。。。</a></li>
<li class=" "> <a title="玛丽莲凤姐-告诉你什么叫有灵魂的摇滚-毁耳+瞎眼物 正曲从1分20秒后开始 前边是重口味" href="http://share.renren.com/share/GetShare.do?id=1795528995&amp;owner=241944400&amp;from=hotvideo5" target="_blank">玛丽莲凤姐-告诉你什么叫有灵魂的摇滚...</a></li>
<li class=" "> <a title="抖腿帝。看完如果你不想杀人，我就撞墙...避雷针也没有用 我已经阵亡了...手贱的进" href="http://share.renren.com/share/GetShare.do?id=1795219872&amp;owner=257593900&amp;from=hotvideo6" target="_blank">抖腿帝。看完如果你不想杀人，我就撞墙...</a></li>
</ul>
<ul class="video-list clearfix">
<li> <a class="share-figure" title="惊！给90后看的成人动画？中国学院派原创动画这么大尺度！18禁不禁？连获数项大奖！！ " href="http://share.renren.com/share/GetShare.do?id=1795037601&amp;owner=239946500&amp;from=hotvideo" target="_blank"> <img src="http://g3.ykimg.com/0100641F464A23B83AFC8C00D0D531E6FC7A22-D8C8-BACA-4EC7-37103CC41B80" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="惊！给90后看的成人动画？中国学院派原创动画这么大尺度！18禁不禁？连获数项大奖！！ " href="http://share.renren.com/share/GetShare.do?id=1795037601&amp;owner=&amp;from=hotvideo" target="_blank">惊！给90后看的成人动画？中国...</a></span> <span class="share-num">分享:<em>31350</em></span> <span class="float-right"><a onclick="create_share_nosysn(1795037601,239946500,239946500)" href="http://share.renren.com/share/hot?_lu=71#nogo">分享</a></span></li>
<li> <a class="share-figure" title="神作！Eason  Chan 「陈奕迅」2010新单首播   一丝不挂" href="http://share.renren.com/share/GetShare.do?id=1764371261&amp;owner=232893900&amp;from=hotvideo" target="_blank"> <img src="http://g3.ykimg.com/0100641F464B99A53AD279002FCBCA1121F927-A004-050F-3FF8-E49B4429D0DE" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="神作！Eason  Chan 「陈奕迅」2010新单首播   一丝不挂" href="http://share.renren.com/share/GetShare.do?id=1764371261&amp;owner=&amp;from=hotvideo" target="_blank">神作！Eason  Chan 「陈奕迅」20...</a></span> <span class="share-num">分享:<em>35031</em></span> <span class="float-right"><a onclick="create_share_nosysn(1764371261,232893900,232893900)" href="http://share.renren.com/share/hot?_lu=71#nogo">分享</a></span></li>
<li> <a class="share-figure" title="2010温答记者问（翻译是外交学院国际法系2000年毕业的张璐，向师姐学习！）" href="http://share.renren.com/share/GetShare.do?id=1795098250&amp;owner=233687400&amp;from=hotvideo" target="_blank"> <img src="http://g4.ykimg.com/01270F1F464B9C6457F32400000000A1FBA9DB-C1E5-634C-F945-83B6E8F402A2" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="2010温答记者问（翻译是外交学院国际法系2000年毕业的张璐，向师姐学习！）" href="http://share.renren.com/share/GetShare.do?id=1795098250&amp;owner=&amp;from=hotvideo" target="_blank">2010温答记者问（翻译是外交学...</a></span> <span class="share-num">分享:<em>53432</em></span> <span class="float-right"><a onclick="create_share_nosysn(1795098250,233687400,233687400)" href="http://share.renren.com/share/hot?_lu=71#nogo">分享</a></span></li>
<li> <a class="share-figure" title="这视频让我笑了一天！" href="http://share.renren.com/share/GetShare.do?id=1795698113&amp;owner=308242900&amp;from=hotvideo" target="_blank"> <img src="http://g4.ykimg.com/0100641F464B7BACFFB750002CE6307A350DB0-8AA3-0DC8-D546-C34A236976F0" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="这视频让我笑了一天！" href="http://share.renren.com/share/GetShare.do?id=1795698113&amp;owner=&amp;from=hotvideo" target="_blank">这视频让我笑了一天！</a></span> <span class="share-num">分享:<em>122280</em></span> <span class="float-right"><a onclick="create_share_nosysn(1795698113,308242900,308242900)" href="http://share.renren.com/share/hot?_lu=71#nogo">分享</a></span></li>
<li> <a class="share-figure" title="从7:30，他还想坚持，他一瘸一拐走下场，全场六万名观众为他鼓掌……贝影" href="http://share.renren.com/share/GetShare.do?id=1795214574&amp;owner=224796900&amp;from=hotvideo" target="_blank"> <img src="http://g3.ykimg.com/0100641F46472D5FFAA888004D1592AA0F23CE-118F-6668-392B-80035983A0D6" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="从7:30，他还想坚持，他一瘸一拐走下场，全场六万名观众为他鼓掌……贝影" href="http://share.renren.com/share/GetShare.do?id=1795214574&amp;owner=&amp;from=hotvideo" target="_blank">从7:30，他还想坚持，他一瘸一...</a></span> <span class="share-num">分享:<em>142981</em></span> <span class="float-right"><a onclick="create_share_nosysn(1795214574,224796900,224796900)" href="http://share.renren.com/share/hot?_lu=71#nogo">分享</a></span></li>
<li> <a class="share-figure" title="《杜拉拉升职记》预告片 4月15全国首映" href="http://share.renren.com/share/GetShare.do?id=1794971432&amp;owner=221224900&amp;from=hotvideo" target="_blank"> <img src="http://g2.ykimg.com/0100641F464B961605EF860014D61BF0A5C752-82B2-A22A-DA4E-1B6233FE9C2A" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="《杜拉拉升职记》预告片 4月15全国首映" href="http://share.renren.com/share/GetShare.do?id=1794971432&amp;owner=&amp;from=hotvideo" target="_blank">《杜拉拉升职记》预告片 4月15...</a></span> <span class="share-num">分享:<em>32889</em></span> <span class="float-right"><a onclick="create_share_nosysn(1794971432,221224900,221224900)" href="http://share.renren.com/share/hot?_lu=71#nogo">分享</a></span></li>
<li> <a class="share-figure" title="2010世博会主题曲/ 陈绮贞/张靓颖/刘德华....  " href="http://share.renren.com/share/GetShare.do?id=1795692282&amp;owner=267927900&amp;from=hotvideo" target="_blank"> <img src="http://g2.ykimg.com/0100641F464B2CAEE1B47D01B7F3FE0E7CF85D-D7EF-17CD-8F76-A96D3BEA6723" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="2010世博会主题曲/ 陈绮贞/张靓颖/刘德华....  " href="http://share.renren.com/share/GetShare.do?id=1795692282&amp;owner=&amp;from=hotvideo" target="_blank">2010世博会主题曲/ 陈绮贞/张靓...</a></span> <span class="share-num">分享:<em>34471</em></span> <span class="float-right"><a onclick="create_share_nosysn(1795692282,267927900,267927900)" href="http://share.renren.com/share/hot?_lu=71#nogo">分享</a></span></li>
<li> <a class="share-figure" title="怎样制做内容丰富的幻灯片 PPT - 制作方法 ,没事的时候看看,以后会有用." href="http://share.renren.com/share/GetShare.do?id=1758130335&amp;owner=240456900&amp;from=hotvideo" target="_blank"> <img src="http://g4.ykimg.com/0100641F464711E913A29D001F425A377B4E2C-5FA6-E4D1-3866-F5AFE0A1B0B7" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="怎样制做内容丰富的幻灯片 PPT - 制作方法 ,没事的时候看看,以后会有用." href="http://share.renren.com/share/GetShare.do?id=1758130335&amp;owner=&amp;from=hotvideo" target="_blank">怎样制做内容丰富的幻灯片 PPT -...</a></span></li>
</ul>
<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></content:encoded>
			<wfw:commentRss>http://www.54chen.com/life/renren-video-3-23.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>人人网精彩视频展播：朱容基的强人姿态等</title>
		<link>http://www.54chen.com/life/renren-wonderful-video-mrzhu.html</link>
		<comments>http://www.54chen.com/life/renren-wonderful-video-mrzhu.html#comments</comments>
		<pubDate>Fri, 19 Mar 2010 11:12:53 +0000</pubDate>
		<dc:creator>cc0cc</dc:creator>
				<category><![CDATA[生活备份]]></category>
		<category><![CDATA[人人网]]></category>
		<category><![CDATA[视频]]></category>

		<guid isPermaLink="false">http://www.54chen.com/life/renren-wonderful-video-mrzhu.html</guid>
		<description><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br>周末愉快！这周因为dia的vps出现硬盘损坏，关站了2天，没雅兴写技术文章，下周再来开始每周一篇的技术文章，同时每周2-3篇的人人网精彩视频分享不容错过。 另外，五四陈后院的精彩内容也可以去看看。 朱容基的强人姿态_中国欠了他【蘢属】 夏河和洛洛你们落伍了 牛人现场模仿15位明星演唱&#60;狮子座&#38;g... 鞭炮塞进狗耳朵！网络惊爆初中生虐狗... 小虎队1995年告别演唱会（也许这辈子... 艾弗森晃晕对手的表现，联盟再无如此... 看到新一代祖国花朵的户外游戏... 分享:19404 分享 《贝影》献给贝克汉姆 天下足球... 分享:21523 分享 Poker Face【硬汉版】-竟有种说... 分享:61673 分享 神作！Eason Chan 「陈奕迅」20... 分享:26275 分享 让人喷饭的各种搞笑失误 分享:38769 分享 他才15岁全美最红的 Justin Biebe... 分享:51297 分享 80后懂的，这歌接的、太猛了！ 分享:147527 分享<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></description>
			<content:encoded><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br><p><B>周末愉快！这周因为dia的vps出现硬盘损坏，关站了2天，没雅兴写技术文章，下周再来开始每周一篇的技术文章，同时每周2-3篇的人人网精彩视频分享不容错过。<br />
另外，五四陈后院的精彩内容也可以<a href="http://backyard.54chen.com">去看看</a>。<br />
</B></p>
<li class="  current"><a id="previewLink" title="朱容基的强人姿态_中国欠了他【蘢属】" href="http://share.renren.com/share/GetShare.do?id=1777147423&amp;owner=227489200&amp;from=hotvideo1" target="_blank"><img id="previewImg" src="http://i12.ku6.com/smallpic/mv/2006357/11669664895uaai_7.jpg" alt="" width="220" height="165" /> </a></li>
<li class="  current"><a title="朱容基的强人姿态_中国欠了他【蘢属】" href="http://share.renren.com/share/GetShare.do?id=1777147423&amp;owner=227489200&amp;from=hotvideo1" target="_blank">朱容基的强人姿态_中国欠了他【蘢属】</a></li>
<li class=" "><a title="夏河和洛洛你们落伍了" href="http://share.renren.com/share/GetShare.do?id=1771507049&amp;owner=225603400&amp;from=hotvideo2" target="_blank">夏河和洛洛你们落伍了</a></li>
<li class=" "><a title="牛人现场模仿15位明星演唱&lt;狮子座&gt; -超赞! !" href="http://share.renren.com/share/GetShare.do?id=1771199834&amp;owner=228653200&amp;from=hotvideo3" target="_blank">牛人现场模仿15位明星演唱&lt;狮子座&amp;g...</a></li>
<li class=" "><a title="鞭炮塞进狗耳朵！网络惊爆初中生虐狗视频 ，都给我顶起来" href="http://share.renren.com/share/GetShare.do?id=1777180957&amp;owner=239665300&amp;from=hotvideo4" target="_blank">鞭炮塞进狗耳朵！网络惊爆初中生虐狗...</a></li>
<li class=" "><a title="小虎队1995年告别演唱会（也许这辈子再难看到他们一起开演唱会了）" href="http://share.renren.com/share/GetShare.do?id=1771208107&amp;owner=254525200&amp;from=hotvideo5" target="_blank">小虎队1995年告别演唱会（也许这辈子...</a></li>
<li class=" "><a title="艾弗森晃晕对手的表现，联盟再无如此华丽crossover！" href="http://share.renren.com/share/GetShare.do?id=1777236603&amp;owner=221679400&amp;from=hotvideo6" target="_blank">艾弗森晃晕对手的表现，联盟再无如此...</a></li>
<ul>
<li><a class="share-figure" title="看到新一代祖国花朵的户外游戏，我感到压力很大" href="http://share.renren.com/share/GetShare.do?id=1757948774&amp;owner=241611400&amp;from=hotvideo" target="_blank"><img src="http://i01.img.tudou.com/data/imgs/i/008/916/426/p.jpg" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="看到新一代祖国花朵的户外游戏，我感到压力很大" href="http://share.renren.com/share/GetShare.do?id=1757948774&amp;owner=&amp;from=hotvideo" target="_blank">看到新一代祖国花朵的户外游戏...</a></span> <span class="share-num">分享:<em>19404</em></span> <span class="float-right"><a onclick="create_share_nosysn(1757948774,241611400,241611400)" href="http://share.renren.com/?_mm_id=64#nogo">分享</a></span></li>
<li><a class="share-figure" title="《贝影》献给贝克汉姆 天下足球 祝贝克汉姆早日康复" href="http://share.renren.com/share/GetShare.do?id=1777205630&amp;owner=246218700&amp;from=hotvideo" target="_blank"><img src="http://i01.img.tudou.com/data/imgs/i/047/986/443/m25.jpg" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="《贝影》献给贝克汉姆 天下足球 祝贝克汉姆早日康复" href="http://share.renren.com/share/GetShare.do?id=1777205630&amp;owner=&amp;from=hotvideo" target="_blank">《贝影》献给贝克汉姆 天下足球...</a></span> <span class="share-num">分享:<em>21523</em></span> <span class="float-right"><a onclick="create_share_nosysn(1777205630,246218700,246218700)" href="http://share.renren.com/?_mm_id=64#nogo">分享</a></span></li>
<li><a class="share-figure" title="Poker Face【硬汉版】-竟有种说不出的伤感" href="http://share.renren.com/share/GetShare.do?id=1757952621&amp;owner=223731500&amp;from=hotvideo" target="_blank"><img src="http://g2.ykimg.com/0100641F464B6FE695DC5300071AFF072E133C-2513-3D39-35F9-2F4AE65C9CCF" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="Poker Face【硬汉版】-竟有种说不出的伤感" href="http://share.renren.com/share/GetShare.do?id=1757952621&amp;owner=&amp;from=hotvideo" target="_blank">Poker Face【硬汉版】-竟有种说...</a></span> <span class="share-num">分享:<em>61673</em></span> <span class="float-right"><a onclick="create_share_nosysn(1757952621,223731500,223731500)" href="http://share.renren.com/?_mm_id=64#nogo">分享</a></span></li>
<li><a class="share-figure" title="神作！Eason  Chan 「陈奕迅」2010新单首播   一丝不挂" href="http://share.renren.com/share/GetShare.do?id=1764371261&amp;owner=232893900&amp;from=hotvideo" target="_blank"><img src="http://g3.ykimg.com/0100641F464B99A53AD279002FCBCA1121F927-A004-050F-3FF8-E49B4429D0DE" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="神作！Eason  Chan 「陈奕迅」2010新单首播   一丝不挂" href="http://share.renren.com/share/GetShare.do?id=1764371261&amp;owner=&amp;from=hotvideo" target="_blank">神作！Eason Chan 「陈奕迅」20...</a></span> <span class="share-num">分享:<em>26275</em></span> <span class="float-right"><a onclick="create_share_nosysn(1764371261,232893900,232893900)" href="http://share.renren.com/?_mm_id=64#nogo">分享</a></span></li>
<li><a class="share-figure" title="让人喷饭的各种搞笑失误" href="http://share.renren.com/share/GetShare.do?id=1777134745&amp;owner=279127900&amp;from=hotvideo" target="_blank"><img src="http://g2.ykimg.com/0100641F464B9F2649444E019F6C4284F98162-28E2-64E0-8979-3F7A3CD7F658" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="让人喷饭的各种搞笑失误" href="http://share.renren.com/share/GetShare.do?id=1777134745&amp;owner=&amp;from=hotvideo" target="_blank">让人喷饭的各种搞笑失误</a></span> <span class="share-num">分享:<em>38769</em></span> <span class="float-right"><a onclick="create_share_nosysn(1777134745,279127900,279127900)" href="http://share.renren.com/?_mm_id=64#nogo">分享</a></span></li>
<li><a class="share-figure" title="他才15岁全美最红的 Justin Bieber – Baby" href="http://share.renren.com/share/GetShare.do?id=1758129410&amp;owner=260549000&amp;from=hotvideo" target="_blank"><img src="http://g3.ykimg.com/0100641F464B7FFB5E854100F1676384356CED-E528-F0FA-EA36-AB9346DCB06B" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="他才15岁全美最红的 Justin Bieber – Baby" href="http://share.renren.com/share/GetShare.do?id=1758129410&amp;owner=&amp;from=hotvideo" target="_blank">他才15岁全美最红的 Justin Biebe...</a></span> <span class="share-num">分享:<em>51297</em></span> <span class="float-right"><a onclick="create_share_nosysn(1758129410,260549000,260549000)" href="http://share.renren.com/?_mm_id=64#nogo">分享</a></span></li>
<li><a class="share-figure" title="80后懂的，这歌接的、太猛了！" href="http://share.renren.com/share/GetShare.do?id=1758024715&amp;owner=307627400&amp;from=hotvideo" target="_blank"><img src="http://g1.ykimg.com/0100641F464B49BB888D2F011C6E4BA980DC5C-8C49-6E1E-984E-45D32F942469" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="80后懂的，这歌接的、太猛了！" href="http://share.renren.com/share/GetShare.do?id=1758024715&amp;owner=&amp;from=hotvideo" target="_blank">80后懂的，这歌接的、太猛了！</a></span> <span class="share-num">分享:<em>147527</em></span> <span class="float-right"><a onclick="create_share_nosysn(1758024715,307627400,307627400)" href="http://share.renren.com/?_mm_id=64#nogo">分享</a></span></li>
</ul>
<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></content:encoded>
			<wfw:commentRss>http://www.54chen.com/life/renren-wonderful-video-mrzhu.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>人人网精彩视频展播：社会现在的男女关系【淡定的杯具】等</title>
		<link>http://www.54chen.com/life/everyone-network-wonderful-video-zhanbo-social-relations-between-men-and-women-now-a-danding-cups-etc.html</link>
		<comments>http://www.54chen.com/life/everyone-network-wonderful-video-zhanbo-social-relations-between-men-and-women-now-a-danding-cups-etc.html#comments</comments>
		<pubDate>Fri, 12 Mar 2010 10:42:18 +0000</pubDate>
		<dc:creator>cc0cc</dc:creator>
				<category><![CDATA[生活备份]]></category>
		<category><![CDATA[人人网]]></category>
		<category><![CDATA[视频]]></category>

		<guid isPermaLink="false">http://www.54chen.com/life/everyone-network-wonderful-video-zhanbo-social-relations-between-men-and-women-now-a-danding-cups-etc.html</guid>
		<description><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br>电子科技大学“许愿门”推出现场视频版！... 【搞笑＋回忆】2010密歇根大学华人春... 阿弥陀佛啊！实拍女生久劝救下跳江男！ 社会现在的男女关系【淡定的杯具】 “献身门”事件男主角微微一笑，轻松回应... 62岁高龄，仍然是20岁的样貌和身材！... 我第一次听的时候笑得差点没背过...分享:6541分享 当面试屡次失败之后……童鞋们要蛋腚！分享:724分享 赵四继黑山后又一演出，太特么逗...分享:6633分享 电视圈高层深陷“献身门”！女主...分享:265分享 除了毛主席，谁还敢对美国这样讲话？分享:22741分享 罗志祥暴帅出镜 热力新单-舞法舞天分享:2354分享 爆点！爆点！羅志祥前女友出现。...分享:30152分享 超震撼高音 唱到对手脸都歪了 周末愉快！<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></description>
			<content:encoded><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br><div class="share-figuie"><a id="previewLink" title="社会现在的男女关系【淡定的杯具】" href="http://share.renren.com/share/GetShare.do?id=1732271774&amp;owner=227220500&amp;from=hotvideo4" target="_blank"><img id="previewImg" src="http://img14.c2.ku6.cn/200801/30/21/YivI59J809XCM17u/3.jpg" alt="" width="220px" height="165px" /></a></div>
<ul id="share_hot_video_list">
<li class="  current"><a title="电子科技大学“许愿门”推出现场视频版！那个被删了，咱还有这个！" href="http://share.renren.com/share/GetShare.do?id=1741501413&amp;owner=287286115&amp;from=hotvideo1" target="_blank">电子科技大学“许愿门”推出现场视频版！...</a></li>
<li class=" "><a title="【搞笑＋回忆】2010密歇根大学华人春节晚会最受欢迎节目My Awaken Dream (80后的回忆)" href="http://share.renren.com/share/GetShare.do?id=1735266366&amp;owner=236926900&amp;from=hotvideo2" target="_blank">【搞笑＋回忆】2010密歇根大学华人春...</a></li>
<li class=" "><a title="阿弥陀佛啊！实拍女生久劝救下跳江男！" href="http://share.renren.com/share/GetShare.do?id=1739576500&amp;owner=287519876&amp;from=hotvideo3" target="_blank">阿弥陀佛啊！实拍女生久劝救下跳江男！</a></li>
<li class=" "><a title="社会现在的男女关系【淡定的杯具】" href="http://share.renren.com/share/GetShare.do?id=1732271774&amp;owner=227220500&amp;from=hotvideo4" target="_blank">社会现在的男女关系【淡定的杯具】</a></li>
<li class=" "><a title="“献身门”事件男主角微微一笑，轻松回应潜规则！" href="http://share.renren.com/share/GetShare.do?id=1739473898&amp;owner=287286115&amp;from=hotvideo5" target="_blank">“献身门”事件男主角微微一笑，轻松回应...</a></li>
<li class=" "><a title="62岁高龄，仍然是20岁的样貌和身材！真的可以长生不老！" href="http://share.renren.com/share/GetShare.do?id=1732409466&amp;owner=244367500&amp;from=hotvideo6" target="_blank">62岁高龄，仍然是20岁的样貌和身材！...</a></li>
</ul>
<ul class="video-list clearfix">
<li><span class="share-name"><a title="我第一次听的时候笑得差点没背过气去！会传染的笑，注意第三个，第五个和第七个" href="http://share.renren.com/share/GetShare.do?id=1734461705&amp;owner=235237600&amp;from=hotvideo" target="_blank">我第一次听的时候笑得差点没背过...</a></span><span class="share-num">分享:<em>6541</em></span><span class="float-right"><a onclick="create_share_nosysn(1734461705,235237600,235237600)" href="http://share.renren.com/?_request_from=7#nogo">分享</a></span></li>
<li><a class="share-figure" title="当面试屡次失败之后……童鞋们要蛋腚！" href="http://share.renren.com/share/GetShare.do?id=1739473903&amp;owner=287286115&amp;from=hotvideo" target="_blank"><img src="http://g1.ykimg.com/0100641F464B67E6342BA502DEE43FD75E0DF7-8085-E36D-EC80-D26C981C7F58" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="当面试屡次失败之后……童鞋们要蛋腚！" href="http://share.renren.com/share/GetShare.do?id=1739473903&amp;owner=287286115&amp;from=hotvideo" target="_blank">当面试屡次失败之后……童鞋们要蛋腚！</a></span><span class="share-num">分享:<em>724</em></span><span class="float-right"><a onclick="create_share_nosysn(1739473903,287286115,287286115)" href="http://share.renren.com/?_request_from=7#nogo">分享</a></span></li>
<li><a class="share-figure" title="赵四继黑山后又一演出，太特么逗了，半夜看完我笑一宿。赵四不红，天理难容！" href="http://share.renren.com/share/GetShare.do?id=1726566958&amp;owner=234716100&amp;from=hotvideo" target="_blank"><img src="http://g2.ykimg.com/0100641F464AD549F52D530280A00433A3F0D1-C724-6043-ACB8-FC68CCCF94DE" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="赵四继黑山后又一演出，太特么逗了，半夜看完我笑一宿。赵四不红，天理难容！" href="http://share.renren.com/share/GetShare.do?id=1726566958&amp;owner=234716100&amp;from=hotvideo" target="_blank">赵四继黑山后又一演出，太特么逗...</a></span><span class="share-num">分享:<em>6633</em></span><span class="float-right"><a onclick="create_share_nosysn(1726566958,234716100,234716100)" href="http://share.renren.com/?_request_from=7#nogo">分享</a></span></li>
<li><a class="share-figure" title="电视圈高层深陷“献身门”！女主播自曝潜规则，很黄很暴力！" href="http://share.renren.com/share/GetShare.do?id=1739473908&amp;owner=287286115&amp;from=hotvideo" target="_blank"><img src="http://g4.ykimg.com/0100641F464B971D935B5600A3B6BCEDD809B3-0028-9461-4BB2-3AAC8C63FB80" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="电视圈高层深陷“献身门”！女主播自曝潜规则，很黄很暴力！" href="http://share.renren.com/share/GetShare.do?id=1739473908&amp;owner=287286115&amp;from=hotvideo" target="_blank">电视圈高层深陷“献身门”！女主...</a></span><span class="share-num">分享:<em>265</em></span><span class="float-right"><a onclick="create_share_nosysn(1739473908,287286115,287286115)" href="http://share.renren.com/?_request_from=7#nogo">分享</a></span></li>
<li><a class="share-figure" title="除了毛主席，谁还敢对美国这样讲话？" href="http://share.renren.com/share/GetShare.do?id=1732660381&amp;owner=76469600&amp;from=hotvideo" target="_blank"><img src="http://g1.ykimg.com/0100641F4649A67FF096BE01770FE6DC1339CD-ED1F-3448-46A4-255DD67C1998" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="除了毛主席，谁还敢对美国这样讲话？" href="http://share.renren.com/share/GetShare.do?id=1732660381&amp;owner=76469600&amp;from=hotvideo" target="_blank">除了毛主席，谁还敢对美国这样讲话？</a></span><span class="share-num">分享:<em>22741</em></span><span class="float-right"><a onclick="create_share_nosysn(1732660381,76469600,76469600)" href="http://share.renren.com/?_request_from=7#nogo">分享</a></span></li>
<li><a class="share-figure" title="罗志祥暴帅出镜 热力新单-舞法舞天" href="http://share.renren.com/share/GetShare.do?id=1726882608&amp;owner=287286312&amp;from=hotvideo" target="_blank"><img src="http://g3.ykimg.com/0100641F464B9503561D2300A8DE57D9C191D4-1B4A-665E-D1B0-9EBDE17B31E3" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="罗志祥暴帅出镜 热力新单-舞法舞天" href="http://share.renren.com/share/GetShare.do?id=1726882608&amp;owner=287286312&amp;from=hotvideo" target="_blank">罗志祥暴帅出镜 热力新单-舞法舞天</a></span><span class="share-num">分享:<em>2354</em></span><span class="float-right"><a onclick="create_share_nosysn(1726882608,287286312,287286312)" href="http://share.renren.com/?_request_from=7#nogo">分享</a></span></li>
<li><a class="share-figure" title="爆点！爆点！羅志祥前女友出现。这次是真的！好多回忆嗒嗒嗒地出来。。" href="http://share.renren.com/share/GetShare.do?id=1714000800&amp;owner=246357300&amp;from=hotvideo" target="_blank"><img src="http://i01.img.tudou.com/data/imgs/i/047/313/856/p.jpg" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="爆点！爆点！羅志祥前女友出现。这次是真的！好多回忆嗒嗒嗒地出来。。" href="http://share.renren.com/share/GetShare.do?id=1714000800&amp;owner=246357300&amp;from=hotvideo" target="_blank">爆点！爆点！羅志祥前女友出现。...</a></span><span class="share-num">分享:<em>30152</em></span><span class="float-right"><a onclick="create_share_nosysn(1714000800,246357300,246357300)" href="http://share.renren.com/?_request_from=7#nogo">分享</a></span></li>
<li><a class="share-figure" title="超震撼高音 唱到对手脸都歪了" href="http://share.renren.com/share/GetShare.do?id=1726196394&amp;owner=255265000&amp;from=hotvideo" target="_blank"><img src="http://g3.ykimg.com/0100641F464B84513ABF47033996E2AA1719EB-CBD7-98C1-D247-E80637A45E2B" alt="" width="120px" height="90px" /><span class="play-icon"> </span></a><span class="share-name"><a title="超震撼高音 唱到对手脸都歪了" href="http://share.renren.com/share/GetShare.do?id=1726196394&amp;owner=255265000&amp;from=hotvideo" target="_blank">超震撼高音 唱到对手脸都歪了</a></span></li>
</ul>
<p>周末愉快！</p>
<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></content:encoded>
			<wfw:commentRss>http://www.54chen.com/life/everyone-network-wonderful-video-zhanbo-social-relations-between-men-and-women-now-a-danding-cups-etc.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>人人网精彩视频展播：世界前50名灵异视频等</title>
		<link>http://www.54chen.com/life/renren-wonderful-video.html</link>
		<comments>http://www.54chen.com/life/renren-wonderful-video.html#comments</comments>
		<pubDate>Tue, 09 Mar 2010 14:45:36 +0000</pubDate>
		<dc:creator>cc0cc</dc:creator>
				<category><![CDATA[生活备份]]></category>
		<category><![CDATA[人人网]]></category>
		<category><![CDATA[视频]]></category>

		<guid isPermaLink="false">http://www.54chen.com/life/renren-wonderful-video.html</guid>
		<description><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br>继续上周的展播： 六岁的他想拿冠军 【优酷首播】超可爱！迷你版Lady g... 2010新片【花田喜事】 完整版正片 【犀利哥】【03月02日14点】宁波东... 小女孩歌声媲美小康妮 世界前50名灵异视频 - 视频 - 优... 抢座位：艾佛森式过人 分享:1168 分享 刘谦首度回应棘手话题 “闭关修... 分享:190 分享 献给妈妈，发自肺腑的音乐&#60;... 分享:3017 分享 【感人短片】人生到底需要什么？... 分享:1656 分享 【搞笑＋回忆】2010密歇根大... 分享:18232 分享 原来是这样！驻伊美军揭秘真实拆弹部队！ 分享:118 分享 吃饭不宜观看 化学的力量 分享:2338 分享<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></description>
			<content:encoded><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br><p>继续上周的展播：</p>
<div class="preview float-left">
<div class="share-figuie"><a id="previewLink" title="【优酷首播】超可爱！迷你版Lady gaga演唱造型也很雷人嘛！" href="http://share.renren.com/share/GetShare.do?id=1688456407&amp;owner=253729600&amp;from=hotvideo2" target="_blank"><img id="previewImg" src="http://g1.ykimg.com/0100641F464B8D8600416D01B368A1296DDC59-CF94-D75E-54AD-E4170E20806F" alt="" width="220" height="165" /> </a></div>
</div>
<li><a title="六岁的他想拿冠军" href="http://share.renren.com/share/GetShare.do?id=1714735879&amp;owner=287286920&amp;from=hotvideo1" target="_blank"><span style="color: #005eac;">六岁的他想拿冠军</span></a></li>
<li class=" "><a title="【优酷首播】超可爱！迷你版Lady gaga演唱造型也很雷人嘛！" href="http://share.renren.com/share/GetShare.do?id=1688456407&amp;owner=253729600&amp;from=hotvideo2" target="_blank"><span style="color: #005eac;">【优酷首播】超可爱！迷你版Lady g...</span></a></li>
<li class=" "><a title="2010新片【花田喜事】 完整版正片" href="http://share.renren.com/share/GetShare.do?id=1714179282&amp;owner=229242700&amp;from=hotvideo3" target="_blank"><span style="color: #005eac;">2010新片【花田喜事】 完整版正片</span></a></li>
<li class=" "><a title="【犀利哥】【03月02日14点】宁波东论流言阁：是否愿意接受救助？全民关注犀利哥首度开口！  - 视频 - 优酷视频 - 在线观看" href="http://share.renren.com/share/GetShare.do?id=1681742239&amp;owner=226076400&amp;from=hotvideo4" target="_blank"><span style="color: #005eac;">【犀利哥】【03月02日14点】宁波东...</span></a></li>
<li class=" "><a title="小女孩歌声媲美小康妮" href="http://share.renren.com/share/GetShare.do?id=1688444324&amp;owner=287286312&amp;from=hotvideo5" target="_blank"><span style="color: #005eac;">小女孩歌声媲美小康妮</span></a></li>
<li class=" "><a title="世界前50名灵异视频 - 视频 - 优酷视频 - 在线观看 - 灵异 恐怖 不可思议 超自然" href="http://share.renren.com/share/GetShare.do?id=1690230742&amp;owner=248907800&amp;from=hotvideo6" target="_blank"><span style="color: #005eac;">世界前50名灵异视频 - 视频 - 优...</span></a></li>
<ul class="video-list clearfix">
<li><a class="share-figure" title="抢座位：艾佛森式过人" href="http://share.renren.com/share/GetShare.do?id=1682586943&amp;owner=287286312&amp;from=hotvideo" target="_blank"><img src="http://g4.ykimg.com/0100641F464B8C796BA89302FC7CEFB0B6B838-F69F-3454-A6F2-F66CB1BCD653" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="抢座位：艾佛森式过人" href="http://share.renren.com/share/GetShare.do?id=1682586943&amp;owner=287286312&amp;from=hotvideo" target="_blank"><span style="color: #005eac;">抢座位：艾佛森式过人</span></a></span> <span class="share-num">分享:<span style="font-size: x-small; color: #666666;">1168</span></span> <span class="float-right"><a onclick="create_share_nosysn(1682586943,287286312,287286312)" href="http://share.renren.com/wp-admin/#nogo"><span style="color: #005eac;">分享</span></a></span></li>
<li><a class="share-figure" title="刘谦首度回应棘手话题 “闭关修炼”只是谣传" href="http://share.renren.com/share/GetShare.do?id=1682592343&amp;owner=287286920&amp;from=hotvideo" target="_blank"><img src="http://i1.6.cn/57/aa/b852172991424.t1.jpg" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="刘谦首度回应棘手话题 “闭关修炼”只是谣传" href="http://share.renren.com/share/GetShare.do?id=1682592343&amp;owner=287286920&amp;from=hotvideo" target="_blank"><span style="color: #005eac;">刘谦首度回应棘手话题 “闭关修...</span></a></span> <span class="share-num">分享:<span style="font-size: x-small; color: #666666;">190</span></span> <span class="float-right"><a onclick="create_share_nosysn(1682592343,287286920,287286920)" href="http://share.renren.com/wp-admin/#nogo"><span style="color: #005eac;">分享</span></a></span></li>
<li><a class="share-figure" title="献给妈妈，发自肺腑的音乐&lt;那口锅&gt; ！" href="http://share.renren.com/share/GetShare.do?id=1682595394&amp;owner=287286312&amp;from=hotvideo" target="_blank"><img src="http://g2.ykimg.com/0100641F464B6DBD9D5C0603259188E5E2053B-2DF3-370E-3409-14D2CBA9C835" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="献给妈妈，发自肺腑的音乐&lt;那口锅&gt; ！" href="http://share.renren.com/share/GetShare.do?id=1682595394&amp;owner=287286312&amp;from=hotvideo" target="_blank"><span style="color: #005eac;">献给妈妈，发自肺腑的音乐&lt;...</span></a></span> <span class="share-num">分享:<span style="font-size: x-small; color: #666666;">3017</span></span> <span class="float-right"><a onclick="create_share_nosysn(1682595394,287286312,287286312)" href="http://share.renren.com/wp-admin/#nogo"><span style="color: #005eac;">分享</span></a></span></li>
<li><a class="share-figure" title="【感人短片】人生到底需要什么？（送给你迷茫的你···）" href="http://share.renren.com/share/GetShare.do?id=1714728090&amp;owner=254572300&amp;from=hotvideo" target="_blank"><img src="http://g3.ykimg.com/0100641F464B91F1A247B7004E51CDE345CEFC-D10F-201A-5F46-E3D8D47B3A0F" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="【感人短片】人生到底需要什么？（送给你迷茫的你···）" href="http://share.renren.com/share/GetShare.do?id=1714728090&amp;owner=254572300&amp;from=hotvideo" target="_blank"><span style="color: #005eac;">【感人短片】人生到底需要什么？...</span></a></span> <span class="share-num">分享:<span style="font-size: x-small; color: #666666;">1656</span></span> <span class="float-right"><a onclick="create_share_nosysn(1714728090,254572300,254572300)" href="http://share.renren.com/wp-admin/#nogo"><span style="color: #005eac;">分享</span></a></span></li>
<li><a class="share-figure" title="【搞笑＋回忆】2010密歇根大学华人春节晚会最受欢迎节目My Awaken Dream (80后的回忆)" href="http://share.renren.com/share/GetShare.do?id=1707784421&amp;owner=233515700&amp;from=hotvideo" target="_blank"><img src="http://g4.ykimg.com/0100641F464B8D77DFF1400060A38160988791-E145-D5B0-423C-EA206292D6D7" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="【搞笑＋回忆】2010密歇根大学华人春节晚会最受欢迎节目My Awaken Dream (80后的回忆)" href="http://share.renren.com/share/GetShare.do?id=1707784421&amp;owner=233515700&amp;from=hotvideo" target="_blank"><span style="color: #005eac;">【搞笑＋回忆】2010密歇根大...</span></a></span> <span class="share-num">分享:<span style="font-size: x-small; color: #666666;">18232</span></span> <span class="float-right"><a onclick="create_share_nosysn(1707784421,233515700,233515700)" href="http://share.renren.com/wp-admin/#nogo"><span style="color: #005eac;">分享</span></a></span></li>
<li><a class="share-figure" title="原来是这样！驻伊美军揭秘真实拆弹部队！" href="http://share.renren.com/share/GetShare.do?id=1721899456&amp;owner=287519876&amp;from=hotvideo" target="_blank"><img src="http://i2.6.cn/90/18/a2791943527269.t1.jpg" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="原来是这样！驻伊美军揭秘真实拆弹部队！" href="http://share.renren.com/share/GetShare.do?id=1721899456&amp;owner=287519876&amp;from=hotvideo" target="_blank"><span style="color: #005eac;">原来是这样！驻伊美军揭秘真实拆弹部队！</span></a></span> <span class="share-num">分享:<span style="font-size: x-small; color: #666666;">118</span></span> <span class="float-right"><a onclick="create_share_nosysn(1721899456,287519876,287519876)" href="http://share.renren.com/wp-admin/#nogo"><span style="color: #005eac;">分享</span></a></span></li>
<li><a class="share-figure" title="吃饭不宜观看  化学的力量" href="http://share.renren.com/share/GetShare.do?id=1715724868&amp;owner=245854000&amp;from=hotvideo" target="_blank"><img src="http://g4.ykimg.com/0100641F464B939463E22F0010C714EAF51485-7B6D-D896-DBE1-394F19DC58A6" alt="" width="120" height="90" /> <span class="play-icon"> </span> </a><span class="share-name"><a title="吃饭不宜观看  化学的力量" href="http://share.renren.com/share/GetShare.do?id=1715724868&amp;owner=245854000&amp;from=hotvideo" target="_blank"><span style="color: #005eac;">吃饭不宜观看 化学的力量</span></a></span> <span class="share-num">分享:<span style="font-size: x-small; color: #666666;">2338</span></span> <span class="float-right"><a onclick="create_share_nosysn(1715724868,245854000,245854000)" href="http://share.renren.com/wp-admin/#nogo"><span style="color: #005eac;">分享</span></a></span></li>
</ul>
<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></content:encoded>
			<wfw:commentRss>http://www.54chen.com/life/renren-wonderful-video.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>人人网精彩视频展播:宁波犀利哥首度开口落泪，恐惧生活改变等</title>
		<link>http://www.54chen.com/life/everyone-network-wonderful-video-zhanbo-ningbo-cialis-costa-rica-for-the-first-time-open-tears-fear-and-changes-in-life.html</link>
		<comments>http://www.54chen.com/life/everyone-network-wonderful-video-zhanbo-ningbo-cialis-costa-rica-for-the-first-time-open-tears-fear-and-changes-in-life.html#comments</comments>
		<pubDate>Fri, 05 Mar 2010 10:30:47 +0000</pubDate>
		<dc:creator>cc0cc</dc:creator>
				<category><![CDATA[生活备份]]></category>
		<category><![CDATA[人人网]]></category>
		<category><![CDATA[视频]]></category>

		<guid isPermaLink="false">http://www.54chen.com/life/everyone-network-wonderful-video-zhanbo-ningbo-cialis-costa-rica-for-the-first-time-open-tears-fear-and-changes-in-life.html</guid>
		<description><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br>今天是三月五号星期五，周末愉快！ 这首歌被你唱的...有火一把~~！！！... 宁波犀利哥首度开口落泪，恐惧生活改变 纸张上的进化史 一个17岁的英国90... 百科全说---减肥、养肾、护肾的密招 Avril艾薇儿《爱丽丝梦游仙境》高清... 下一站幸福剪辑吻戏花絮 - 视频 - ... T_T...朝鲜小主持是打了鸡血么 分享:31443 分享 两个疯狂的女人 oh my ... 分享:34303 分享 这样的老师，让人崩溃！18岁以下慎入 分享:1858 分享 你被排挤过吗？ 分享:236 分享 本世纪最强的洗脑歌相信没谁能坚... 分享:9498 分享 揭秘刘谦元宵晚会螺丝魔术《斗转星移》 分享:481 分享 意想不到:这十大品牌不是中国的 分享:8473 分享 终极嗜血者-加拿大首辆超跑Pl... 分享:1483 分享<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></description>
			<content:encoded><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br><p>今天是三月五号星期五，周末愉快！</p>
<p><a id="previewLink" title="这首歌被你唱的...有火一把~~！！！像样~！" href="http://share.renren.com/share/GetShare.do?id=1687948721&amp;owner=245102600&amp;from=hotvideo1" target="_blank"><img id="previewImg" src="http://g3.ykimg.com/0100641F464B6C60BA0FB800D694E3F22A49F3-57BD-E733-C7D0-4AC5C1C5AAAB" alt="" width="220px" height="165px" /></a></p>
<ul id="share_hot_video_list">
<li class=" "> <a title="这首歌被你唱的...有火一把~~！！！像样~！" href="http://share.renren.com/share/GetShare.do?id=1687948721&amp;owner=245102600&amp;from=hotvideo1" target="_blank">这首歌被你唱的...有火一把~~！！！...</a></li>
<li class=" "> <a title="宁波犀利哥首度开口落泪，恐惧生活改变" href="http://share.renren.com/share/GetShare.do?id=1687734808&amp;owner=236345900&amp;from=hotvideo2" target="_blank">宁波犀利哥首度开口落泪，恐惧生活改变</a></li>
<li class="  current"> <a title="纸张上的进化史  一个17岁的英国90后少年Jamie Bell独立制作。耗费了他2100张草稿纸（不算多了），三周时间（好快！）完成。背景音乐用French Cancan（法国康康舞）改编" href="http://share.renren.com/share/GetShare.do?id=1688000155&amp;owner=36629000&amp;from=hotvideo3" target="_blank">纸张上的进化史  一个17岁的英国90...</a></li>
<li class=" "> <a title="百科全说---减肥、养肾、护肾的密招 " href="http://share.renren.com/share/GetShare.do?id=1688196372&amp;owner=228794200&amp;from=hotvideo4" target="_blank">百科全说---减肥、养肾、护肾的密招 </a></li>
<li class=" "> <a title="Avril艾薇儿《爱丽丝梦游仙境》高清MV - 视频 - 优酷视频 - 在线观看" href="http://share.renren.com/share/GetShare.do?id=1690581886&amp;owner=262628500&amp;from=hotvideo5" target="_blank">Avril艾薇儿《爱丽丝梦游仙境》高清...</a></li>
<li class=" "> <a title="下一站幸福剪辑吻戏花絮 - 视频 - 优酷视频 - 在线观看" href="http://share.renren.com/share/GetShare.do?id=1687585251&amp;owner=252608700&amp;from=hotvideo6" target="_blank">下一站幸福剪辑吻戏花絮 - 视频 - ...</a></li>
</ul>
<ul class="video-list clearfix">
<li> <a class="share-figure" title="T_T...朝鲜小主持是打了鸡血么" href="http://share.renren.com/share/GetShare.do?id=1687536300&amp;owner=254481000&amp;from=hotvideo" target="_blank"> <img src="http://g1.ykimg.com/0100641F464B5CC7240D0201245B2D203138ED-0516-A057-41CB-7F56935B2593" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="T_T...朝鲜小主持是打了鸡血么" href="http://share.renren.com/share/GetShare.do?id=1687536300&amp;owner=254481000&amp;from=hotvideo" target="_blank">T_T...朝鲜小主持是打了鸡血么</a></span> <span class="share-num">分享:<em>31443</em></span> <span class="float-right"><a onclick="create_share_nosysn(1687536300,254481000,254481000)" href="http://share.renren.com/?_request_from=38#nogo">分享</a></span></li>
<li> <a class="share-figure" title="两个疯狂的女人  oh my god 我也想要那量车- 沃尔沃国外广告" href="http://share.renren.com/share/GetShare.do?id=1688628393&amp;owner=230061300&amp;from=hotvideo" target="_blank"> <img src="http://g3.ykimg.com/0100641F464B5ED86245AF02D3C29DFD77C35D-4EF8-AE66-8F23-6D4103BD37D9" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="两个疯狂的女人  oh my god 我也想要那量车- 沃尔沃国外广告" href="http://share.renren.com/share/GetShare.do?id=1688628393&amp;owner=230061300&amp;from=hotvideo" target="_blank">两个疯狂的女人  oh my ...</a></span> <span class="share-num">分享:<em>34303</em></span> <span class="float-right"><a onclick="create_share_nosysn(1688628393,230061300,230061300)" href="http://share.renren.com/?_request_from=38#nogo">分享</a></span></li>
<li> <a class="share-figure" title="这样的老师，让人崩溃！18岁以下慎入" href="http://share.renren.com/share/GetShare.do?id=1682746067&amp;owner=263891100&amp;from=hotvideo" target="_blank"> <img src="http://i01.img.tudou.com/data/imgs/i/040/074/131/p.jpg" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="这样的老师，让人崩溃！18岁以下慎入" href="http://share.renren.com/share/GetShare.do?id=1682746067&amp;owner=263891100&amp;from=hotvideo" target="_blank">这样的老师，让人崩溃！18岁以下慎入</a></span> <span class="share-num">分享:<em>1858</em></span> <span class="float-right"><a onclick="create_share_nosysn(1682746067,263891100,263891100)" href="http://share.renren.com/?_request_from=38#nogo">分享</a></span></li>
<li> <a class="share-figure" title="你被排挤过吗？" href="http://share.renren.com/share/GetShare.do?id=1694931463&amp;owner=287286920&amp;from=hotvideo" target="_blank"> <img src="http://g1.ykimg.com/0100641F464B50D6F0866501C370E590E4DE7B-7A6F-AF65-88C4-D5BEBAAB00EC" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="你被排挤过吗？" href="http://share.renren.com/share/GetShare.do?id=1694931463&amp;owner=287286920&amp;from=hotvideo" target="_blank">你被排挤过吗？</a></span> <span class="share-num">分享:<em>236</em></span> <span class="float-right"><a onclick="create_share_nosysn(1694931463,287286920,287286920)" href="http://share.renren.com/?_request_from=38#nogo">分享</a></span></li>
<li> <a class="share-figure" title="本世纪最强的洗脑歌相信没谁能坚持听10秒以上！！" href="http://share.renren.com/share/GetShare.do?id=1687665181&amp;owner=200630300&amp;from=hotvideo" target="_blank"> <img src="http://g4.ykimg.com/0100641F4648420CFB80D600888D48E91CB5D7-5E0F-36C3-8B9F-A82A7E4C06D7" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="本世纪最强的洗脑歌相信没谁能坚持听10秒以上！！" href="http://share.renren.com/share/GetShare.do?id=1687665181&amp;owner=200630300&amp;from=hotvideo" target="_blank">本世纪最强的洗脑歌相信没谁能坚...</a></span> <span class="share-num">分享:<em>9498</em></span> <span class="float-right"><a onclick="create_share_nosysn(1687665181,200630300,200630300)" href="http://share.renren.com/?_request_from=38#nogo">分享</a></span></li>
<li> <a class="share-figure" title="揭秘刘谦元宵晚会螺丝魔术《斗转星移》" href="http://share.renren.com/share/GetShare.do?id=1676763724&amp;owner=287286312&amp;from=hotvideo" target="_blank"> <img src="http://g3.ykimg.com/0100641F464B8AAB0245A7004EE95CE0FD8D5D-7A52-91CB-DC3C-0618F447E169" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="揭秘刘谦元宵晚会螺丝魔术《斗转星移》" href="http://share.renren.com/share/GetShare.do?id=1676763724&amp;owner=287286312&amp;from=hotvideo" target="_blank">揭秘刘谦元宵晚会螺丝魔术《斗转星移》</a></span> <span class="share-num">分享:<em>481</em></span> <span class="float-right"><a onclick="create_share_nosysn(1676763724,287286312,287286312)" href="http://share.renren.com/?_request_from=38#nogo">分享</a></span></li>
<li> <a class="share-figure" title="意想不到:这十大品牌不是中国的" href="http://share.renren.com/share/GetShare.do?id=1676341459&amp;owner=231468500&amp;from=hotvideo" target="_blank"> <img src="http://i01.img.tudou.com/data/imgs/i/044/142/801/m0.jpg" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="意想不到:这十大品牌不是中国的" href="http://share.renren.com/share/GetShare.do?id=1676341459&amp;owner=231468500&amp;from=hotvideo" target="_blank">意想不到:这十大品牌不是中国的</a></span> <span class="share-num">分享:<em>8473</em></span> <span class="float-right"><a onclick="create_share_nosysn(1676341459,231468500,231468500)" href="http://share.renren.com/?_request_from=38#nogo">分享</a></span></li>
<li> <a class="share-figure" title="终极嗜血者-加拿大首辆超跑Plethore" href="http://share.renren.com/share/GetShare.do?id=1672366604&amp;owner=287519876&amp;from=hotvideo" target="_blank"> <img src="http://g1.ykimg.com/0100641F464B8AA42C771B01FD502B55C6F26C-F783-ABB3-B8E9-D0A3D91C4C1D" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="终极嗜血者-加拿大首辆超跑Plethore" href="http://share.renren.com/share/GetShare.do?id=1672366604&amp;owner=287519876&amp;from=hotvideo" target="_blank">终极嗜血者-加拿大首辆超跑Pl...</a></span> <span class="share-num">分享:<em>1483</em></span> <span class="float-right"><a onclick="create_share_nosysn(1672366604,287519876,287519876)" href="http://share.renren.com/?_request_from=38#nogo">分享</a></span></li>
</ul>
<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></content:encoded>
			<wfw:commentRss>http://www.54chen.com/life/everyone-network-wonderful-video-zhanbo-ningbo-cialis-costa-rica-for-the-first-time-open-tears-fear-and-changes-in-life.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>人人网精彩视频展播:日本25所学校选出校花的组合等</title>
		<link>http://www.54chen.com/life/everyone-network-wonderful-video-zhan-bo-japanese-25-schools-and-other-selected-combination-of-xiao-hua.html</link>
		<comments>http://www.54chen.com/life/everyone-network-wonderful-video-zhan-bo-japanese-25-schools-and-other-selected-combination-of-xiao-hua.html#comments</comments>
		<pubDate>Thu, 04 Mar 2010 11:54:38 +0000</pubDate>
		<dc:creator>cc0cc</dc:creator>
				<category><![CDATA[生活备份]]></category>
		<category><![CDATA[人人网]]></category>
		<category><![CDATA[视频]]></category>

		<guid isPermaLink="false">http://www.54chen.com/life/everyone-network-wonderful-video-zhan-bo-japanese-25-schools-and-other-selected-combination-of-xiao-hua.html</guid>
		<description><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br>2010年3月4号人人网精彩视频分享如下： &#160; 最热推荐： &#160; 南希的早晨(Nancy＇s morni... T_T...朝鲜小主持是打了鸡血么 爆笑 河南话电影，不好看不要钱 不是闹... 超赞！小甜甜布兰妮和Lady Gaga... 我以为我出现的时间刚好,却发现你的心还... 日本25所学校选出校花的组合，狠甜！ &#160; 不怎么热的推荐： &#160; 手指演绎迈克尔杰克逊歌曲惊悚舞蹈 分享:1266 分享 挺感人的这么一视频,就分享了.... 分享:4148 分享 王珞丹早年作品 没想到这首歌是她唱的~ 分享:21999 分享 我和周洋超韩国还不是手拿把掐的... 分享:24132 分享 郭德纲新作《偷斧子》--201... 分享:22238 分享 瑞奇马丁领衔群星翻唱天王MJ&#38;... 分享:784 分享 电脑系统崩溃前的激情第三版--... 分享:3512 分享 上海八号线 &#8230;<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></description>
			<content:encoded><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br><p>2010年3月4号人人网精彩视频分享如下：</p>
<p>&nbsp;</p>
<p><strong>最热推荐：</strong></p>
<p>&nbsp;</p>
<ul>
<li class=" "> <a title="南希的早晨(Nancy＇s morning)『中国独立创作3D动画』" href="http://share.renren.com/share/GetShare.do?id=1691554666&amp;owner=142525482&amp;from=hotvideo1" target="_blank">南希的早晨(Nancy＇s morni...</a></li>
<li class="  current"> <a title="T_T...朝鲜小主持是打了鸡血么" href="http://share.renren.com/share/GetShare.do?id=1691443001&amp;owner=28762&amp;from=hotvideo2" target="_blank">T_T...朝鲜小主持是打了鸡血么</a></li>
<li class=" "> <a title="爆笑 河南话电影，不好看不要钱 不是闹着玩的" href="http://share.renren.com/share/GetShare.do?id=1681674479&amp;owner=260549300&amp;from=hotvideo3" target="_blank">爆笑 河南话电影，不好看不要钱 不是闹...</a></li>
<li class=" "> <a title="超赞！小甜甜布兰妮和Lady Gaga以及拉丁天后夏奇拉极品混音mv！" href="http://share.renren.com/share/GetShare.do?id=1681460947&amp;owner=255956700&amp;from=hotvideo4" target="_blank">超赞！小甜甜布兰妮和Lady Gaga...</a></li>
<li class=" "> <a title="我以为我出现的时间刚好,却发现你的心还是在他那..." href="http://share.renren.com/share/GetShare.do?id=1681666607&amp;owner=258986300&amp;from=hotvideo5" target="_blank">我以为我出现的时间刚好,却发现你的心还...</a></li>
<li class=" "> <a title="日本25所学校选出校花的组合，狠甜！" href="http://share.renren.com/share/GetShare.do?id=1681853801&amp;owner=263891100&amp;from=hotvideo6" target="_blank">日本25所学校选出校花的组合，狠甜！</a></li>
<li class=" "></li>
</ul>
<p>&nbsp;</p>
<p><strong>不怎么热的推荐：</strong></p>
<p>&nbsp;</p>
<ul class="video-list clearfix">
<li> <a class="share-figure" title="手指演绎迈克尔杰克逊歌曲惊悚舞蹈" href="http://share.renren.com/share/GetShare.do?id=1667656914&amp;owner=287286312&amp;from=hotvideo" target="_blank"> <img src="http://i3.6.cn/c0/13/162d1901674380.t1.jpg" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="手指演绎迈克尔杰克逊歌曲惊悚舞蹈" href="http://share.renren.com/share/GetShare.do?id=1667656914&amp;owner=287286312&amp;from=hotvideo" target="_blank">手指演绎迈克尔杰克逊歌曲惊悚舞蹈</a></span> <span class="share-num">分享:<em>1266</em></span> <span class="float-right"><a onclick="create_share_nosysn(1667656914,287286312,287286312)" href="http://share.renren.com/?_ua_flag=80#nogo">分享</a></span></li>
<li><span class="float-right"><br />
</span></li>
<li> <a class="share-figure" title="挺感人的这么一视频,就分享了..一共20分钟..可能刚开始挺幼稚的吧..但后来俩人也都渐渐成熟了" href="http://share.renren.com/share/GetShare.do?id=1682323746&amp;owner=247593600&amp;from=hotvideo" target="_blank"> <img src="http://i01.img.tudou.com/data/imgs/i/047/038/324/m10.jpg" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="挺感人的这么一视频,就分享了..一共20分钟..可能刚开始挺幼稚的吧..但后来俩人也都渐渐成熟了" href="http://share.renren.com/share/GetShare.do?id=1682323746&amp;owner=247593600&amp;from=hotvideo" target="_blank">挺感人的这么一视频,就分享了....</a></span> <span class="share-num">分享:<em>4148</em></span> <span class="float-right"><a onclick="create_share_nosysn(1682323746,247593600,247593600)" href="http://share.renren.com/?_ua_flag=80#nogo">分享</a></span></li>
<li><span class="float-right"><br />
</span></li>
<li> <a class="share-figure" title="王珞丹早年作品 没想到这首歌是她唱的~" href="http://share.renren.com/share/GetShare.do?id=1676124326&amp;owner=248855000&amp;from=hotvideo" target="_blank"> <img src="http://g3.ykimg.com/0100641F464B35704ECC27027FF54EE28C5CD2-2D64-D8CF-1A25-F87DE2453DB1" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="王珞丹早年作品 没想到这首歌是她唱的~" href="http://share.renren.com/share/GetShare.do?id=1676124326&amp;owner=248855000&amp;from=hotvideo" target="_blank">王珞丹早年作品 没想到这首歌是她唱的~</a></span> <span class="share-num">分享:<em>21999</em></span> <span class="float-right"><a onclick="create_share_nosysn(1676124326,248855000,248855000)" href="http://share.renren.com/?_ua_flag=80#nogo">分享</a></span></li>
<li><span class="float-right"><br />
</span></li>
<li> <a class="share-figure" title="我和周洋超韩国还不是手拿把掐的啊  王濛啊 就是爱你这种霸气" href="http://share.renren.com/share/GetShare.do?id=1676119873&amp;owner=262278300&amp;from=hotvideo" target="_blank"> <img src="http://i01.img.tudou.com/data/imgs/i/047/223/422/m10.jpg" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="我和周洋超韩国还不是手拿把掐的啊  王濛啊 就是爱你这种霸气" href="http://share.renren.com/share/GetShare.do?id=1676119873&amp;owner=262278300&amp;from=hotvideo" target="_blank">我和周洋超韩国还不是手拿把掐的...</a></span> <span class="share-num">分享:<em>24132</em></span> <span class="float-right"><a onclick="create_share_nosysn(1676119873,262278300,262278300)" href="http://share.renren.com/?_ua_flag=80#nogo">分享</a></span></li>
<li><span class="float-right"><br />
</span></li>
<li> <a class="share-figure" title="郭德纲新作《偷斧子》--2010德云社开箱之作" href="http://share.renren.com/share/GetShare.do?id=1676167422&amp;owner=237880400&amp;from=hotvideo" target="_blank"> <img src="http://g1.ykimg.com/0100641F464B8A39846A6D01D5A540ED4B34E1-C408-7A6C-6F54-4A8F783F62CD" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="郭德纲新作《偷斧子》--2010德云社开箱之作" href="http://share.renren.com/share/GetShare.do?id=1676167422&amp;owner=237880400&amp;from=hotvideo" target="_blank">郭德纲新作《偷斧子》--201...</a></span> <span class="share-num">分享:<em>22238</em></span> <span class="float-right"><a onclick="create_share_nosysn(1676167422,237880400,237880400)" href="http://share.renren.com/?_ua_flag=80#nogo">分享</a></span></li>
<li><span class="float-right"><br />
</span></li>
<li> <a class="share-figure" title="瑞奇马丁领衔群星翻唱天王MJ&lt;四海一家&gt;" href="http://share.renren.com/share/GetShare.do?id=1688444318&amp;owner=287286312&amp;from=hotvideo" target="_blank"> <img src="http://g3.ykimg.com/0100641F464B8CAA3643CB00E68D47426D6B8C-6682-4E5E-7FF2-CE180A6B1489" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="瑞奇马丁领衔群星翻唱天王MJ&lt;四海一家&gt;" href="http://share.renren.com/share/GetShare.do?id=1688444318&amp;owner=287286312&amp;from=hotvideo" target="_blank">瑞奇马丁领衔群星翻唱天王MJ&amp;...</a></span> <span class="share-num">分享:<em>784</em></span> <span class="float-right"><a onclick="create_share_nosysn(1688444318,287286312,287286312)" href="http://share.renren.com/?_ua_flag=80#nogo">分享</a></span></li>
<li><span class="float-right"><br />
</span></li>
<li> <a class="share-figure" title="电脑系统崩溃前的激情第三版--Win7篇！" href="http://share.renren.com/share/GetShare.do?id=1658832132&amp;owner=287519876&amp;from=hotvideo" target="_blank"> <img src="http://g1.ykimg.com/0100641F464B836920C48E02A3D4D7A2B2D16D-E307-956F-CEB8-FFA418E1CEA2" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="电脑系统崩溃前的激情第三版--Win7篇！" href="http://share.renren.com/share/GetShare.do?id=1658832132&amp;owner=287519876&amp;from=hotvideo" target="_blank">电脑系统崩溃前的激情第三版--...</a></span> <span class="share-num">分享:<em>3512</em></span> <span class="float-right"><a onclick="create_share_nosysn(1658832132,287519876,287519876)" href="http://share.renren.com/?_ua_flag=80#nogo">分享</a></span></li>
<li><span class="float-right"><br />
</span></li>
<li> <a class="share-figure" title="上海八号线 上有人打飞机。。。。" href="http://share.renren.com/share/GetShare.do?id=1671658096&amp;owner=264984600&amp;from=hotvideo" target="_blank"> <img src="http://g1.ykimg.com/0100641F464B56FF644E9201A6F15516D994A4-63F6-B776-3B89-BF4CEEA98B73" alt="" width="120px" height="90px" /> <span class="play-icon"> </span> </a> <span class="share-name"><a title="上海八号线 上有人打飞机。。。。" href="http://share.renren.com/share/GetShare.do?id=1671658096&amp;owner=264984600&amp;from=hotvideo" target="_blank">上海八号线 上有人打飞机。。。。</a></span></li>
</ul>
<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></content:encoded>
			<wfw:commentRss>http://www.54chen.com/life/everyone-network-wonderful-video-zhan-bo-japanese-25-schools-and-other-selected-combination-of-xiao-hua.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>人人网精彩视频展播：艾薇儿2010冬奥会闭幕式等</title>
		<link>http://www.54chen.com/life/everyone-network-wonderful-video-zhanbo-avril-children-such-as-the-2010-winter-olympics-closing-ceremony.html</link>
		<comments>http://www.54chen.com/life/everyone-network-wonderful-video-zhanbo-avril-children-such-as-the-2010-winter-olympics-closing-ceremony.html#comments</comments>
		<pubDate>Wed, 03 Mar 2010 03:40:34 +0000</pubDate>
		<dc:creator>cc0cc</dc:creator>
				<category><![CDATA[生活备份]]></category>
		<category><![CDATA[人人网]]></category>
		<category><![CDATA[分享]]></category>

		<guid isPermaLink="false">http://www.54chen.com/life/everyone-network-wonderful-video-zhanbo-avril-children-such-as-the-2010-winter-olympics-closing-ceremony.html</guid>
		<description><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br>这几天重感冒，娱乐项目成了重点，这才缓过劲来，感冒中间想到了这个大展播，以后每天分享来自中国元老的SNS内部的精彩内容，以下是今天的精彩内容： 艾薇儿2010冬奥会闭幕式现场 You... 【百事可乐最新创意广告】亨利、卡卡、梅... 红透欧美的英俊小男生owl city，... 我和周洋超韩国还不是手拿把掐的啊 王... 霸气的朝鲜女播音员。。。姐姐你不用这么... 西方首脑集体拒绝与布什握手 胡总直接忽... &#160; 以下是精彩的日志内容精选： 〓星座达人·《十二星座勾魂夺魄的资本... 一生至少该有一次，为了某个人而忘了自... 大三的学生快来看哦////如果你有远... 世界最全的咖啡知识（扫盲ing） 【当凤姐邂逅PS帝……自带避雷针！【... 清明节，老师出题"如果你死... 照我说的做，你的英语会飙升 癌症只在酸性身体里形成（转给你爱的人... 写给懒惰但又想过专八的同学们----... 很难找齐的常识 照我说的做，你的英语会飙升 驾照还没考的朋友有福了<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></description>
			<content:encoded><![CDATA[<a href="http://www.54chen.com"><img border="0" src="http://www.54chen.com/wp-content/themes/54chen2011/images/54chen-logo.gif"></a><br>以下内容由<a href="http://www.54chen.com">[五四陈科学院]</a>提供<br><p>这几天重感冒，娱乐项目成了重点，这才缓过劲来，感冒中间想到了这个大展播，以后每天分享来自中国元老的SNS内部的精彩内容，以下是今天的精彩内容：</p>
<ul>
<li> <a title="艾薇儿2010冬奥会闭幕式现场 Youku首发" href="http://share.renren.com/share/GetShare.do?id=1676131399&amp;owner=258872800&amp;from=hotvideo1" target="_blank">艾薇儿2010冬奥会闭幕式现场 You...</a></li>
<li> <a title="【百事可乐最新创意广告】亨利、卡卡、梅西、阿尔沙文、兰帕德、德罗巴6位足球巨星联手Akon全球首播！" href="http://share.renren.com/share/GetShare.do?id=1676185663&amp;owner=257963200&amp;from=hotvideo2" target="_blank">【百事可乐最新创意广告】亨利、卡卡、梅...</a></li>
<li> <a title="红透欧美的英俊小男生owl city，无数人跪求的MV。。安静聆听的时候，你能看见围绕在你身旁的萤火虫么？" href="http://share.renren.com/share/GetShare.do?id=1676260834&amp;owner=88194500&amp;from=hotvideo3" target="_blank">红透欧美的英俊小男生owl city，...</a></li>
<li> <a title="我和周洋超韩国还不是手拿把掐的啊  王濛啊 就是爱你这种霸气" href="http://share.renren.com/share/GetShare.do?id=1676119873&amp;owner=262278300&amp;from=hotvideo4" target="_blank">我和周洋超韩国还不是手拿把掐的啊  王...</a></li>
<li> <a title="霸气的朝鲜女播音员。。。姐姐你不用这么霸气吧。。。连镜头都不看。。。" href="http://share.renren.com/share/GetShare.do?id=1676146625&amp;owner=267407700&amp;from=hotvideo5" target="_blank">霸气的朝鲜女播音员。。。姐姐你不用这么...</a></li>
<li> <a title="西方首脑集体拒绝与布什握手 胡总直接忽略掉韩国头头" href="http://share.renren.com/share/GetShare.do?id=1676280609&amp;owner=238303500&amp;from=hotvideo6" target="_blank">西方首脑集体拒绝与布什握手 胡总直接忽...</a></li>
</ul>
<p>&nbsp;</p>
<p><strong>以下是精彩的日志内容精选：</strong></p>
<ul>
<li> <a title="〓星座达人·《十二星座勾魂夺魄的资本……》〓" href="http://blog.renren.com/GetEntry.do?id=449792992&amp;owner=272549430&amp;ref=share&amp;from=hotblog" target="_blank">〓星座达人·《十二星座勾魂夺魄的资本...</a></li>
<li> <a title="一生至少该有一次，为了某个人而忘了自己，不求有结果，不求同行，不求曾经拥有，甚至不求你爱我。只求在我最美的年华里，遇到你。" href="http://blog.renren.com/GetEntry.do?id=449780367&amp;owner=287286312&amp;ref=share&amp;from=hotblog" target="_blank">一生至少该有一次，为了某个人而忘了自...</a></li>
<li> <a title="大三的学生快来看哦////如果你有远见" href="http://blog.renren.com/GetEntry.do?id=445428570&amp;owner=281558773&amp;ref=share&amp;from=hotblog" target="_blank">大三的学生快来看哦////如果你有远...</a></li>
<li> <a title="世界最全的咖啡知识（扫盲ing）" href="http://blog.renren.com/GetEntry.do?id=449316371&amp;owner=221681719&amp;ref=share&amp;from=hotblog" target="_blank">世界最全的咖啡知识（扫盲ing）</a></li>
<li> <a title="【当凤姐邂逅PS帝……自带避雷针！【套图】】" href="http://blog.renren.com/GetEntry.do?id=448934646&amp;owner=272836854&amp;ref=share&amp;from=hotblog" target="_blank">【当凤姐邂逅PS帝……自带避雷针！【...</a></li>
<li> <a title="清明节，老师出题&quot;如果你死后，墓志铭打算写点啥？(太精辟了~！不看后悔）" href="http://blog.renren.com/GetEntry.do?id=375661858&amp;owner=237504812&amp;ref=share&amp;from=hotblog" target="_blank">清明节，老师出题"如果你死...</a></li>
<li> <a title="照我说的做，你的英语会飙升" href="http://blog.renren.com/GetEntry.do?id=447809369&amp;owner=250791617&amp;ref=share&amp;from=hotblog" target="_blank">照我说的做，你的英语会飙升</a></li>
<li> <a title="癌症只在酸性身体里形成（转给你爱的人）" href="http://blog.renren.com/GetEntry.do?id=440815958&amp;owner=273858564&amp;ref=share&amp;from=hotblog" target="_blank">癌症只在酸性身体里形成（转给你爱的人...</a></li>
<li> <a title="写给懒惰但又想过专八的同学们----专八考生必看" href="http://blog.renren.com/GetEntry.do?id=448454165&amp;owner=178677447&amp;ref=share&amp;from=hotblog" target="_blank">写给懒惰但又想过专八的同学们----...</a></li>
<li> <a title="很难找齐的常识" href="http://blog.renren.com/GetEntry.do?id=449347026&amp;owner=220882929&amp;ref=share&amp;from=hotblog" target="_blank">很难找齐的常识</a></li>
<li> <a title="照我说的做，你的英语会飙升" href="http://blog.renren.com/GetEntry.do?id=446751013&amp;owner=227268240&amp;ref=share&amp;from=hotblog" target="_blank">照我说的做，你的英语会飙升</a></li>
<li> <a title="驾照还没考的朋友有福了" href="http://blog.renren.com/GetEntry.do?id=445341377&amp;owner=222428344&amp;ref=share&amp;from=hotblog" target="_blank">驾照还没考的朋友有福了</a></li>
</ul>
<br><br>想快点找到作者也可以到Twitter上留言: <a href="https://www.twitter.com/54chen" target="_blank">@54chen</a><br>或者你懒得带梯子上墙，请到新浪微博：<a href="http://t.sina.com.cn/54chen" target="_blank">@54chen</a>]]></content:encoded>
			<wfw:commentRss>http://www.54chen.com/life/everyone-network-wonderful-video-zhanbo-avril-children-such-as-the-2010-winter-olympics-closing-ceremony.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

