<?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://motian.org/tag/twitter/feed" rel="self" type="application/rss+xml" />
	<link>http://motian.org</link>
	<description>关注云计算发和物联网的发展，研究和开发开源操作系统，致力于开源项目的发展的技术性博客！</description>
	<lastBuildDate>Mon, 06 Sep 2010 14:04:36 +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>修改PHPSay-Mcrioblog的字数限制</title>
		<link>http://motian.org/post/diary-phpsay-mcrioblog-140-456.html</link>
		<comments>http://motian.org/post/diary-phpsay-mcrioblog-140-456.html#comments</comments>
		<pubDate>Mon, 19 Apr 2010 14:54:17 +0000</pubDate>
		<dc:creator>漠天</dc:creator>
				<category><![CDATA[博客杂文]]></category>
		<category><![CDATA[微博]]></category>

		<guid isPermaLink="false">http://motian.org/post/diary-phpsay-mcrioblog-140-456.html</guid>
		<description><![CDATA[前天写了一篇关于PHPSay-Mcrioblog微博的文章《PHPSay-Mcrioblog很好很强大》，但是我想觉的PHPSay-Mcrioblog受一个140字的限制多有不便，至少我想我可以写一些短文章之类的，这可能会突破字数限制，所以我修改了一下，其实这个问题在PHPSay-Mcrioblog贴吧上有几个网友在问啊？所以我特发表此文。 其实主要是修改四个地方：数据库，index.php，action.js，index.html 第一步：数据库 通过phpMyAdmin登陆数据库控制台，找到微博安装的相应数据库，在这个数据库里安装了三个表：前缀_blog、前缀_comment、前缀_friend。我们只是需要修改表前缀_blog中的message字段即可，在这需要修改两个地方：message的数据类型和长度值；博客默认的message数据类型为char，长度值是140。（注：char类型的数据最大长度为255）如果想把值修改的大于255的，那么我就最好是改变数据类型，比如我的修改如下：类型：text ； 长度：空值 第二步：修改index.php index.php这个文件放在根目录下，找到后打开，通过编辑器的&#8221;替换&#8221;功能，将所有的140替换成你需要的值。 第三步：修改action.js，index.html action.js，index.html的修改和第二步相同，就是替换140即可。 action.js位于_static/js文件下；index.html位于_template/default文件下。 通过三步的修改我们就可以发表我们修改值长的消息啦，当然这只是在电脑上发帖时这样，但是通过手机发帖时，还是会受到140的限制，在这里我们还需要修改两个文件，这两个文件位于m文件下的index.php和m/_template文件下的index.html，至于修改方法，还是第二步的方法，替换140即可。 扩展阅读微博在中国的曲折发展 (1.000)嘀咕网可以嘀咕啦 (1.000)微型博客的价值 (1.000)﻿新浪微博还是和Twitter无关！ (1.000)国人开发的一个的微博客程序 (1.000)[转]谁才能玩得转微博？ (1.000)迟来的鲜果联播 (1.000)微博客MicroBlog开源软件 (1.000)微博生活，机器人帮我写 (1.000)PHPSay-Mcrioblog很好很强大 (1.000) © 漠天 for 漠天博客, 2010. &#124; 永久链接 &#124; 11 comments &#124;标签: 微博 收藏分享本文：]]></description>
			<content:encoded><![CDATA[<p>前天写了一篇关于PHPSay-Mcrioblog<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>的文章<a title="《PHPSay-Mcrioblog很好很强大》" href="http://motian.org/post/diary-phpsay-mcrioblog-454.html" target="_blank">《PHPSay-Mcrioblog很好很强大》</a>，但是我想觉的PHPSay-Mcrioblog受一个140字的限制多有不便，至少我想我可以写一些短文章之类的，这可能会突破字数限制，所以我修改了一下，其实这个问题在<a title="PHPSay-Mcrioblog贴吧" href="http://www.phpsay.net/bar-14-1.html" target="_blank">PHPSay-Mcrioblog贴吧</a>上有几个网友在问啊？所以我特发表此文。</p>
<p>其实主要是修改四个地方：数据库，index.php，action.js，index.html</p>
<h3><strong>第一步：数据库</strong></h3>
<p>通过phpMyAdmin登陆数据库控制台，找到<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>安装的相应数据库，在这个数据库里安装了三个表：前缀_blog、前缀_comment、前缀_friend。我们只是需要修改表前缀_blog中的message字段即可，在这需要修改两个地方：message的数据类型和长度值；博客默认的message数据类型为char，长度值是140。（注：char类型的数据最大长度为255）如果想把值修改的大于255的，那么我就最好是改变数据类型，比如我的修改如下：类型：text ； 长度：空值</p>
<p><img style="text-align: center; width: 367px; display: block; height: 171px; margin-left: auto; margin-right: auto;" title="PHPSay-Mcrioblog 漠天 博客" src="http://img.motian.org/images/message.jpg" alt="PHPSay-Mcrioblog 漠天 博客" width="367" height="171" /></p>
<h3>第二步：修改index.php</h3>
<p>index.php这个文件放在根目录下，找到后打开，通过编辑器的&#8221;替换&#8221;功能，将所有的140替换成你需要的值。</p>
<h3>第三步：修改action.js，index.html</h3>
<p>action.js，index.html的修改和第二步相同，就是替换140即可。</p>
<p>action.js位于_static/js文件下；index.html位于_template/default文件下。</p>
<p>通过三步的修改我们就可以发表我们修改值长的消息啦，当然这只是在电脑上发帖时这样，但是通过手机发帖时，还是会受到140的限制，在这里我们还需要修改两个文件，这两个文件位于m文件下的index.php和m/_template文件下的index.html，至于修改方法，还是第二步的方法，替换140即可。</p>
<div class="similarity"><h2>扩展阅读</h2><br /><ul><li><a href="http://motian.org/post/blog-deke-weibo-119.html">微博在中国的曲折发展</a> (1.000)</li><li><a href="http://motian.org/post/it-internet-digu-kaitong-162.html">嘀咕网可以嘀咕啦</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibojiazhi-184.html">微型博客的价值</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-xinlangweibo-209.html">﻿新浪微博还是和Twitter无关！</a> (1.000)</li><li><a href="http://motian.org/post/diary-share%e2%80%94nowhere-246.html">国人开发的一个的微博客程序</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibo-wan-250.html">[转]谁才能玩得转微博？</a> (1.000)</li><li><a href="http://motian.org/post/xianguo-lianbo-362.html">迟来的鲜果联播</a> (1.000)</li><li><a href="http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html">微博客MicroBlog开源软件</a> (1.000)</li><li><a href="http://motian.org/post/diary-weibo-robots-448.html">微博生活，机器人帮我写</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-454.html">PHPSay-Mcrioblog很好很强大</a> (1.000)</li></ul></div><!-- Tag --><hr />
<p>© 漠天 for <a href="http://motian.org">漠天博客</a>, 2010. |
<a href="http://motian.org/post/diary-phpsay-mcrioblog-140-456.html">永久链接</a> |
<a href="http://motian.org/post/diary-phpsay-mcrioblog-140-456.html#comments">11 comments</a> |标签: <a href="http://motian.org/tag/twitter" rel="tag">微博</a><br/>
<strong>收藏分享本文：</strong>
<a style="color:#333333;text-align:center;font-size:12px;" href="javascript:void((function(s,d,e){try{}catch(e){}var f='http://v.t.sina.com.cn/share/share.php?',u=d.location.href,p=['url=',e(u),'&title=',e(d.title),'&appkey=2924220432'].join('');function a(){if(!window.open([f,p].join(''),'mb',['toolbar=0,status=0,resizable=1,width=620,height=450,left=',(s.width-620)/2,',top=',(s.height-450)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/weibo.gif" alt="分享到新浪微博" border="0" height="16" width="16"/></a>

<a href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);location=%22http://zuosa.com/collect/Collect.aspx?t=%22+encodeURIComponent(t)+%22&u=%22+encodeURIComponent(u);void%200" title="你在做啥"><img src="http://img.motian.org/pic/wp/zuosa.gif"/></a>

<a title="转贴到校内人人网" href="javascript:void((function(s,d,e){if(/xiaonei\.com/.test(d.location))return;var%20f='http://share.xiaonei.com/share/buttonshare.do?link=',u=d.location,l=d.title,p=[e(u),'&title=',e(l)].join('');function%20a(){if(!window.open([f,p].join(''),'xnshare',['toolbar=0,status=0,resizable=1,width=626,height=436,left=',(s.width-626)/2,',top=',(s.height-436)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/renren.gif" alt="分享到校内人人网" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(kaixin=window.open('http://www.kaixin001.com/~repaste/repaste.php?&rurl='+escape(d.location.href)+'&rtitle='+escape(d.title)+'&rcontent='+escape(d.title),'kaixin'));kaixin.focus();" title="转贴到开心网"><img src="http://img.motian.org/pic/wp/kaixin.gif" alt="转贴到开心网" border="0"/></a>

<a href="javascript:void(function(){var%20d=document,e=encodeURIComponent,s1=window.getSelection,s2=d.getSelection,s3=d.selection,s=s1?s1():s2?s2():s3?s3.createRange().text:' ',r='http://www.douban.com/recommend/?url='+e(d.location.href)+'&title='+e(d.title)+'&sel='+e(s)+'&v=1',x=function(){if(!window.open(r,'douban','toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=330'))location.href=r+'&r=1'};if(/Firefox/.test(navigator.userAgent)){setTimeout(x,0)}else{x()}})()" title="推荐到豆瓣" rel="nofollow" ><img src="http://img.motian.org/pic/wp/douban.png" border="0" height="16" width="16"></a>

<a title="收藏到Google书签" href="javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open('http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+c(b.location)+'&title='+c(b.title),'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=420px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300)})();"><img src="http://img.motian.org/pic/wp/googlebookmark.png" alt="Google书签" border="0" height="16" width="16"/></a>

<a title="添加到QQ书签" href="javascript:window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)"><img src="http://img.motian.org/pic/wp/qq.png" alt="QQ书签" border="0" height="16" width="16"/></a>

<a title="添加到百度搜藏" href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);var url=%22http://cang.baidu.com/do/add?it=%22+encodeURIComponent(t)+%22&iu=%22+encodeURIComponent(u)+%22&dc=%22+encodeURIComponent(c)+%22&fr=ien#nw=1%22;window.open(url,'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');void 0"><img src="http://img.motian.org/pic/wp/baidu.gif" alt="百度搜藏" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&title='+escape(d.title)+'&url='+escape(d.location.href)+'&desc='+escape(t),'vivi','scrollbars=no,width=480,height=480,left=75,top=20,status=no,resizable=yes'));vivi.focus();" title="收藏到新浪ViVi"><img src="http://img.motian.org/pic/wp/vivi.gif" alt="Sina ViVi" border="0"/></a>

<a title="添加到雅虎收藏" onclick="window.open('http://myweb.cn.yahoo.com/popadd.html?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title), 'Yahoo','scrollbars=yes,width=440,height=440,left=80,top=80,status=yes,resizable=yes');" href="javascript:;" rel="nofollow"><img src="http://img.motian.org/pic/wp/yahoo.png" alt="yahoo收藏" border="0" height="16" width="16"/></a>

<a title="保存到del.icio.us美味书签" href="javascript:(function(){f='http://delicious.com/save?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(document.title)+'&v=5&';a=function(){if(!window.open(f+'noui=1&jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()"><img src="http://img.motian.org/pic/wp/delicious.gif" alt="Del.icio.us" border="0" height="16" width="16"/></a>

<a title="推荐到digg.com" href="javascript:location.href='http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)"><img src="http://img.motian.org/pic/wp/digg.gif" alt="digg" border="0"/></a>

<a href="javascript:void(location.href='https://twitter.com/home?status=Now%20reading%20<<'+encodeURIComponent(document.title)+'>>%20'+encodeURIComponent(location.href))" title="分享到 Twitter"><img src="http://img.motian.org/pic/wp/twitter.png" alt="分享到twitter"/></a>

 <br/>
<script type="text/javascript"><!--
google_ad_client = "pub-4498164283832126";
/* 468x60, 创建于 10-8-17 */
google_ad_slot = "2152552823";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>]]></content:encoded>
			<wfw:commentRss>http://motian.org/post/diary-phpsay-mcrioblog-140-456.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>PHPSay-Mcrioblog很好很强大</title>
		<link>http://motian.org/post/diary-phpsay-mcrioblog-454.html</link>
		<comments>http://motian.org/post/diary-phpsay-mcrioblog-454.html#comments</comments>
		<pubDate>Sat, 17 Apr 2010 14:42:13 +0000</pubDate>
		<dc:creator>漠天</dc:creator>
				<category><![CDATA[博客杂文]]></category>
		<category><![CDATA[微博]]></category>

		<guid isPermaLink="false">http://motian.org/post/phpsay-mcrioblog%e5%be%88%e5%a5%bd%e5%be%88%e5%bc%ba%e5%a4%a7-454.html</guid>
		<description><![CDATA[对于微博，我觉的作为一个新媒体，必须是微博友置身于这个微博圈子，这样自己写的才是真正的微博，否则，我想这个人写的是自己给自己看的寂寞吧。 对于微博，我开通了目前所有比较出名的微博，主要是想凑热闹。O(∩_∩)O哈哈~，但是从内心来说我不希望把内容写在别人提供的服务上，在虚拟的互联网世界里，我想一切都是飘渺的，说不定哪天这个公司一倒闭，那么自己的辛辛辛苦写的东西就会在互联网世界上消失。所以，我为了永远拥有自己的数据，自己买了一个域名以及虚拟主机，搭建了一个博客、微博客、论坛……其实就是瞎整。 对于微博自己是情有独钟，所以一开始我用Sharetronix 程序搭建的微博客，这是一个多用户的微博客，但是就作者来说，本来是为企业开发的一个通信平台，但是引入我国后，好多小站长利用这款程序搭建了微博客。 说实在的，Sharetronix这个程序功能非常强大，而且界面友好，但是这是一个多用户的博客，而我并不需要一个多用户的，所以一直在寻找一款单用户的程序。 其实我是基于如下思想寻找一款合适的微博客程序： 可以通过手机快速的发消息。 支持RSS输出 支持评论 但是PHPSay-Mcrioblog不仅满足我的需求，而且还有我想不到的功能，比如说关注、跟随功能，只要是拥有PHPSay-Microblog的博主都可以跟随、关注另一个PHPSay-Microblog博主。另外一个功能是目前PHPSay-Microblog支持嘀咕网、9911、新浪微博的同步，这个功能令我非常喜欢。还有就是PHPSay-Microblog支持图片上传。并且提供了API接口和短网址服务。 总体上来说，PHPSay-Microblog比PageCookery好多了，尤其是功能更加强大。 我的微博：漠天微博 官方贴吧：PHPSay-Microblog 作者微博：http://www.zhuliang.info/ 下载地址：PHPSay-Microblog 扩展阅读微博在中国的曲折发展 (1.000)嘀咕网可以嘀咕啦 (1.000)微型博客的价值 (1.000)﻿新浪微博还是和Twitter无关！ (1.000)国人开发的一个的微博客程序 (1.000)[转]谁才能玩得转微博？ (1.000)迟来的鲜果联播 (1.000)微博客MicroBlog开源软件 (1.000)微博生活，机器人帮我写 (1.000)修改PHPSay-Mcrioblog的字数限制 (1.000) © 漠天 for 漠天博客, 2010. &#124; 永久链接 &#124; 3 comments &#124;标签: 微博 收藏分享本文：]]></description>
			<content:encoded><![CDATA[<p>对于<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>，我觉的作为一个新媒体，必须是<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>友置身于这个<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>圈子，这样自己写的才是真正的微博，否则，我想这个人写的是自己给自己看的寂寞吧。</p>
<p>对于微博，我开通了目前所有比较出名的微博，主要是想凑热闹。O(∩_∩)O哈哈~，但是从内心来说我不希望把内容写在别人提供的服务上，在虚拟的互联网世界里，我想一切都是飘渺的，说不定哪天这个公司一倒闭，那么自己的辛辛辛苦写的东西就会在互联网世界上消失。所以，我为了永远拥有自己的数据，自己买了一个域名以及虚拟主机，搭建了一个博客、微博客、论坛……其实就是瞎整。</p>
<p>对于微博自己是情有独钟，所以一开始我用<a title="http://sharetronix.com/opensource/" href="http://sharetronix.com/opensource/" target="_blank">Sharetronix</a> 程序搭建的微博客，这是一个多用户的微博客，但是就作者来说，本来是为企业开发的一个通信平台，但是引入我国后，好多小站长利用这款程序搭建了微博客。</p>
<p>说实在的，<a title="http://sharetronix.com/opensource/" href="http://sharetronix.com/opensource/" target="_blank">Sharetronix</a>这个程序功能非常强大，而且界面友好，但是这是一个多用户的博客，而我并不需要一个多用户的，所以一直在寻找一款单用户的程序。</p>
<p>其实我是基于如下思想寻找一款合适的微博客程序：</p>
<blockquote><p><strong></strong><strong>可以通过手机快速的发消息。</strong></p>
<p><strong>支持RSS输出</strong></p>
<p><strong>支持评论</strong></p></blockquote>
<p style="margin-right: 0px;" dir="ltr">但是PHPSay-Mcrioblog不仅满足我的需求，而且还有我想不到的功能，比如说关注、跟随功能，只要是拥有PHPSay-Microblog的博主都可以跟随、关注另一个PHPSay-Microblog博主。另外一个功能是目前PHPSay-Microblog支持嘀咕网、9911、新浪微博的同步，这个功能令我非常喜欢。还有就是PHPSay-Microblog支持图片上传。并且提供了API接口和短网址服务。</p>
<p style="margin-right: 0px;" dir="ltr">总体上来说，PHPSay-Microblog比<a href="http://www.pagecookery.com/" target="_blank"><span style="color: #4e0a13;">PageCookery</span></a>好多了，尤其是功能更加强大。</p>
<p style="margin-right: 0px;" dir="ltr">我的微博：<a title="漠天微博" href="http://t.motian.org/" target="_blank"><strong>漠天微博</strong></a></p>
<p style="margin-right: 0px;" dir="ltr">官方贴吧：<a title="微博下载" href="http://www.phpsay.com/mblog.rar" target="_blank">PHPSay-Microblog</a></p>
<p style="margin-right: 0px;" dir="ltr">作者微博：<a href="http://www.zhuliang.info/">http://www.zhuliang.info/</a></p>
<p style="margin-right: 0px;" dir="ltr">下载地址：<a title="微博下载" href="http://www.phpsay.com/mblog.rar" target="_blank">PHPSay-Microblog</a></p>
<p><img style="text-align: center; display: block; margin-left: auto; margin-right: auto;" title="漠天微博" src="http://img.motian.org/images/vrv.jpg" alt="漠天微博" width="500" height="558" /></p>
<div class="similarity"><h2>扩展阅读</h2><br /><ul><li><a href="http://motian.org/post/blog-deke-weibo-119.html">微博在中国的曲折发展</a> (1.000)</li><li><a href="http://motian.org/post/it-internet-digu-kaitong-162.html">嘀咕网可以嘀咕啦</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibojiazhi-184.html">微型博客的价值</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-xinlangweibo-209.html">﻿新浪微博还是和Twitter无关！</a> (1.000)</li><li><a href="http://motian.org/post/diary-share%e2%80%94nowhere-246.html">国人开发的一个的微博客程序</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibo-wan-250.html">[转]谁才能玩得转微博？</a> (1.000)</li><li><a href="http://motian.org/post/xianguo-lianbo-362.html">迟来的鲜果联播</a> (1.000)</li><li><a href="http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html">微博客MicroBlog开源软件</a> (1.000)</li><li><a href="http://motian.org/post/diary-weibo-robots-448.html">微博生活，机器人帮我写</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-140-456.html">修改PHPSay-Mcrioblog的字数限制</a> (1.000)</li></ul></div><!-- Tag --><hr />
<p>© 漠天 for <a href="http://motian.org">漠天博客</a>, 2010. |
<a href="http://motian.org/post/diary-phpsay-mcrioblog-454.html">永久链接</a> |
<a href="http://motian.org/post/diary-phpsay-mcrioblog-454.html#comments">3 comments</a> |标签: <a href="http://motian.org/tag/twitter" rel="tag">微博</a><br/>
<strong>收藏分享本文：</strong>
<a style="color:#333333;text-align:center;font-size:12px;" href="javascript:void((function(s,d,e){try{}catch(e){}var f='http://v.t.sina.com.cn/share/share.php?',u=d.location.href,p=['url=',e(u),'&title=',e(d.title),'&appkey=2924220432'].join('');function a(){if(!window.open([f,p].join(''),'mb',['toolbar=0,status=0,resizable=1,width=620,height=450,left=',(s.width-620)/2,',top=',(s.height-450)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/weibo.gif" alt="分享到新浪微博" border="0" height="16" width="16"/></a>

<a href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);location=%22http://zuosa.com/collect/Collect.aspx?t=%22+encodeURIComponent(t)+%22&u=%22+encodeURIComponent(u);void%200" title="你在做啥"><img src="http://img.motian.org/pic/wp/zuosa.gif"/></a>

<a title="转贴到校内人人网" href="javascript:void((function(s,d,e){if(/xiaonei\.com/.test(d.location))return;var%20f='http://share.xiaonei.com/share/buttonshare.do?link=',u=d.location,l=d.title,p=[e(u),'&title=',e(l)].join('');function%20a(){if(!window.open([f,p].join(''),'xnshare',['toolbar=0,status=0,resizable=1,width=626,height=436,left=',(s.width-626)/2,',top=',(s.height-436)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/renren.gif" alt="分享到校内人人网" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(kaixin=window.open('http://www.kaixin001.com/~repaste/repaste.php?&rurl='+escape(d.location.href)+'&rtitle='+escape(d.title)+'&rcontent='+escape(d.title),'kaixin'));kaixin.focus();" title="转贴到开心网"><img src="http://img.motian.org/pic/wp/kaixin.gif" alt="转贴到开心网" border="0"/></a>

<a href="javascript:void(function(){var%20d=document,e=encodeURIComponent,s1=window.getSelection,s2=d.getSelection,s3=d.selection,s=s1?s1():s2?s2():s3?s3.createRange().text:' ',r='http://www.douban.com/recommend/?url='+e(d.location.href)+'&title='+e(d.title)+'&sel='+e(s)+'&v=1',x=function(){if(!window.open(r,'douban','toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=330'))location.href=r+'&r=1'};if(/Firefox/.test(navigator.userAgent)){setTimeout(x,0)}else{x()}})()" title="推荐到豆瓣" rel="nofollow" ><img src="http://img.motian.org/pic/wp/douban.png" border="0" height="16" width="16"></a>

<a title="收藏到Google书签" href="javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open('http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+c(b.location)+'&title='+c(b.title),'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=420px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300)})();"><img src="http://img.motian.org/pic/wp/googlebookmark.png" alt="Google书签" border="0" height="16" width="16"/></a>

<a title="添加到QQ书签" href="javascript:window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)"><img src="http://img.motian.org/pic/wp/qq.png" alt="QQ书签" border="0" height="16" width="16"/></a>

<a title="添加到百度搜藏" href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);var url=%22http://cang.baidu.com/do/add?it=%22+encodeURIComponent(t)+%22&iu=%22+encodeURIComponent(u)+%22&dc=%22+encodeURIComponent(c)+%22&fr=ien#nw=1%22;window.open(url,'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');void 0"><img src="http://img.motian.org/pic/wp/baidu.gif" alt="百度搜藏" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&title='+escape(d.title)+'&url='+escape(d.location.href)+'&desc='+escape(t),'vivi','scrollbars=no,width=480,height=480,left=75,top=20,status=no,resizable=yes'));vivi.focus();" title="收藏到新浪ViVi"><img src="http://img.motian.org/pic/wp/vivi.gif" alt="Sina ViVi" border="0"/></a>

<a title="添加到雅虎收藏" onclick="window.open('http://myweb.cn.yahoo.com/popadd.html?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title), 'Yahoo','scrollbars=yes,width=440,height=440,left=80,top=80,status=yes,resizable=yes');" href="javascript:;" rel="nofollow"><img src="http://img.motian.org/pic/wp/yahoo.png" alt="yahoo收藏" border="0" height="16" width="16"/></a>

<a title="保存到del.icio.us美味书签" href="javascript:(function(){f='http://delicious.com/save?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(document.title)+'&v=5&';a=function(){if(!window.open(f+'noui=1&jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()"><img src="http://img.motian.org/pic/wp/delicious.gif" alt="Del.icio.us" border="0" height="16" width="16"/></a>

<a title="推荐到digg.com" href="javascript:location.href='http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)"><img src="http://img.motian.org/pic/wp/digg.gif" alt="digg" border="0"/></a>

<a href="javascript:void(location.href='https://twitter.com/home?status=Now%20reading%20<<'+encodeURIComponent(document.title)+'>>%20'+encodeURIComponent(location.href))" title="分享到 Twitter"><img src="http://img.motian.org/pic/wp/twitter.png" alt="分享到twitter"/></a>

 <br/>
<script type="text/javascript"><!--
google_ad_client = "pub-4498164283832126";
/* 468x60, 创建于 10-8-17 */
google_ad_slot = "2152552823";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>]]></content:encoded>
			<wfw:commentRss>http://motian.org/post/diary-phpsay-mcrioblog-454.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>微博生活，机器人帮我写</title>
		<link>http://motian.org/post/diary-weibo-robots-448.html</link>
		<comments>http://motian.org/post/diary-weibo-robots-448.html#comments</comments>
		<pubDate>Tue, 13 Apr 2010 14:42:07 +0000</pubDate>
		<dc:creator>漠天</dc:creator>
				<category><![CDATA[博客杂文]]></category>
		<category><![CDATA[微博]]></category>

		<guid isPermaLink="false">http://motian.org/post/diary-weibo-robots-448.html</guid>
		<description><![CDATA[现在大家都在玩微博，不过，微博开多了，虽然是小博客，要照顾周全的话也是相当费事的。自从我结识了这位Gtalk机器人&#8221;围着脖子推&#8221;&#8220;Twitboo@appspot.com&#8220;，不管是新浪微博还是开心网、人人网、做啥、twitter，更新内容都变的很轻松。这位机器人操控起来也很简单： 第一步：先将其添加为Gtalk好友，接着输入&#8221;-help&#8221;查看帮助信息，了解这位机器人的操控指令。 第二步：按照操控指令的规则绑定微博账号。例如绑定新浪微博账号，只要输入&#8221;-bind -s cndeke@qq.com 123456 （前面是找好，后面是密码）并将其发送给机器人即可完成绑定。 第三步：接下来只要按指令发布微博消息即可，规则：-t -s -r -d -z -k -f5 微博消息，其中&#8221;-t -s -r -d -z -k -f5 &#8220;可选择其中的一个或多个进行组合。如果直接发送消息，则直接将消息发布到所有绑定的微博中。 关于更多介绍请看作者详细介绍：围着脖子推 扩展阅读微博在中国的曲折发展 (1.000)嘀咕网可以嘀咕啦 (1.000)微型博客的价值 (1.000)﻿新浪微博还是和Twitter无关！ (1.000)国人开发的一个的微博客程序 (1.000)[转]谁才能玩得转微博？ (1.000)迟来的鲜果联播 (1.000)微博客MicroBlog开源软件 (1.000)PHPSay-Mcrioblog很好很强大 (1.000)修改PHPSay-Mcrioblog的字数限制 (1.000) © 漠天 for 漠天博客, 2010. &#124; 永久链接 &#124; 7 comments &#124;标签: 微博 收藏分享本文：]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="微博  同步  机器人" src="http://img.motian.org/images/weibotongb.jpg" alt="" width="500" height="317" /></p>
<p>现在大家都在玩<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>，不过，<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>开多了，虽然是小博客，要照顾周全的话也是相当费事的。自从我结识了这位Gtalk机器人&#8221;围着脖子推&#8221;<a href="mailto:““Twitboo@appspot.com">&#8220;Twitboo@appspot.com</a>&#8220;，不管是新浪<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>还是开心网、人人网、做啥、twitter，更新内容都变的很轻松。这位机器人操控起来也很简单：</p>
<p><strong>第一步</strong>：先将其添加为Gtalk好友，接着输入&#8221;-help&#8221;查看帮助信息，了解这位机器人的操控指令。</p>
<p><strong>第二步</strong>：按照操控指令的规则绑定微博账号。例如绑定新浪微博账号，只要输入&#8221;-bind -s <a href="mailto:cndeke@qq.com">cndeke@qq.com</a> 123456 （前面是找好，后面是密码）并将其发送给机器人即可完成绑定。</p>
<p><strong>第三步</strong>：接下来只要按指令发布微博消息即可，规则：-t -s -r -d -z -k -f5 微博消息，其中&#8221;-t -s -r -d -z -k -f5 &#8220;可选择其中的一个或多个进行组合。如果直接发送消息，则直接将消息发布到所有绑定的微博中。</p>
<p>关于更多介绍请看作者详细介绍：<a title="围着脖子推" href="http://blog.stevenwang.name/twittersina-gtalk-robot-v1.0-35003.html" target="_blank">围着脖子推</a></p>
<div class="similarity"><h2>扩展阅读</h2><br /><ul><li><a href="http://motian.org/post/blog-deke-weibo-119.html">微博在中国的曲折发展</a> (1.000)</li><li><a href="http://motian.org/post/it-internet-digu-kaitong-162.html">嘀咕网可以嘀咕啦</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibojiazhi-184.html">微型博客的价值</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-xinlangweibo-209.html">﻿新浪微博还是和Twitter无关！</a> (1.000)</li><li><a href="http://motian.org/post/diary-share%e2%80%94nowhere-246.html">国人开发的一个的微博客程序</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibo-wan-250.html">[转]谁才能玩得转微博？</a> (1.000)</li><li><a href="http://motian.org/post/xianguo-lianbo-362.html">迟来的鲜果联播</a> (1.000)</li><li><a href="http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html">微博客MicroBlog开源软件</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-454.html">PHPSay-Mcrioblog很好很强大</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-140-456.html">修改PHPSay-Mcrioblog的字数限制</a> (1.000)</li></ul></div><!-- Tag --><hr />
<p>© 漠天 for <a href="http://motian.org">漠天博客</a>, 2010. |
<a href="http://motian.org/post/diary-weibo-robots-448.html">永久链接</a> |
<a href="http://motian.org/post/diary-weibo-robots-448.html#comments">7 comments</a> |标签: <a href="http://motian.org/tag/twitter" rel="tag">微博</a><br/>
<strong>收藏分享本文：</strong>
<a style="color:#333333;text-align:center;font-size:12px;" href="javascript:void((function(s,d,e){try{}catch(e){}var f='http://v.t.sina.com.cn/share/share.php?',u=d.location.href,p=['url=',e(u),'&title=',e(d.title),'&appkey=2924220432'].join('');function a(){if(!window.open([f,p].join(''),'mb',['toolbar=0,status=0,resizable=1,width=620,height=450,left=',(s.width-620)/2,',top=',(s.height-450)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/weibo.gif" alt="分享到新浪微博" border="0" height="16" width="16"/></a>

<a href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);location=%22http://zuosa.com/collect/Collect.aspx?t=%22+encodeURIComponent(t)+%22&u=%22+encodeURIComponent(u);void%200" title="你在做啥"><img src="http://img.motian.org/pic/wp/zuosa.gif"/></a>

<a title="转贴到校内人人网" href="javascript:void((function(s,d,e){if(/xiaonei\.com/.test(d.location))return;var%20f='http://share.xiaonei.com/share/buttonshare.do?link=',u=d.location,l=d.title,p=[e(u),'&title=',e(l)].join('');function%20a(){if(!window.open([f,p].join(''),'xnshare',['toolbar=0,status=0,resizable=1,width=626,height=436,left=',(s.width-626)/2,',top=',(s.height-436)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/renren.gif" alt="分享到校内人人网" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(kaixin=window.open('http://www.kaixin001.com/~repaste/repaste.php?&rurl='+escape(d.location.href)+'&rtitle='+escape(d.title)+'&rcontent='+escape(d.title),'kaixin'));kaixin.focus();" title="转贴到开心网"><img src="http://img.motian.org/pic/wp/kaixin.gif" alt="转贴到开心网" border="0"/></a>

<a href="javascript:void(function(){var%20d=document,e=encodeURIComponent,s1=window.getSelection,s2=d.getSelection,s3=d.selection,s=s1?s1():s2?s2():s3?s3.createRange().text:' ',r='http://www.douban.com/recommend/?url='+e(d.location.href)+'&title='+e(d.title)+'&sel='+e(s)+'&v=1',x=function(){if(!window.open(r,'douban','toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=330'))location.href=r+'&r=1'};if(/Firefox/.test(navigator.userAgent)){setTimeout(x,0)}else{x()}})()" title="推荐到豆瓣" rel="nofollow" ><img src="http://img.motian.org/pic/wp/douban.png" border="0" height="16" width="16"></a>

<a title="收藏到Google书签" href="javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open('http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+c(b.location)+'&title='+c(b.title),'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=420px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300)})();"><img src="http://img.motian.org/pic/wp/googlebookmark.png" alt="Google书签" border="0" height="16" width="16"/></a>

<a title="添加到QQ书签" href="javascript:window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)"><img src="http://img.motian.org/pic/wp/qq.png" alt="QQ书签" border="0" height="16" width="16"/></a>

<a title="添加到百度搜藏" href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);var url=%22http://cang.baidu.com/do/add?it=%22+encodeURIComponent(t)+%22&iu=%22+encodeURIComponent(u)+%22&dc=%22+encodeURIComponent(c)+%22&fr=ien#nw=1%22;window.open(url,'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');void 0"><img src="http://img.motian.org/pic/wp/baidu.gif" alt="百度搜藏" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&title='+escape(d.title)+'&url='+escape(d.location.href)+'&desc='+escape(t),'vivi','scrollbars=no,width=480,height=480,left=75,top=20,status=no,resizable=yes'));vivi.focus();" title="收藏到新浪ViVi"><img src="http://img.motian.org/pic/wp/vivi.gif" alt="Sina ViVi" border="0"/></a>

<a title="添加到雅虎收藏" onclick="window.open('http://myweb.cn.yahoo.com/popadd.html?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title), 'Yahoo','scrollbars=yes,width=440,height=440,left=80,top=80,status=yes,resizable=yes');" href="javascript:;" rel="nofollow"><img src="http://img.motian.org/pic/wp/yahoo.png" alt="yahoo收藏" border="0" height="16" width="16"/></a>

<a title="保存到del.icio.us美味书签" href="javascript:(function(){f='http://delicious.com/save?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(document.title)+'&v=5&';a=function(){if(!window.open(f+'noui=1&jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()"><img src="http://img.motian.org/pic/wp/delicious.gif" alt="Del.icio.us" border="0" height="16" width="16"/></a>

<a title="推荐到digg.com" href="javascript:location.href='http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)"><img src="http://img.motian.org/pic/wp/digg.gif" alt="digg" border="0"/></a>

<a href="javascript:void(location.href='https://twitter.com/home?status=Now%20reading%20<<'+encodeURIComponent(document.title)+'>>%20'+encodeURIComponent(location.href))" title="分享到 Twitter"><img src="http://img.motian.org/pic/wp/twitter.png" alt="分享到twitter"/></a>

 <br/>
<script type="text/javascript"><!--
google_ad_client = "pub-4498164283832126";
/* 468x60, 创建于 10-8-17 */
google_ad_slot = "2152552823";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>]]></content:encoded>
			<wfw:commentRss>http://motian.org/post/diary-weibo-robots-448.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>微博客MicroBlog开源软件</title>
		<link>http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html</link>
		<comments>http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html#comments</comments>
		<pubDate>Fri, 05 Feb 2010 13:03:59 +0000</pubDate>
		<dc:creator>漠天</dc:creator>
				<category><![CDATA[博客杂文]]></category>
		<category><![CDATA[微博]]></category>

		<guid isPermaLink="false">http://motian.org/?p=418</guid>
		<description><![CDATA[Blurt.it   Blurt.it是一个基于PHP/MySQL搭建的微博客系统，类似于Twitter。用户可以在一个开放或私有的讨论群中与其他用户互交沟通。  Jisko    一个PHP微博客应用程序提供类似于Twitter的API来扩展它的功能。用户可以拥有它们个性化的页面，能够很方便与其他用户发互发消息。Jisko还支持手机移动设备。  PageCookery    PageCookery是一款国产的微博客，采用Php+Mysql架构而成，是国内首款公开发行的单用户版Mblog程序，支持从Flickr、last.fm等社交网站提取数据。  Floopo    Floopo是一个基于PHP+MySQL构建的微博客系统。它的功能非常类似于Twitter并且提供一个强大的后台来整个系统。  Storytlr    Storytlr是一个开源的微博和Lifestreaming平台。支持单用户和多用户两种模式。Lifestreaming一种在线记录个人日常活动的网络应用，它能够聚合一个人的网络在线内容，比如博客日志，在社会性网络上面的更新，在线相册，聊天内容甚至只是一些喜欢的网站链接等等。Storytlr当前支持的网站应用包括： Delicious、Digg、Disqus、Flickr、Google Reader、Identi.ca/Laconi.ca、Last.fm favorites、Picasa、Qik、RSS Feeds、Seesmic、StumbleUpon、Tumblr、Twitpic pictures in Twitter tweets、Twitter、Vimeo、Youtube收藏。 扩展阅读微博在中国的曲折发展 (1.000)嘀咕网可以嘀咕啦 (1.000)微型博客的价值 (1.000)﻿新浪微博还是和Twitter无关！ (1.000)国人开发的一个的微博客程序 (1.000)[转]谁才能玩得转微博？ (1.000)迟来的鲜果联播 (1.000)微博生活，机器人帮我写 (1.000)PHPSay-Mcrioblog很好很强大 (1.000)修改PHPSay-Mcrioblog的字数限制 (1.000) © 漠天 for 漠天博客, 2010. &#124; 永久链接 &#124; 23 comments &#124;标签: 微博 收藏分享本文：]]></description>
			<content:encoded><![CDATA[<div>
<h2><a href="http://www.php-open.com/open229338.htm">Blurt.it</a>  </h2>
<p>Blurt.it是一个基于PHP/MySQL搭建的<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>客系统，类似于Twitter。用户可以在一个开放或私有的讨论群中与其他用户互交沟通。</p>
</div>
<div>
<h2> <a href="http://www.php-open.com/open229138.htm">Jisko</a>   </h2>
<p>一个PHP<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>客应用程序提供类似于Twitter的API来扩展它的功能。用户可以拥有它们个性化的页面，能够很方便与其他用户发互发消息。Jisko还支持手机移动设备。</p>
</div>
<div>
<h2> <a href="http://www.php-open.com/open229238.htm">PageCookery</a>   </h2>
<p>PageCookery是一款国产的<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>客，采用Php+Mysql架构而成，是国内首款公开发行的单用户版Mblog程序，支持从Flickr、last.fm等社交网站提取数据。</p>
</div>
<div>
<h2> <a href="http://www.php-open.com/open229038.htm">Floopo</a>   </h2>
<p>Floopo是一个基于PHP+MySQL构建的微博客系统。它的功能非常类似于Twitter并且提供一个强大的后台来整个系统。</p>
</div>
<div>
<h2> <a href="http://www.php-open.com/open232038.htm">Storytlr</a>   </h2>
<p>Storytlr是一个开源的微博和Lifestreaming平台。支持单用户和多用户两种模式。Lifestreaming一种在线记录个人日常活动的网络应用，它能够聚合一个人的网络在线内容，比如博客日志，在社会性网络上面的更新，在线相册，聊天内容甚至只是一些喜欢的网站链接等等。Storytlr当前支持的网站应用包括： Delicious、Digg、Disqus、Flickr、Google Reader、Identi.ca/Laconi.ca、Last.fm favorites、Picasa、Qik、RSS Feeds、Seesmic、StumbleUpon、Tumblr、Twitpic pictures in Twitter tweets、Twitter、Vimeo、Youtube收藏。</p>
</div>
<div class="similarity"><h2>扩展阅读</h2><br /><ul><li><a href="http://motian.org/post/blog-deke-weibo-119.html">微博在中国的曲折发展</a> (1.000)</li><li><a href="http://motian.org/post/it-internet-digu-kaitong-162.html">嘀咕网可以嘀咕啦</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibojiazhi-184.html">微型博客的价值</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-xinlangweibo-209.html">﻿新浪微博还是和Twitter无关！</a> (1.000)</li><li><a href="http://motian.org/post/diary-share%e2%80%94nowhere-246.html">国人开发的一个的微博客程序</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibo-wan-250.html">[转]谁才能玩得转微博？</a> (1.000)</li><li><a href="http://motian.org/post/xianguo-lianbo-362.html">迟来的鲜果联播</a> (1.000)</li><li><a href="http://motian.org/post/diary-weibo-robots-448.html">微博生活，机器人帮我写</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-454.html">PHPSay-Mcrioblog很好很强大</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-140-456.html">修改PHPSay-Mcrioblog的字数限制</a> (1.000)</li></ul></div><!-- Tag --><hr />
<p>© 漠天 for <a href="http://motian.org">漠天博客</a>, 2010. |
<a href="http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html">永久链接</a> |
<a href="http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html#comments">23 comments</a> |标签: <a href="http://motian.org/tag/twitter" rel="tag">微博</a><br/>
<strong>收藏分享本文：</strong>
<a style="color:#333333;text-align:center;font-size:12px;" href="javascript:void((function(s,d,e){try{}catch(e){}var f='http://v.t.sina.com.cn/share/share.php?',u=d.location.href,p=['url=',e(u),'&title=',e(d.title),'&appkey=2924220432'].join('');function a(){if(!window.open([f,p].join(''),'mb',['toolbar=0,status=0,resizable=1,width=620,height=450,left=',(s.width-620)/2,',top=',(s.height-450)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/weibo.gif" alt="分享到新浪微博" border="0" height="16" width="16"/></a>

<a href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);location=%22http://zuosa.com/collect/Collect.aspx?t=%22+encodeURIComponent(t)+%22&u=%22+encodeURIComponent(u);void%200" title="你在做啥"><img src="http://img.motian.org/pic/wp/zuosa.gif"/></a>

<a title="转贴到校内人人网" href="javascript:void((function(s,d,e){if(/xiaonei\.com/.test(d.location))return;var%20f='http://share.xiaonei.com/share/buttonshare.do?link=',u=d.location,l=d.title,p=[e(u),'&title=',e(l)].join('');function%20a(){if(!window.open([f,p].join(''),'xnshare',['toolbar=0,status=0,resizable=1,width=626,height=436,left=',(s.width-626)/2,',top=',(s.height-436)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/renren.gif" alt="分享到校内人人网" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(kaixin=window.open('http://www.kaixin001.com/~repaste/repaste.php?&rurl='+escape(d.location.href)+'&rtitle='+escape(d.title)+'&rcontent='+escape(d.title),'kaixin'));kaixin.focus();" title="转贴到开心网"><img src="http://img.motian.org/pic/wp/kaixin.gif" alt="转贴到开心网" border="0"/></a>

<a href="javascript:void(function(){var%20d=document,e=encodeURIComponent,s1=window.getSelection,s2=d.getSelection,s3=d.selection,s=s1?s1():s2?s2():s3?s3.createRange().text:' ',r='http://www.douban.com/recommend/?url='+e(d.location.href)+'&title='+e(d.title)+'&sel='+e(s)+'&v=1',x=function(){if(!window.open(r,'douban','toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=330'))location.href=r+'&r=1'};if(/Firefox/.test(navigator.userAgent)){setTimeout(x,0)}else{x()}})()" title="推荐到豆瓣" rel="nofollow" ><img src="http://img.motian.org/pic/wp/douban.png" border="0" height="16" width="16"></a>

<a title="收藏到Google书签" href="javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open('http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+c(b.location)+'&title='+c(b.title),'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=420px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300)})();"><img src="http://img.motian.org/pic/wp/googlebookmark.png" alt="Google书签" border="0" height="16" width="16"/></a>

<a title="添加到QQ书签" href="javascript:window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)"><img src="http://img.motian.org/pic/wp/qq.png" alt="QQ书签" border="0" height="16" width="16"/></a>

<a title="添加到百度搜藏" href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);var url=%22http://cang.baidu.com/do/add?it=%22+encodeURIComponent(t)+%22&iu=%22+encodeURIComponent(u)+%22&dc=%22+encodeURIComponent(c)+%22&fr=ien#nw=1%22;window.open(url,'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');void 0"><img src="http://img.motian.org/pic/wp/baidu.gif" alt="百度搜藏" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&title='+escape(d.title)+'&url='+escape(d.location.href)+'&desc='+escape(t),'vivi','scrollbars=no,width=480,height=480,left=75,top=20,status=no,resizable=yes'));vivi.focus();" title="收藏到新浪ViVi"><img src="http://img.motian.org/pic/wp/vivi.gif" alt="Sina ViVi" border="0"/></a>

<a title="添加到雅虎收藏" onclick="window.open('http://myweb.cn.yahoo.com/popadd.html?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title), 'Yahoo','scrollbars=yes,width=440,height=440,left=80,top=80,status=yes,resizable=yes');" href="javascript:;" rel="nofollow"><img src="http://img.motian.org/pic/wp/yahoo.png" alt="yahoo收藏" border="0" height="16" width="16"/></a>

<a title="保存到del.icio.us美味书签" href="javascript:(function(){f='http://delicious.com/save?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(document.title)+'&v=5&';a=function(){if(!window.open(f+'noui=1&jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()"><img src="http://img.motian.org/pic/wp/delicious.gif" alt="Del.icio.us" border="0" height="16" width="16"/></a>

<a title="推荐到digg.com" href="javascript:location.href='http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)"><img src="http://img.motian.org/pic/wp/digg.gif" alt="digg" border="0"/></a>

<a href="javascript:void(location.href='https://twitter.com/home?status=Now%20reading%20<<'+encodeURIComponent(document.title)+'>>%20'+encodeURIComponent(location.href))" title="分享到 Twitter"><img src="http://img.motian.org/pic/wp/twitter.png" alt="分享到twitter"/></a>

 <br/>
<script type="text/javascript"><!--
google_ad_client = "pub-4498164283832126";
/* 468x60, 创建于 10-8-17 */
google_ad_slot = "2152552823";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>]]></content:encoded>
			<wfw:commentRss>http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>迟来的鲜果联播</title>
		<link>http://motian.org/post/xianguo-lianbo-362.html</link>
		<comments>http://motian.org/post/xianguo-lianbo-362.html#comments</comments>
		<pubDate>Wed, 13 Jan 2010 16:39:40 +0000</pubDate>
		<dc:creator>漠天</dc:creator>
				<category><![CDATA[IT观察室]]></category>
		<category><![CDATA[微博]]></category>

		<guid isPermaLink="false">http://motian.org/?p=362</guid>
		<description><![CDATA[对于鲜果联播早就听说了，但是由于鲜果联播处于内测阶段，所以只能是被动的接收邀请注册啊。 通过点击链接激活了账号，发现鲜果联播就是第二个新浪微博，有一点围脖没有的设置关注的“关键词”，感觉没有自己出奇的地方。不过大体的浏览下，发现使用的人倒是挺多的。O(∩_∩)O哈哈~ 以下是鲜果的邀请注册信： 亲爱的漠天： 时间过得真快，从您注册鲜果到现在，已经过去268天了，谢谢您对我们一直以来的支持。 过去的这半年时间，我们团队绝大部分精力都在做一件作品——鲜果联播，试图把Twitter这种交互形式引入鲜果，为喜爱阅读的朋友们营造更好的分享、交流氛围。 现在联播已内测完成，邀请您，我们忠实的朋友，作为第一批用户入驻。请多提意见，多扔板砖。 顺祝健康、快乐 鲜果小组 扩展阅读微博在中国的曲折发展 (1.000)嘀咕网可以嘀咕啦 (1.000)微型博客的价值 (1.000)﻿新浪微博还是和Twitter无关！ (1.000)国人开发的一个的微博客程序 (1.000)[转]谁才能玩得转微博？ (1.000)微博客MicroBlog开源软件 (1.000)微博生活，机器人帮我写 (1.000)PHPSay-Mcrioblog很好很强大 (1.000)修改PHPSay-Mcrioblog的字数限制 (1.000) © 漠天 for 漠天博客, 2010. &#124; 永久链接 &#124; 24 comments &#124;标签: 微博 收藏分享本文：]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://img.motian.org/images/xianguolianbo.jpg"><img class="size-full wp-image-363 aligncenter" title="xianguolianbo" src="http://img.motian.org/images/xianguolianbo.jpg" alt="" /></a></p>
<p>对于鲜果联播早就听说了，但是由于鲜果联播处于内测阶段，所以只能是被动的接收邀请注册啊。<br />
通过点击链接激活了账号，发现鲜果联播就是第二个新浪<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>，有一点围脖没有的设置关注的“关键词”，感觉没有自己出奇的地方。不过大体的浏览下，发现使用的人倒是挺多的。O(∩_∩)O哈哈~<br />
以下是鲜果的邀请注册信：</p>
<blockquote><p>亲爱的漠天：<br />
时间过得真快，从您注册鲜果到现在，已经过去268天了，谢谢您对我们一直以来的支持。</p>
<p>过去的这半年时间，我们团队绝大部分精力都在做一件作品——鲜果联播，试图把Twitter这种交互形式引入鲜果，为喜爱阅读的朋友们营造更好的分享、交流氛围。</p>
<p>现在联播已内测完成，邀请您，我们忠实的朋友，作为第一批用户入驻。请多提意见，多扔板砖。<br />
顺祝健康、快乐 <img src='http://motian.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
鲜果小组</p></blockquote>
<div class="similarity"><h2>扩展阅读</h2><br /><ul><li><a href="http://motian.org/post/blog-deke-weibo-119.html">微博在中国的曲折发展</a> (1.000)</li><li><a href="http://motian.org/post/it-internet-digu-kaitong-162.html">嘀咕网可以嘀咕啦</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibojiazhi-184.html">微型博客的价值</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-xinlangweibo-209.html">﻿新浪微博还是和Twitter无关！</a> (1.000)</li><li><a href="http://motian.org/post/diary-share%e2%80%94nowhere-246.html">国人开发的一个的微博客程序</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibo-wan-250.html">[转]谁才能玩得转微博？</a> (1.000)</li><li><a href="http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html">微博客MicroBlog开源软件</a> (1.000)</li><li><a href="http://motian.org/post/diary-weibo-robots-448.html">微博生活，机器人帮我写</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-454.html">PHPSay-Mcrioblog很好很强大</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-140-456.html">修改PHPSay-Mcrioblog的字数限制</a> (1.000)</li></ul></div><!-- Tag --><hr />
<p>© 漠天 for <a href="http://motian.org">漠天博客</a>, 2010. |
<a href="http://motian.org/post/xianguo-lianbo-362.html">永久链接</a> |
<a href="http://motian.org/post/xianguo-lianbo-362.html#comments">24 comments</a> |标签: <a href="http://motian.org/tag/twitter" rel="tag">微博</a><br/>
<strong>收藏分享本文：</strong>
<a style="color:#333333;text-align:center;font-size:12px;" href="javascript:void((function(s,d,e){try{}catch(e){}var f='http://v.t.sina.com.cn/share/share.php?',u=d.location.href,p=['url=',e(u),'&title=',e(d.title),'&appkey=2924220432'].join('');function a(){if(!window.open([f,p].join(''),'mb',['toolbar=0,status=0,resizable=1,width=620,height=450,left=',(s.width-620)/2,',top=',(s.height-450)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/weibo.gif" alt="分享到新浪微博" border="0" height="16" width="16"/></a>

<a href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);location=%22http://zuosa.com/collect/Collect.aspx?t=%22+encodeURIComponent(t)+%22&u=%22+encodeURIComponent(u);void%200" title="你在做啥"><img src="http://img.motian.org/pic/wp/zuosa.gif"/></a>

<a title="转贴到校内人人网" href="javascript:void((function(s,d,e){if(/xiaonei\.com/.test(d.location))return;var%20f='http://share.xiaonei.com/share/buttonshare.do?link=',u=d.location,l=d.title,p=[e(u),'&title=',e(l)].join('');function%20a(){if(!window.open([f,p].join(''),'xnshare',['toolbar=0,status=0,resizable=1,width=626,height=436,left=',(s.width-626)/2,',top=',(s.height-436)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/renren.gif" alt="分享到校内人人网" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(kaixin=window.open('http://www.kaixin001.com/~repaste/repaste.php?&rurl='+escape(d.location.href)+'&rtitle='+escape(d.title)+'&rcontent='+escape(d.title),'kaixin'));kaixin.focus();" title="转贴到开心网"><img src="http://img.motian.org/pic/wp/kaixin.gif" alt="转贴到开心网" border="0"/></a>

<a href="javascript:void(function(){var%20d=document,e=encodeURIComponent,s1=window.getSelection,s2=d.getSelection,s3=d.selection,s=s1?s1():s2?s2():s3?s3.createRange().text:' ',r='http://www.douban.com/recommend/?url='+e(d.location.href)+'&title='+e(d.title)+'&sel='+e(s)+'&v=1',x=function(){if(!window.open(r,'douban','toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=330'))location.href=r+'&r=1'};if(/Firefox/.test(navigator.userAgent)){setTimeout(x,0)}else{x()}})()" title="推荐到豆瓣" rel="nofollow" ><img src="http://img.motian.org/pic/wp/douban.png" border="0" height="16" width="16"></a>

<a title="收藏到Google书签" href="javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open('http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+c(b.location)+'&title='+c(b.title),'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=420px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300)})();"><img src="http://img.motian.org/pic/wp/googlebookmark.png" alt="Google书签" border="0" height="16" width="16"/></a>

<a title="添加到QQ书签" href="javascript:window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)"><img src="http://img.motian.org/pic/wp/qq.png" alt="QQ书签" border="0" height="16" width="16"/></a>

<a title="添加到百度搜藏" href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);var url=%22http://cang.baidu.com/do/add?it=%22+encodeURIComponent(t)+%22&iu=%22+encodeURIComponent(u)+%22&dc=%22+encodeURIComponent(c)+%22&fr=ien#nw=1%22;window.open(url,'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');void 0"><img src="http://img.motian.org/pic/wp/baidu.gif" alt="百度搜藏" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&title='+escape(d.title)+'&url='+escape(d.location.href)+'&desc='+escape(t),'vivi','scrollbars=no,width=480,height=480,left=75,top=20,status=no,resizable=yes'));vivi.focus();" title="收藏到新浪ViVi"><img src="http://img.motian.org/pic/wp/vivi.gif" alt="Sina ViVi" border="0"/></a>

<a title="添加到雅虎收藏" onclick="window.open('http://myweb.cn.yahoo.com/popadd.html?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title), 'Yahoo','scrollbars=yes,width=440,height=440,left=80,top=80,status=yes,resizable=yes');" href="javascript:;" rel="nofollow"><img src="http://img.motian.org/pic/wp/yahoo.png" alt="yahoo收藏" border="0" height="16" width="16"/></a>

<a title="保存到del.icio.us美味书签" href="javascript:(function(){f='http://delicious.com/save?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(document.title)+'&v=5&';a=function(){if(!window.open(f+'noui=1&jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()"><img src="http://img.motian.org/pic/wp/delicious.gif" alt="Del.icio.us" border="0" height="16" width="16"/></a>

<a title="推荐到digg.com" href="javascript:location.href='http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)"><img src="http://img.motian.org/pic/wp/digg.gif" alt="digg" border="0"/></a>

<a href="javascript:void(location.href='https://twitter.com/home?status=Now%20reading%20<<'+encodeURIComponent(document.title)+'>>%20'+encodeURIComponent(location.href))" title="分享到 Twitter"><img src="http://img.motian.org/pic/wp/twitter.png" alt="分享到twitter"/></a>

 <br/>
<script type="text/javascript"><!--
google_ad_client = "pub-4498164283832126";
/* 468x60, 创建于 10-8-17 */
google_ad_slot = "2152552823";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>]]></content:encoded>
			<wfw:commentRss>http://motian.org/post/xianguo-lianbo-362.html/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>[转]谁才能玩得转微博？</title>
		<link>http://motian.org/post/it-twitter-weibo-wan-250.html</link>
		<comments>http://motian.org/post/it-twitter-weibo-wan-250.html#comments</comments>
		<pubDate>Wed, 16 Dec 2009 16:13:00 +0000</pubDate>
		<dc:creator>漠天</dc:creator>
				<category><![CDATA[IT观察室]]></category>
		<category><![CDATA[微博]]></category>

		<guid isPermaLink="false">http://motian.org/?p=250</guid>
		<description><![CDATA[今年实在是Twitter的鼎盛年，圈子里见面都不问你Blog地址是什么，都开始问你Twitter帐号是什么，我fo一下。同时，国内环境中，饭否的遭遇、新浪围脖的崛起、包括139转型微博，都不禁让我感叹这世界变化快。

]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: small;">今年实在是Twitter的鼎盛年，圈子里见面都不问你Blog地址是什么，都开始问你Twitter帐号是什么，我fo一下。同时，国内环境中，饭否的遭遇、新浪围脖的崛起、包括139转型<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>，都不禁让我感叹这世界变化快。</span></p>
<p><span style="font-size: small;"><span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>如何呢，这个更有意思的社会化媒体怎么玩呢？国外的不说了，国内这些微博服务中，究竟谁能脱颖而出，谁才是最适合玩微博的呢？</span></p>
<p><span style="font-size: small;">其实微博轻是轻了，单位（单条tweet）的信息承载的价值也降低了，但是赢家必然是提供了更高的整体净价值，公式我<strong>假设</strong>为： 整体净价值=（单位价值-单位成本）*平均每用户拥有单位数*总实际用户数。单位价值=该信息对所有接受者的价值总和/该信息的所有接受者的数量。这样一 个公式下，因为虽然微博的单位价值是低了，单位成本同样更低，同时平均每用户拥有单位数增加了很多，即使用户数差不多，前面那个乘积也足够庞大。因此虽然 单位价值和成本不容易具体量化（时效也是价值之一），但是我觉得微博超越Blog的原因基本就是这样了。</span></p>
<p><span style="font-size: small;">那么基于这样一个公式来设想的话，单位价值就是一个非常重要的参考依据了。同样是微博，谁家引导的条目其平均单位价值更高呢？</span></p>
<p><span style="font-size: small;">回看Twitter，其崛起与爆发不在于他原本以为的唧唧歪歪，而是实时的资讯信息。而国内翻墙出去的推友也以技术派和ZZ关心者居多，推的内容多 是资讯、看法等。也就是说，同样是一条tweet，资讯、观点推的价值高于唧唧歪歪推。不是说唧唧歪歪推无价值，但是如果用饭店来打比方，一桌菜不能只有 肉没有青菜，但贵的往往是荤菜，招牌菜也不能是香菇炒菜心吧。所以Twitter因此崛起也因此被墙。</span></p>
<p><span style="font-size: small;">那看国内，实时资讯以及时事观点这些其实显然不符合国内环境，饭否就是例子。那在国内玩微博要引导什么内容呢？怎样的条目价值会更高一些呢？</span></p>
<p><span style="font-size: small;">后来看了新浪围脖一步步起来，再看腾讯滔滔依旧默默无闻，移动的139说客就更莫名其妙。之后思贱写了篇Blog，更引发我的思考。其实最后看回 来，新浪围脖起来就是因为他运营思路使其单位价值高于其他的原因所致。看滔滔，QQ签名是其主要条目，其价值其实也就是一年整理一份有趣签名帖子而已。如 果我的公式假设正确的话，那139说客怎么玩都玩不转了，这种只是依托移动设备的唧唧歪歪的UGC条目，单位价值太低了。这真不是腾讯啊移动啊投不投入资 源的问题，而是内容的价值的问题。</span></p>
<p><span style="font-size: small;">毕竟，微博之所以为社会化媒体虽然是多向的，终究还是媒体，终究在微观中还是有A -&gt; B这样的单向过程的，是要讲究信息价值的。同样140字符，短信的意义与微博是完全不同的。新浪围脖和新浪博客（博客是也媒体属性很强的产品）一样，都是 依靠提升单位价值获得更高的整体价值，从而击败对手。因为就不附加内容价值的产品来说，新浪博客绝对不算出色，但他就是能比瞎玩乐的搜狐博客和占据能覆盖 广大用户的百度空间更有价值。单位价值使然。再换句话说，名人的附加价值就是比咱P民要高，单位价值自然就高了。这种事儿大家应该经常遇到，自己说一句什 么话没人理你，换几天马云说了，大伙儿就绝对丫真牛逼！道理一样。</span></p>
<p><span style="font-size: small;">所以就现在来说，我觉得新浪围脖真的很有优势。而其他想要在微博这个应用中分块饼的，那就实实在在找到个运营方向，把握住内容价值才行。 Twitter毕竟抢了先机，什么内容都能玩了，后面的要玩，也得细分市场才行了。但是总体来说，无论如何都需要把单位价值提升才有前途。而让大家纯粹唧 唧歪歪的，早点洗洗睡吧，别浪费大家时间了。</span></p>
<div class="similarity"><h2>扩展阅读</h2><br /><ul><li><a href="http://motian.org/post/blog-deke-weibo-119.html">微博在中国的曲折发展</a> (1.000)</li><li><a href="http://motian.org/post/it-internet-digu-kaitong-162.html">嘀咕网可以嘀咕啦</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibojiazhi-184.html">微型博客的价值</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-xinlangweibo-209.html">﻿新浪微博还是和Twitter无关！</a> (1.000)</li><li><a href="http://motian.org/post/diary-share%e2%80%94nowhere-246.html">国人开发的一个的微博客程序</a> (1.000)</li><li><a href="http://motian.org/post/xianguo-lianbo-362.html">迟来的鲜果联播</a> (1.000)</li><li><a href="http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html">微博客MicroBlog开源软件</a> (1.000)</li><li><a href="http://motian.org/post/diary-weibo-robots-448.html">微博生活，机器人帮我写</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-454.html">PHPSay-Mcrioblog很好很强大</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-140-456.html">修改PHPSay-Mcrioblog的字数限制</a> (1.000)</li></ul></div><!-- Tag --><hr />
<p>© 漠天 for <a href="http://motian.org">漠天博客</a>, 2009. |
<a href="http://motian.org/post/it-twitter-weibo-wan-250.html">永久链接</a> |
<a href="http://motian.org/post/it-twitter-weibo-wan-250.html#comments">17 comments</a> |标签: <a href="http://motian.org/tag/twitter" rel="tag">微博</a><br/>
<strong>收藏分享本文：</strong>
<a style="color:#333333;text-align:center;font-size:12px;" href="javascript:void((function(s,d,e){try{}catch(e){}var f='http://v.t.sina.com.cn/share/share.php?',u=d.location.href,p=['url=',e(u),'&title=',e(d.title),'&appkey=2924220432'].join('');function a(){if(!window.open([f,p].join(''),'mb',['toolbar=0,status=0,resizable=1,width=620,height=450,left=',(s.width-620)/2,',top=',(s.height-450)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/weibo.gif" alt="分享到新浪微博" border="0" height="16" width="16"/></a>

<a href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);location=%22http://zuosa.com/collect/Collect.aspx?t=%22+encodeURIComponent(t)+%22&u=%22+encodeURIComponent(u);void%200" title="你在做啥"><img src="http://img.motian.org/pic/wp/zuosa.gif"/></a>

<a title="转贴到校内人人网" href="javascript:void((function(s,d,e){if(/xiaonei\.com/.test(d.location))return;var%20f='http://share.xiaonei.com/share/buttonshare.do?link=',u=d.location,l=d.title,p=[e(u),'&title=',e(l)].join('');function%20a(){if(!window.open([f,p].join(''),'xnshare',['toolbar=0,status=0,resizable=1,width=626,height=436,left=',(s.width-626)/2,',top=',(s.height-436)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/renren.gif" alt="分享到校内人人网" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(kaixin=window.open('http://www.kaixin001.com/~repaste/repaste.php?&rurl='+escape(d.location.href)+'&rtitle='+escape(d.title)+'&rcontent='+escape(d.title),'kaixin'));kaixin.focus();" title="转贴到开心网"><img src="http://img.motian.org/pic/wp/kaixin.gif" alt="转贴到开心网" border="0"/></a>

<a href="javascript:void(function(){var%20d=document,e=encodeURIComponent,s1=window.getSelection,s2=d.getSelection,s3=d.selection,s=s1?s1():s2?s2():s3?s3.createRange().text:' ',r='http://www.douban.com/recommend/?url='+e(d.location.href)+'&title='+e(d.title)+'&sel='+e(s)+'&v=1',x=function(){if(!window.open(r,'douban','toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=330'))location.href=r+'&r=1'};if(/Firefox/.test(navigator.userAgent)){setTimeout(x,0)}else{x()}})()" title="推荐到豆瓣" rel="nofollow" ><img src="http://img.motian.org/pic/wp/douban.png" border="0" height="16" width="16"></a>

<a title="收藏到Google书签" href="javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open('http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+c(b.location)+'&title='+c(b.title),'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=420px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300)})();"><img src="http://img.motian.org/pic/wp/googlebookmark.png" alt="Google书签" border="0" height="16" width="16"/></a>

<a title="添加到QQ书签" href="javascript:window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)"><img src="http://img.motian.org/pic/wp/qq.png" alt="QQ书签" border="0" height="16" width="16"/></a>

<a title="添加到百度搜藏" href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);var url=%22http://cang.baidu.com/do/add?it=%22+encodeURIComponent(t)+%22&iu=%22+encodeURIComponent(u)+%22&dc=%22+encodeURIComponent(c)+%22&fr=ien#nw=1%22;window.open(url,'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');void 0"><img src="http://img.motian.org/pic/wp/baidu.gif" alt="百度搜藏" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&title='+escape(d.title)+'&url='+escape(d.location.href)+'&desc='+escape(t),'vivi','scrollbars=no,width=480,height=480,left=75,top=20,status=no,resizable=yes'));vivi.focus();" title="收藏到新浪ViVi"><img src="http://img.motian.org/pic/wp/vivi.gif" alt="Sina ViVi" border="0"/></a>

<a title="添加到雅虎收藏" onclick="window.open('http://myweb.cn.yahoo.com/popadd.html?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title), 'Yahoo','scrollbars=yes,width=440,height=440,left=80,top=80,status=yes,resizable=yes');" href="javascript:;" rel="nofollow"><img src="http://img.motian.org/pic/wp/yahoo.png" alt="yahoo收藏" border="0" height="16" width="16"/></a>

<a title="保存到del.icio.us美味书签" href="javascript:(function(){f='http://delicious.com/save?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(document.title)+'&v=5&';a=function(){if(!window.open(f+'noui=1&jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()"><img src="http://img.motian.org/pic/wp/delicious.gif" alt="Del.icio.us" border="0" height="16" width="16"/></a>

<a title="推荐到digg.com" href="javascript:location.href='http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)"><img src="http://img.motian.org/pic/wp/digg.gif" alt="digg" border="0"/></a>

<a href="javascript:void(location.href='https://twitter.com/home?status=Now%20reading%20<<'+encodeURIComponent(document.title)+'>>%20'+encodeURIComponent(location.href))" title="分享到 Twitter"><img src="http://img.motian.org/pic/wp/twitter.png" alt="分享到twitter"/></a>

 <br/>
<script type="text/javascript"><!--
google_ad_client = "pub-4498164283832126";
/* 468x60, 创建于 10-8-17 */
google_ad_slot = "2152552823";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>]]></content:encoded>
			<wfw:commentRss>http://motian.org/post/it-twitter-weibo-wan-250.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>国人开发的一个的微博客程序</title>
		<link>http://motian.org/post/diary-share%e2%80%94nowhere-246.html</link>
		<comments>http://motian.org/post/diary-share%e2%80%94nowhere-246.html#comments</comments>
		<pubDate>Mon, 14 Dec 2009 15:12:52 +0000</pubDate>
		<dc:creator>漠天</dc:creator>
				<category><![CDATA[博客杂文]]></category>
		<category><![CDATA[编程&开发]]></category>
		<category><![CDATA[微博]]></category>

		<guid isPermaLink="false">http://motian.org/?p=246</guid>
		<description><![CDATA[Nowhere 是一个 90后的高中生开发的微博客程序作品，它采用种树的主题（如下图所示）来表示枝叶日渐繁茂的景象。

Nowhere 支持多种社交类网站（如Twiiter、Facebook、Last.fm、豆瓣、Google Reader、Flicrk 等），输入您在这些网站的用户名，就会有一个到您的页面的链接出现在树根处。

 
]]></description>
			<content:encoded><![CDATA[<p>Nowhere 是一个 90后的高中生开发的<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>客程序作品，它采用种树的主题（如下图所示）来表示枝叶日渐繁茂的景象。</p>
<p>Nowhere 支持多种社交类网站（如Twiiter、Facebook、Last.fm、豆瓣、Google Reader、Flicrk 等），输入您在这些网站的用户名，就会有一个到您的页面的链接出现在树根处。</p>
<p> <img class="size-large wp-image-247 alignnone" title="nowhere" src="http://img.motian.org/images/nowhere-500x234.jpg" alt="nowhere" width="500" height="234" /></p>
<blockquote>
<div>1.使用SVN客户端从Google Code获取源代码<br />
<a rel="nofollow external" href="http://code.google.com/p/project-nowhere/source/checkout" target="_blank">http://code.google.com/p/project-nowhere/source/checkout </a></div>
<p>2.配置inc/config.inc.php （特别注意配置文件末尾的AUTHKEY，输入随机字符串即可)</p>
<p>3.上传uploads目录下全部程序文件</p>
<p>4.运行installer.php</p>
<p>5.登陆后至控制面板进行基本设置，提交保存。</p>
<p>6.开始使用！</p></blockquote>
<ul>
<li>在线演示：<a href="http://saicn.com/now" target="_blank">http://saicn.com/now</a></li>
<li>开发语言： <a href="http://docs.google.com/project/lang/22/php">PHP</a></li>
<li>项目主页： <a href="http://code.google.com/p/project-nowhere/" target="_blank">http://code.google.com/p/project-nowhere/</a></li>
<li>文档地址： <a href="http://saicn.com/bbs/topic/view/7467.html" target="_blank">http://saicn.com/bbs/topic/view/7467.html</a></li>
<li>下载地址： <a href="http://code.google.com/p/project-nowhere/source/checkout" target="_blank">http://code.google.com/p/project-nowhere/source/checkout</a></li>
</ul>
<div class="similarity"><h2>扩展阅读</h2><br /><ul><li><a href="http://motian.org/post/blog-deke-weibo-119.html">微博在中国的曲折发展</a> (1.000)</li><li><a href="http://motian.org/post/it-internet-digu-kaitong-162.html">嘀咕网可以嘀咕啦</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibojiazhi-184.html">微型博客的价值</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-xinlangweibo-209.html">﻿新浪微博还是和Twitter无关！</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibo-wan-250.html">[转]谁才能玩得转微博？</a> (1.000)</li><li><a href="http://motian.org/post/xianguo-lianbo-362.html">迟来的鲜果联播</a> (1.000)</li><li><a href="http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html">微博客MicroBlog开源软件</a> (1.000)</li><li><a href="http://motian.org/post/diary-weibo-robots-448.html">微博生活，机器人帮我写</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-454.html">PHPSay-Mcrioblog很好很强大</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-140-456.html">修改PHPSay-Mcrioblog的字数限制</a> (1.000)</li></ul></div><!-- Tag --><hr />
<p>© 漠天 for <a href="http://motian.org">漠天博客</a>, 2009. |
<a href="http://motian.org/post/diary-share%e2%80%94nowhere-246.html">永久链接</a> |
<a href="http://motian.org/post/diary-share%e2%80%94nowhere-246.html#comments">7 comments</a> |标签: <a href="http://motian.org/tag/twitter" rel="tag">微博</a><br/>
<strong>收藏分享本文：</strong>
<a style="color:#333333;text-align:center;font-size:12px;" href="javascript:void((function(s,d,e){try{}catch(e){}var f='http://v.t.sina.com.cn/share/share.php?',u=d.location.href,p=['url=',e(u),'&title=',e(d.title),'&appkey=2924220432'].join('');function a(){if(!window.open([f,p].join(''),'mb',['toolbar=0,status=0,resizable=1,width=620,height=450,left=',(s.width-620)/2,',top=',(s.height-450)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/weibo.gif" alt="分享到新浪微博" border="0" height="16" width="16"/></a>

<a href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);location=%22http://zuosa.com/collect/Collect.aspx?t=%22+encodeURIComponent(t)+%22&u=%22+encodeURIComponent(u);void%200" title="你在做啥"><img src="http://img.motian.org/pic/wp/zuosa.gif"/></a>

<a title="转贴到校内人人网" href="javascript:void((function(s,d,e){if(/xiaonei\.com/.test(d.location))return;var%20f='http://share.xiaonei.com/share/buttonshare.do?link=',u=d.location,l=d.title,p=[e(u),'&title=',e(l)].join('');function%20a(){if(!window.open([f,p].join(''),'xnshare',['toolbar=0,status=0,resizable=1,width=626,height=436,left=',(s.width-626)/2,',top=',(s.height-436)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/renren.gif" alt="分享到校内人人网" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(kaixin=window.open('http://www.kaixin001.com/~repaste/repaste.php?&rurl='+escape(d.location.href)+'&rtitle='+escape(d.title)+'&rcontent='+escape(d.title),'kaixin'));kaixin.focus();" title="转贴到开心网"><img src="http://img.motian.org/pic/wp/kaixin.gif" alt="转贴到开心网" border="0"/></a>

<a href="javascript:void(function(){var%20d=document,e=encodeURIComponent,s1=window.getSelection,s2=d.getSelection,s3=d.selection,s=s1?s1():s2?s2():s3?s3.createRange().text:' ',r='http://www.douban.com/recommend/?url='+e(d.location.href)+'&title='+e(d.title)+'&sel='+e(s)+'&v=1',x=function(){if(!window.open(r,'douban','toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=330'))location.href=r+'&r=1'};if(/Firefox/.test(navigator.userAgent)){setTimeout(x,0)}else{x()}})()" title="推荐到豆瓣" rel="nofollow" ><img src="http://img.motian.org/pic/wp/douban.png" border="0" height="16" width="16"></a>

<a title="收藏到Google书签" href="javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open('http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+c(b.location)+'&title='+c(b.title),'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=420px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300)})();"><img src="http://img.motian.org/pic/wp/googlebookmark.png" alt="Google书签" border="0" height="16" width="16"/></a>

<a title="添加到QQ书签" href="javascript:window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)"><img src="http://img.motian.org/pic/wp/qq.png" alt="QQ书签" border="0" height="16" width="16"/></a>

<a title="添加到百度搜藏" href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);var url=%22http://cang.baidu.com/do/add?it=%22+encodeURIComponent(t)+%22&iu=%22+encodeURIComponent(u)+%22&dc=%22+encodeURIComponent(c)+%22&fr=ien#nw=1%22;window.open(url,'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');void 0"><img src="http://img.motian.org/pic/wp/baidu.gif" alt="百度搜藏" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&title='+escape(d.title)+'&url='+escape(d.location.href)+'&desc='+escape(t),'vivi','scrollbars=no,width=480,height=480,left=75,top=20,status=no,resizable=yes'));vivi.focus();" title="收藏到新浪ViVi"><img src="http://img.motian.org/pic/wp/vivi.gif" alt="Sina ViVi" border="0"/></a>

<a title="添加到雅虎收藏" onclick="window.open('http://myweb.cn.yahoo.com/popadd.html?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title), 'Yahoo','scrollbars=yes,width=440,height=440,left=80,top=80,status=yes,resizable=yes');" href="javascript:;" rel="nofollow"><img src="http://img.motian.org/pic/wp/yahoo.png" alt="yahoo收藏" border="0" height="16" width="16"/></a>

<a title="保存到del.icio.us美味书签" href="javascript:(function(){f='http://delicious.com/save?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(document.title)+'&v=5&';a=function(){if(!window.open(f+'noui=1&jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()"><img src="http://img.motian.org/pic/wp/delicious.gif" alt="Del.icio.us" border="0" height="16" width="16"/></a>

<a title="推荐到digg.com" href="javascript:location.href='http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)"><img src="http://img.motian.org/pic/wp/digg.gif" alt="digg" border="0"/></a>

<a href="javascript:void(location.href='https://twitter.com/home?status=Now%20reading%20<<'+encodeURIComponent(document.title)+'>>%20'+encodeURIComponent(location.href))" title="分享到 Twitter"><img src="http://img.motian.org/pic/wp/twitter.png" alt="分享到twitter"/></a>

 <br/>
<script type="text/javascript"><!--
google_ad_client = "pub-4498164283832126";
/* 468x60, 创建于 10-8-17 */
google_ad_slot = "2152552823";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>]]></content:encoded>
			<wfw:commentRss>http://motian.org/post/diary-share%e2%80%94nowhere-246.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>﻿新浪微博还是和Twitter无关！</title>
		<link>http://motian.org/post/it-twitter-xinlangweibo-209.html</link>
		<comments>http://motian.org/post/it-twitter-xinlangweibo-209.html#comments</comments>
		<pubDate>Thu, 03 Dec 2009 14:40:05 +0000</pubDate>
		<dc:creator>漠天</dc:creator>
				<category><![CDATA[IT观察室]]></category>
		<category><![CDATA[微博]]></category>

		<guid isPermaLink="false">http://motian.org/?p=209</guid>
		<description><![CDATA[新浪在一些“数字”的展示上的优化还是极大的体现了中国国情的。
在Twitter上你知道你的一句话被多少人RT了么？不知道。

但是新浪微博就可以，这是一种“成就感”
]]></description>
			<content:encoded><![CDATA[<div>﻿新浪在一些“数字”的展示上的优化还是极大的体现了中国国情的。</div>
<div id="post-content-301">
<div>
<p>在Twitter上你知道你的一句话被多少人RT了么？不知道。</p>
<p>但是新浪<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>就可以，这是一种“成就感”</p>
<p>接下来的问题是这种“成就感”很重要么？</p>
<p>考虑一下曾经玩死无数网民的东西吧：QQ的星星月亮，mopsite的MP，开心的停车位，五分钟的菜园子……</p>
<p>这些是什么？是信息？资讯？交流？……什么都不是，就是虚拟的成就感</p>
<p>因此，对于新浪<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>来说，他抄袭了twitter的躯体是不错，但是灵魂是纯中国的，是和twitter无关的。</p>
<p>所以说，就像<a href="http://www.linglingfa.com/2009/08/28/2907/" target="_blank">新浪微博刚刚发布的时候我的判断</a>一样，新浪微博在形式上出身于“类Twitter 应用”是不错，换句话说是Twitter启发了新浪做微博的思路。但是如果就此判断微博是抄袭Twitter，新浪只是做了一个中文加审核版的Twitter，那就真的是太可悲的误会了。</p>
<p>这其实也是很多海外互联网巨头亲自进入中国做汉化版服务往往一败涂地的根本原因。往虚了说是“不够本土化”，说白了，就是中国互联网的内涵，和海外完全不一样。</p>
<p>因此，评价新浪微博的产品设计，如果你就盯着界面、关注、粉丝、回复、转发这些功能，而忽视掉那些你被评论的数字，你新增的“粉丝”（也就是关注人）的数字提醒，或者你仅仅认为这是新浪微博产品化上的小细节，那就大错特错了。</p>
<p>所以我反对那种说就算把一个一模一样的Twitter给新浪按照现在的方式运营也会一样的说法。新浪根本就不想运营一个Twitter，他们只想做新浪微博。</p></div>
</div>
<div class="similarity"><h2>扩展阅读</h2><br /><ul><li><a href="http://motian.org/post/blog-deke-weibo-119.html">微博在中国的曲折发展</a> (1.000)</li><li><a href="http://motian.org/post/it-internet-digu-kaitong-162.html">嘀咕网可以嘀咕啦</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibojiazhi-184.html">微型博客的价值</a> (1.000)</li><li><a href="http://motian.org/post/diary-share%e2%80%94nowhere-246.html">国人开发的一个的微博客程序</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibo-wan-250.html">[转]谁才能玩得转微博？</a> (1.000)</li><li><a href="http://motian.org/post/xianguo-lianbo-362.html">迟来的鲜果联播</a> (1.000)</li><li><a href="http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html">微博客MicroBlog开源软件</a> (1.000)</li><li><a href="http://motian.org/post/diary-weibo-robots-448.html">微博生活，机器人帮我写</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-454.html">PHPSay-Mcrioblog很好很强大</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-140-456.html">修改PHPSay-Mcrioblog的字数限制</a> (1.000)</li></ul></div><!-- Tag --><hr />
<p>© 漠天 for <a href="http://motian.org">漠天博客</a>, 2009. |
<a href="http://motian.org/post/it-twitter-xinlangweibo-209.html">永久链接</a> |
<a href="http://motian.org/post/it-twitter-xinlangweibo-209.html#comments">17 comments</a> |标签: <a href="http://motian.org/tag/twitter" rel="tag">微博</a><br/>
<strong>收藏分享本文：</strong>
<a style="color:#333333;text-align:center;font-size:12px;" href="javascript:void((function(s,d,e){try{}catch(e){}var f='http://v.t.sina.com.cn/share/share.php?',u=d.location.href,p=['url=',e(u),'&title=',e(d.title),'&appkey=2924220432'].join('');function a(){if(!window.open([f,p].join(''),'mb',['toolbar=0,status=0,resizable=1,width=620,height=450,left=',(s.width-620)/2,',top=',(s.height-450)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/weibo.gif" alt="分享到新浪微博" border="0" height="16" width="16"/></a>

<a href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);location=%22http://zuosa.com/collect/Collect.aspx?t=%22+encodeURIComponent(t)+%22&u=%22+encodeURIComponent(u);void%200" title="你在做啥"><img src="http://img.motian.org/pic/wp/zuosa.gif"/></a>

<a title="转贴到校内人人网" href="javascript:void((function(s,d,e){if(/xiaonei\.com/.test(d.location))return;var%20f='http://share.xiaonei.com/share/buttonshare.do?link=',u=d.location,l=d.title,p=[e(u),'&title=',e(l)].join('');function%20a(){if(!window.open([f,p].join(''),'xnshare',['toolbar=0,status=0,resizable=1,width=626,height=436,left=',(s.width-626)/2,',top=',(s.height-436)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/renren.gif" alt="分享到校内人人网" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(kaixin=window.open('http://www.kaixin001.com/~repaste/repaste.php?&rurl='+escape(d.location.href)+'&rtitle='+escape(d.title)+'&rcontent='+escape(d.title),'kaixin'));kaixin.focus();" title="转贴到开心网"><img src="http://img.motian.org/pic/wp/kaixin.gif" alt="转贴到开心网" border="0"/></a>

<a href="javascript:void(function(){var%20d=document,e=encodeURIComponent,s1=window.getSelection,s2=d.getSelection,s3=d.selection,s=s1?s1():s2?s2():s3?s3.createRange().text:' ',r='http://www.douban.com/recommend/?url='+e(d.location.href)+'&title='+e(d.title)+'&sel='+e(s)+'&v=1',x=function(){if(!window.open(r,'douban','toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=330'))location.href=r+'&r=1'};if(/Firefox/.test(navigator.userAgent)){setTimeout(x,0)}else{x()}})()" title="推荐到豆瓣" rel="nofollow" ><img src="http://img.motian.org/pic/wp/douban.png" border="0" height="16" width="16"></a>

<a title="收藏到Google书签" href="javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open('http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+c(b.location)+'&title='+c(b.title),'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=420px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300)})();"><img src="http://img.motian.org/pic/wp/googlebookmark.png" alt="Google书签" border="0" height="16" width="16"/></a>

<a title="添加到QQ书签" href="javascript:window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)"><img src="http://img.motian.org/pic/wp/qq.png" alt="QQ书签" border="0" height="16" width="16"/></a>

<a title="添加到百度搜藏" href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);var url=%22http://cang.baidu.com/do/add?it=%22+encodeURIComponent(t)+%22&iu=%22+encodeURIComponent(u)+%22&dc=%22+encodeURIComponent(c)+%22&fr=ien#nw=1%22;window.open(url,'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');void 0"><img src="http://img.motian.org/pic/wp/baidu.gif" alt="百度搜藏" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&title='+escape(d.title)+'&url='+escape(d.location.href)+'&desc='+escape(t),'vivi','scrollbars=no,width=480,height=480,left=75,top=20,status=no,resizable=yes'));vivi.focus();" title="收藏到新浪ViVi"><img src="http://img.motian.org/pic/wp/vivi.gif" alt="Sina ViVi" border="0"/></a>

<a title="添加到雅虎收藏" onclick="window.open('http://myweb.cn.yahoo.com/popadd.html?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title), 'Yahoo','scrollbars=yes,width=440,height=440,left=80,top=80,status=yes,resizable=yes');" href="javascript:;" rel="nofollow"><img src="http://img.motian.org/pic/wp/yahoo.png" alt="yahoo收藏" border="0" height="16" width="16"/></a>

<a title="保存到del.icio.us美味书签" href="javascript:(function(){f='http://delicious.com/save?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(document.title)+'&v=5&';a=function(){if(!window.open(f+'noui=1&jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()"><img src="http://img.motian.org/pic/wp/delicious.gif" alt="Del.icio.us" border="0" height="16" width="16"/></a>

<a title="推荐到digg.com" href="javascript:location.href='http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)"><img src="http://img.motian.org/pic/wp/digg.gif" alt="digg" border="0"/></a>

<a href="javascript:void(location.href='https://twitter.com/home?status=Now%20reading%20<<'+encodeURIComponent(document.title)+'>>%20'+encodeURIComponent(location.href))" title="分享到 Twitter"><img src="http://img.motian.org/pic/wp/twitter.png" alt="分享到twitter"/></a>

 <br/>
<script type="text/javascript"><!--
google_ad_client = "pub-4498164283832126";
/* 468x60, 创建于 10-8-17 */
google_ad_slot = "2152552823";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>]]></content:encoded>
			<wfw:commentRss>http://motian.org/post/it-twitter-xinlangweibo-209.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>微型博客的价值</title>
		<link>http://motian.org/post/it-twitter-weibojiazhi-184.html</link>
		<comments>http://motian.org/post/it-twitter-weibojiazhi-184.html#comments</comments>
		<pubDate>Thu, 05 Nov 2009 14:11:50 +0000</pubDate>
		<dc:creator>漠天</dc:creator>
				<category><![CDATA[IT观察室]]></category>
		<category><![CDATA[微博]]></category>

		<guid isPermaLink="false">http://motian.org/?p=184</guid>
		<description><![CDATA[         但是，微博到底会发展成一个什么样子呢？估计谁也说不好。这并不是说大家的预测水平不行，只是这个产品可塑性太强了，可发展余地也太大了。可以说，现在的微博就像陶吧里的泥巴，会变成什么样子，不仅取决于陶吧老板的原材料，也取决于那些玩主。

]]></description>
			<content:encoded><![CDATA[<p>        毫无疑问，<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>将是互联网行业未来两三年引导创新的热点，也将是潮流引爆点。</p>
<p>         但是，<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>到底会发展成一个什么样子呢？估计谁也说不好。这并不是说大家的预测水平不行，只是这个产品可塑性太强了，可发展余地也太大了。可以说，现在的微博就像陶吧里的泥巴，会变成什么样子，不仅取决于陶吧老板的原材料，也取决于那些玩主。</p>
<p>既然是这样，下面我们就用絮絮叨叨的方式（微博的典型方式）说说微博的价值，说说自己的一点感受和畅想：</p>
<p style="padding-left: 30px;">1、微博就是微博客、就是迷你博客、就是只能发140个字的博客吗？显然不是。应该说，“只能发140个字的博客”只是微博的一个属性而已。</p>
<p style="padding-left: 30px;">2、微博是媒体吗？不不不，微博是一款Web2.0的产品，不是媒体。媒体也只是微博的一个属性而已。如果说谁把微博简单看做媒体，那就大错特错了。这一点，具有与生俱来的媒体因子的新浪尤其要注意。</p>
<p style="padding-left: 30px;">3、微博当然属于SNS的范畴。谢文老师一直认为SNS模式只有像FaceBook那样的才根正苗红，刘兴亮却认为像Twitter这样的才代表着SNS的未来。</p>
<p style="padding-left: 30px;">4、和手机的无缝结合，才是微博的革命性意义。短信、彩信、WAP……你可以随心所欲随时随地的去阅读微博，去发微博。这，是别的任何产品难以比拟的。这，才使得下面要讨论的那些点有了价值。微博+手机，一切皆有可能。</p>
<p style="padding-left: 30px;">5、自言自语的地方？当然。在约会等人的片刻时间，在机场候机的无聊时刻，我们都有自言自语的冲动。我们的自言自语也是需要有人附和的，而且是及时的附和，没有特定目标人或人群的附和。这点，微博当然能很好的满足，而且是目前的产品应用种类中最好的满足。</p>
<p style="padding-left: 30px;">6、新型的人际沟通方式。在某个周末的早晨，我和美女苗颖躺在被窝里聊天，当然是她躺在她家床上的被窝里，我躺在我家床上的被窝里，我们用手机上围脖来沟通。打电话发短信沟通？我们还没有熟到那个地步；发邮件给她？也没什么正事；用IM沟通？一则我没有她的IM号，二来也是碰巧我发的话题她感兴趣，就和她沟通上了，换成张颖李颖也都可以。这也是IM不可能做到的。</p>
<p style="padding-left: 30px;">7、订阅器？这个，可以是。在Twitter上，越来越多的人把它当作订阅器来使用了，看纽约时报华尔街日报等。在围脖上也可以，很多人都把自己的博客绑定了，南方周末、南都周刊等也都入住了。</p>
<p style="padding-left: 30px;">8、即时搜索。举个例子。我家住在亚运村，办公在中关村，每天下班回家走北四环。一般晚上九点以后北四环很通畅的。可是有一天却特别堵，有一段简直就动不了。这个时候我就迫切想知道发生了什么事情。此时，传统的互联网工具和应用就不能满足我，新浪搜狐不能，Google百度也不能。只有微博可以，上去一搜，原来那晚鸟巢有英伦组合的演唱会。</p>
<p style="padding-left: 30px;">9、口碑营销的绝佳地。我们倡导了这么多年的口碑营销，现在发现，微博才是口碑营销的最好地方：其一：微博里都是一个一个活生生的人，一个一个活生生的用户；其二：对产品的只言片语的感受才是最真实的感受；其三：微博的核心就是转发，不停的转发。在Twitter上做的最好的有两家公司，一家是戴尔，另一家是最近刚刚被亚马逊12亿美元收购的Zappos。</p>
<p style="padding-left: 30px;">10、个人言论集散地。每一条微博，就是一粒珍珠，一颗石子，把他们按照一定规律串起来，就是一件上佳首饰。嘀咕就提供了这样的自动把一条条的信息弄成一篇博客的功能。</p>
<p style="padding-left: 30px;">11、微博也可以是自己的flickr、自己的Picasa。</p>
<p style="padding-left: 30px;">12、收藏功能。这个需要一个插件，然后你就可以从所有地方来收藏，代替书签之类的功能。</p>
<p style="padding-left: 30px;">13、微博上订餐？为什么不可以。Twitter上麦当劳、肯德基、星巴克都很火。想吃麦当劳？那就发一条私信吧。</p>
<p style="padding-left: 30px;">14、最省成本最高效最不失真的新闻发布会的方式。不信你去问问李开复。</p>
<p style="padding-left: 30px;">15、有人帮你义务筛选信息，你也在帮相关的人义务筛选信息。</p>
<div class="similarity"><h2>扩展阅读</h2><br /><ul><li><a href="http://motian.org/post/blog-deke-weibo-119.html">微博在中国的曲折发展</a> (1.000)</li><li><a href="http://motian.org/post/it-internet-digu-kaitong-162.html">嘀咕网可以嘀咕啦</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-xinlangweibo-209.html">﻿新浪微博还是和Twitter无关！</a> (1.000)</li><li><a href="http://motian.org/post/diary-share%e2%80%94nowhere-246.html">国人开发的一个的微博客程序</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibo-wan-250.html">[转]谁才能玩得转微博？</a> (1.000)</li><li><a href="http://motian.org/post/xianguo-lianbo-362.html">迟来的鲜果联播</a> (1.000)</li><li><a href="http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html">微博客MicroBlog开源软件</a> (1.000)</li><li><a href="http://motian.org/post/diary-weibo-robots-448.html">微博生活，机器人帮我写</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-454.html">PHPSay-Mcrioblog很好很强大</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-140-456.html">修改PHPSay-Mcrioblog的字数限制</a> (1.000)</li></ul></div><!-- Tag --><hr />
<p>© 漠天 for <a href="http://motian.org">漠天博客</a>, 2009. |
<a href="http://motian.org/post/it-twitter-weibojiazhi-184.html">永久链接</a> |
<a href="http://motian.org/post/it-twitter-weibojiazhi-184.html#comments">3 comments</a> |标签: <a href="http://motian.org/tag/twitter" rel="tag">微博</a><br/>
<strong>收藏分享本文：</strong>
<a style="color:#333333;text-align:center;font-size:12px;" href="javascript:void((function(s,d,e){try{}catch(e){}var f='http://v.t.sina.com.cn/share/share.php?',u=d.location.href,p=['url=',e(u),'&title=',e(d.title),'&appkey=2924220432'].join('');function a(){if(!window.open([f,p].join(''),'mb',['toolbar=0,status=0,resizable=1,width=620,height=450,left=',(s.width-620)/2,',top=',(s.height-450)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/weibo.gif" alt="分享到新浪微博" border="0" height="16" width="16"/></a>

<a href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);location=%22http://zuosa.com/collect/Collect.aspx?t=%22+encodeURIComponent(t)+%22&u=%22+encodeURIComponent(u);void%200" title="你在做啥"><img src="http://img.motian.org/pic/wp/zuosa.gif"/></a>

<a title="转贴到校内人人网" href="javascript:void((function(s,d,e){if(/xiaonei\.com/.test(d.location))return;var%20f='http://share.xiaonei.com/share/buttonshare.do?link=',u=d.location,l=d.title,p=[e(u),'&title=',e(l)].join('');function%20a(){if(!window.open([f,p].join(''),'xnshare',['toolbar=0,status=0,resizable=1,width=626,height=436,left=',(s.width-626)/2,',top=',(s.height-436)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/renren.gif" alt="分享到校内人人网" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(kaixin=window.open('http://www.kaixin001.com/~repaste/repaste.php?&rurl='+escape(d.location.href)+'&rtitle='+escape(d.title)+'&rcontent='+escape(d.title),'kaixin'));kaixin.focus();" title="转贴到开心网"><img src="http://img.motian.org/pic/wp/kaixin.gif" alt="转贴到开心网" border="0"/></a>

<a href="javascript:void(function(){var%20d=document,e=encodeURIComponent,s1=window.getSelection,s2=d.getSelection,s3=d.selection,s=s1?s1():s2?s2():s3?s3.createRange().text:' ',r='http://www.douban.com/recommend/?url='+e(d.location.href)+'&title='+e(d.title)+'&sel='+e(s)+'&v=1',x=function(){if(!window.open(r,'douban','toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=330'))location.href=r+'&r=1'};if(/Firefox/.test(navigator.userAgent)){setTimeout(x,0)}else{x()}})()" title="推荐到豆瓣" rel="nofollow" ><img src="http://img.motian.org/pic/wp/douban.png" border="0" height="16" width="16"></a>

<a title="收藏到Google书签" href="javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open('http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+c(b.location)+'&title='+c(b.title),'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=420px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300)})();"><img src="http://img.motian.org/pic/wp/googlebookmark.png" alt="Google书签" border="0" height="16" width="16"/></a>

<a title="添加到QQ书签" href="javascript:window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)"><img src="http://img.motian.org/pic/wp/qq.png" alt="QQ书签" border="0" height="16" width="16"/></a>

<a title="添加到百度搜藏" href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);var url=%22http://cang.baidu.com/do/add?it=%22+encodeURIComponent(t)+%22&iu=%22+encodeURIComponent(u)+%22&dc=%22+encodeURIComponent(c)+%22&fr=ien#nw=1%22;window.open(url,'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');void 0"><img src="http://img.motian.org/pic/wp/baidu.gif" alt="百度搜藏" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&title='+escape(d.title)+'&url='+escape(d.location.href)+'&desc='+escape(t),'vivi','scrollbars=no,width=480,height=480,left=75,top=20,status=no,resizable=yes'));vivi.focus();" title="收藏到新浪ViVi"><img src="http://img.motian.org/pic/wp/vivi.gif" alt="Sina ViVi" border="0"/></a>

<a title="添加到雅虎收藏" onclick="window.open('http://myweb.cn.yahoo.com/popadd.html?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title), 'Yahoo','scrollbars=yes,width=440,height=440,left=80,top=80,status=yes,resizable=yes');" href="javascript:;" rel="nofollow"><img src="http://img.motian.org/pic/wp/yahoo.png" alt="yahoo收藏" border="0" height="16" width="16"/></a>

<a title="保存到del.icio.us美味书签" href="javascript:(function(){f='http://delicious.com/save?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(document.title)+'&v=5&';a=function(){if(!window.open(f+'noui=1&jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()"><img src="http://img.motian.org/pic/wp/delicious.gif" alt="Del.icio.us" border="0" height="16" width="16"/></a>

<a title="推荐到digg.com" href="javascript:location.href='http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)"><img src="http://img.motian.org/pic/wp/digg.gif" alt="digg" border="0"/></a>

<a href="javascript:void(location.href='https://twitter.com/home?status=Now%20reading%20<<'+encodeURIComponent(document.title)+'>>%20'+encodeURIComponent(location.href))" title="分享到 Twitter"><img src="http://img.motian.org/pic/wp/twitter.png" alt="分享到twitter"/></a>

 <br/>
<script type="text/javascript"><!--
google_ad_client = "pub-4498164283832126";
/* 468x60, 创建于 10-8-17 */
google_ad_slot = "2152552823";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>]]></content:encoded>
			<wfw:commentRss>http://motian.org/post/it-twitter-weibojiazhi-184.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>嘀咕网可以嘀咕啦</title>
		<link>http://motian.org/post/it-internet-digu-kaitong-162.html</link>
		<comments>http://motian.org/post/it-internet-digu-kaitong-162.html#comments</comments>
		<pubDate>Mon, 26 Oct 2009 16:31:36 +0000</pubDate>
		<dc:creator>漠天</dc:creator>
				<category><![CDATA[IT观察室]]></category>
		<category><![CDATA[微博]]></category>

		<guid isPermaLink="false">http://motian.org/?p=162</guid>
		<description><![CDATA[像积累了一定得用户资源的饭否、叽歪，刚刚起立的新秀嘀咕网，拥有巨大客户群的腾讯滔滔，以及一些其他的小微博服务等等，不知道是什么原因，这些微博就在一夜之间被关闭了，就目前来看，微博客在国内发展可谓一波三折，困难重重啊！]]></description>
			<content:encoded><![CDATA[<div><img class="alignright" title="嘀咕网" src="http://img.motian.org/images/11427381.jpg" alt="" width="400" height="153" /></div>
<div>像积累了一定得用户资源的饭否、叽歪，刚刚起立的新秀<a id="i9-b" title="嘀咕网" href="http://wwww.digu.com" target="_blank">嘀咕网</a>，拥有巨大客户群的腾讯<a id="h7e." title="滔滔" href="http://www.taotao.com" target="_blank">滔滔</a>，以及一些其他的小<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>服务等等，不知道是什么原因，这些<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>就在一夜之间被关闭了，就目前来看，<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>客在国内发展可谓一波三折，困难重重啊！我曾在<a id="s-h2" title="《微博在中国的曲折发展》" href="http://motian.org/2009/119/blog-deke-weibo.html" target="_blank">《微博在中国的曲折发展》</a>提到了新浪微博的加入，势必会对国内的微博服务起一定的推动作用，也可能新浪的加入才是中国微博服务发展的开始。为什么这样说：政治因素太大了。这在腾讯的滔滔上就体现出来的啦，腾讯的滔滔虽然没有避免被停止维护的命运，但是滔滔几天后网站就正常的运行，在看看现在的饭否、叽歪——系统正在维护中。所以说，对于微博这项服务，虽然未来还是充满了不确定性，但是我想只要互联网公司加大监管力度，我想政府不会闲的没事来叫停这项服务的。</div>
<div>对于微博这项服务我已经使用了好几家互联网公司的，但是我觉得还是嘀咕网的好，原因只有一个：插件丰富，只要在嘀咕网上留言，可以同步到目前主流的博客、微博客、空间、SNS等等一些个人展示的平台。比如，我把在迪科博客上发表的文章只要推到嘀咕网上，嘀咕网可以同步到我的<a id="zdza" title="QQ空间" href="http://848672322.qzone.qq.com/" target="_blank">QQ空间</a>、<a id="b_d2" title="人人网" href="http://renren.com/profile.do?id=237472395" target="_blank">人人网</a>、<a id="l93q" title="百度空间" href="http://www.baidu.com/cnmosky" target="_blank">百度空间</a>、<a id="fnie" title="新浪微博" href="http://t.sina.cn/cndeke" target="_blank">新浪微博</a>、<a id="cs0c" title="9911" href="http://www.9911.com/mosky" target="_blank">9911</a>、<a id="q15b" title="做啥" href="http://zuosa.com/mosky" target="_blank">做啥</a>、<a id="jwij" title="follow5" href="http://www.follow5.com/cndeke" target="_blank">follow5</a>。其实这也是一种博客推广的方式吧。</div>
<div>政策的不确定性仍然是达摩克利斯之剑，这也决定着政治性和社会性的微博客在中国缺少生存的土壤，剩下的只能做娱乐性质的微博，这也是我国互联网现阶段的特质。</div>
<div class="similarity"><h2>扩展阅读</h2><br /><ul><li><a href="http://motian.org/post/blog-deke-weibo-119.html">微博在中国的曲折发展</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibojiazhi-184.html">微型博客的价值</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-xinlangweibo-209.html">﻿新浪微博还是和Twitter无关！</a> (1.000)</li><li><a href="http://motian.org/post/diary-share%e2%80%94nowhere-246.html">国人开发的一个的微博客程序</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibo-wan-250.html">[转]谁才能玩得转微博？</a> (1.000)</li><li><a href="http://motian.org/post/xianguo-lianbo-362.html">迟来的鲜果联播</a> (1.000)</li><li><a href="http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html">微博客MicroBlog开源软件</a> (1.000)</li><li><a href="http://motian.org/post/diary-weibo-robots-448.html">微博生活，机器人帮我写</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-454.html">PHPSay-Mcrioblog很好很强大</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-140-456.html">修改PHPSay-Mcrioblog的字数限制</a> (1.000)</li></ul></div><!-- Tag --><hr />
<p>© 漠天 for <a href="http://motian.org">漠天博客</a>, 2009. |
<a href="http://motian.org/post/it-internet-digu-kaitong-162.html">永久链接</a> |
<a href="http://motian.org/post/it-internet-digu-kaitong-162.html#comments">15 comments</a> |标签: <a href="http://motian.org/tag/twitter" rel="tag">微博</a><br/>
<strong>收藏分享本文：</strong>
<a style="color:#333333;text-align:center;font-size:12px;" href="javascript:void((function(s,d,e){try{}catch(e){}var f='http://v.t.sina.com.cn/share/share.php?',u=d.location.href,p=['url=',e(u),'&title=',e(d.title),'&appkey=2924220432'].join('');function a(){if(!window.open([f,p].join(''),'mb',['toolbar=0,status=0,resizable=1,width=620,height=450,left=',(s.width-620)/2,',top=',(s.height-450)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/weibo.gif" alt="分享到新浪微博" border="0" height="16" width="16"/></a>

<a href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);location=%22http://zuosa.com/collect/Collect.aspx?t=%22+encodeURIComponent(t)+%22&u=%22+encodeURIComponent(u);void%200" title="你在做啥"><img src="http://img.motian.org/pic/wp/zuosa.gif"/></a>

<a title="转贴到校内人人网" href="javascript:void((function(s,d,e){if(/xiaonei\.com/.test(d.location))return;var%20f='http://share.xiaonei.com/share/buttonshare.do?link=',u=d.location,l=d.title,p=[e(u),'&title=',e(l)].join('');function%20a(){if(!window.open([f,p].join(''),'xnshare',['toolbar=0,status=0,resizable=1,width=626,height=436,left=',(s.width-626)/2,',top=',(s.height-436)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/renren.gif" alt="分享到校内人人网" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(kaixin=window.open('http://www.kaixin001.com/~repaste/repaste.php?&rurl='+escape(d.location.href)+'&rtitle='+escape(d.title)+'&rcontent='+escape(d.title),'kaixin'));kaixin.focus();" title="转贴到开心网"><img src="http://img.motian.org/pic/wp/kaixin.gif" alt="转贴到开心网" border="0"/></a>

<a href="javascript:void(function(){var%20d=document,e=encodeURIComponent,s1=window.getSelection,s2=d.getSelection,s3=d.selection,s=s1?s1():s2?s2():s3?s3.createRange().text:' ',r='http://www.douban.com/recommend/?url='+e(d.location.href)+'&title='+e(d.title)+'&sel='+e(s)+'&v=1',x=function(){if(!window.open(r,'douban','toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=330'))location.href=r+'&r=1'};if(/Firefox/.test(navigator.userAgent)){setTimeout(x,0)}else{x()}})()" title="推荐到豆瓣" rel="nofollow" ><img src="http://img.motian.org/pic/wp/douban.png" border="0" height="16" width="16"></a>

<a title="收藏到Google书签" href="javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open('http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+c(b.location)+'&title='+c(b.title),'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=420px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300)})();"><img src="http://img.motian.org/pic/wp/googlebookmark.png" alt="Google书签" border="0" height="16" width="16"/></a>

<a title="添加到QQ书签" href="javascript:window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)"><img src="http://img.motian.org/pic/wp/qq.png" alt="QQ书签" border="0" height="16" width="16"/></a>

<a title="添加到百度搜藏" href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);var url=%22http://cang.baidu.com/do/add?it=%22+encodeURIComponent(t)+%22&iu=%22+encodeURIComponent(u)+%22&dc=%22+encodeURIComponent(c)+%22&fr=ien#nw=1%22;window.open(url,'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');void 0"><img src="http://img.motian.org/pic/wp/baidu.gif" alt="百度搜藏" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&title='+escape(d.title)+'&url='+escape(d.location.href)+'&desc='+escape(t),'vivi','scrollbars=no,width=480,height=480,left=75,top=20,status=no,resizable=yes'));vivi.focus();" title="收藏到新浪ViVi"><img src="http://img.motian.org/pic/wp/vivi.gif" alt="Sina ViVi" border="0"/></a>

<a title="添加到雅虎收藏" onclick="window.open('http://myweb.cn.yahoo.com/popadd.html?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title), 'Yahoo','scrollbars=yes,width=440,height=440,left=80,top=80,status=yes,resizable=yes');" href="javascript:;" rel="nofollow"><img src="http://img.motian.org/pic/wp/yahoo.png" alt="yahoo收藏" border="0" height="16" width="16"/></a>

<a title="保存到del.icio.us美味书签" href="javascript:(function(){f='http://delicious.com/save?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(document.title)+'&v=5&';a=function(){if(!window.open(f+'noui=1&jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()"><img src="http://img.motian.org/pic/wp/delicious.gif" alt="Del.icio.us" border="0" height="16" width="16"/></a>

<a title="推荐到digg.com" href="javascript:location.href='http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)"><img src="http://img.motian.org/pic/wp/digg.gif" alt="digg" border="0"/></a>

<a href="javascript:void(location.href='https://twitter.com/home?status=Now%20reading%20<<'+encodeURIComponent(document.title)+'>>%20'+encodeURIComponent(location.href))" title="分享到 Twitter"><img src="http://img.motian.org/pic/wp/twitter.png" alt="分享到twitter"/></a>

 <br/>
<script type="text/javascript"><!--
google_ad_client = "pub-4498164283832126";
/* 468x60, 创建于 10-8-17 */
google_ad_slot = "2152552823";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>]]></content:encoded>
			<wfw:commentRss>http://motian.org/post/it-internet-digu-kaitong-162.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>微博在中国的曲折发展</title>
		<link>http://motian.org/post/blog-deke-weibo-119.html</link>
		<comments>http://motian.org/post/blog-deke-weibo-119.html#comments</comments>
		<pubDate>Wed, 07 Oct 2009 07:55:04 +0000</pubDate>
		<dc:creator>漠天</dc:creator>
				<category><![CDATA[IT观察室]]></category>
		<category><![CDATA[微博]]></category>

		<guid isPermaLink="false">http://motian.org/?p=119</guid>
		<description><![CDATA[       微型博客以其简短的语言，方便、快捷的写博方式受到了广大网友的青睐！不能不感叹：“twitter的伟大！”

       琐碎的生活记录下了一个人的内在心理世界，同时也让人们在互联网世界里，轻易地成为了朋友。

]]></description>
			<content:encoded><![CDATA[<p>       微型博客以其简短的语言，方便、快捷的写博方式受到了广大网友的青睐！不能不感叹：“twitter的伟大！”</p>
<blockquote><p>&#8211;what are you doing?</p>
<p>&#8211;I am ……</p></blockquote>
<p>       琐碎的生活记录下了一个人的内在心理世界，同时也让人们在互联网世界里，轻易地成为了朋友。</p>
<p>       在国内这个特殊的环境下，<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>发展很是艰难，从饭否，叽歪，<a title="做啥" href="http://zuosa.com" target="_blank">做啥</a>到嘀咕，<a title="滔滔" href="http://taotao.com" target="_blank">滔滔</a>再到现在的<a title="follow5" href="http://www.follow5.com" target="_blank">follow 5</a>，<a title="9911" href="http://www.9911.com" target="_blank">9911</a>，<a title="火兔" href="http://www.huotu.com" target="_blank">火兔</a>，还有现在比较火的<a title="新浪微博" href="http://t.sina.com.cn" target="_blank">新浪微博</a>,一路走来，我们比较熟悉的饭否和叽歪一直处于系统维护的状态，而前段时间以留言方式丰富多彩的嘀咕网让我们看到了<span class='wp_keywordlink_affiliate'><a href="http://motian.org/tag/twitter" title="查看 微博 的全部文章" target="_blank">微博</a></span>在中国发展的希望，但是没几天的时间就这样倒下了，感觉特可惜，真是命短啊。虽然现在的火兔将嘀咕的数据全部备份过去了，但是嘀咕被关闭的阴影仍然老在人们的心中，，而9911发展一般，follow5是刚刚出来的微博服务商，据说团队的开发能力表现一般，缺乏运营经验。腾讯的滔滔感觉是一只局限于自己的QQ用户，公司没有明确的发展规划，是一个不温不冷的一个产品，这很是服务QQ的性格，腾讯什么产品都沾边，但是除了QQ聊天、QQ空间、QQ游戏、QQ邮箱外，其他的产品都垃圾。所以现在的情况是：只有大的互联网才能支撑起微博这个看似渺小的服务的运营，为什么这样说呢？国家相信大的互联网公司能做到时时的监管工作，即使是出了事故，问责制直接找负责人！而对于小的开发团队来说，国家就不太好管理啦！其实腾讯的滔滔正说明了这点。当时滔滔只是停止了运营，但是不多久滔滔就又开始正常运营啦！</p>
<p>        新浪应该说是看到了时代的发展趋势，顺应了国内的网民，对于新浪毕竟是国内的最大互联网传媒之一，对于新浪的服务时毋庸置疑。大家放心的使用就行了。</p>
<p>       新浪推出了微博服务后，一旦大获成功。我想国内的其他的互联网公司也会不甘寂寞的，比如腾讯公司会重视滔滔的开发和运营，像搜狐、网易、百度可能会跟进，人人网、开心网等SNS社区会进一步开发“状态、心情”功能，比如加入微博的同步，评论功能加强。</p>
<p>      当然啦，新浪的微博出来啦，作为小小站长的我们，怎么能还无动于衷呢，赶快去注册一个账号吧！我们又多了以个网站推广的路子。以后我们也不用翻墙、辛辛苦苦的去twitter家唠叨了，在家就可以。在下一篇文章我将会介绍下：<a title="微博流量" href="http://motian.org/2009/120/blog-guali-weibo-liuliang.html" target="_blank">如何利用新浪的微博获取流量！</a></p>
<div class="similarity"><h2>扩展阅读</h2><br /><ul><li><a href="http://motian.org/post/it-internet-digu-kaitong-162.html">嘀咕网可以嘀咕啦</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibojiazhi-184.html">微型博客的价值</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-xinlangweibo-209.html">﻿新浪微博还是和Twitter无关！</a> (1.000)</li><li><a href="http://motian.org/post/diary-share%e2%80%94nowhere-246.html">国人开发的一个的微博客程序</a> (1.000)</li><li><a href="http://motian.org/post/it-twitter-weibo-wan-250.html">[转]谁才能玩得转微博？</a> (1.000)</li><li><a href="http://motian.org/post/xianguo-lianbo-362.html">迟来的鲜果联播</a> (1.000)</li><li><a href="http://motian.org/post/%e5%be%ae%e5%8d%9a%e5%ae%a2microblog%e5%bc%80%e6%ba%90%e8%bd%af%e4%bb%b6-418.html">微博客MicroBlog开源软件</a> (1.000)</li><li><a href="http://motian.org/post/diary-weibo-robots-448.html">微博生活，机器人帮我写</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-454.html">PHPSay-Mcrioblog很好很强大</a> (1.000)</li><li><a href="http://motian.org/post/diary-phpsay-mcrioblog-140-456.html">修改PHPSay-Mcrioblog的字数限制</a> (1.000)</li></ul></div><!-- Tag --><hr />
<p>© 漠天 for <a href="http://motian.org">漠天博客</a>, 2009. |
<a href="http://motian.org/post/blog-deke-weibo-119.html">永久链接</a> |
<a href="http://motian.org/post/blog-deke-weibo-119.html#comments">2 comments</a> |标签: <a href="http://motian.org/tag/twitter" rel="tag">微博</a><br/>
<strong>收藏分享本文：</strong>
<a style="color:#333333;text-align:center;font-size:12px;" href="javascript:void((function(s,d,e){try{}catch(e){}var f='http://v.t.sina.com.cn/share/share.php?',u=d.location.href,p=['url=',e(u),'&title=',e(d.title),'&appkey=2924220432'].join('');function a(){if(!window.open([f,p].join(''),'mb',['toolbar=0,status=0,resizable=1,width=620,height=450,left=',(s.width-620)/2,',top=',(s.height-450)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/weibo.gif" alt="分享到新浪微博" border="0" height="16" width="16"/></a>

<a href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);location=%22http://zuosa.com/collect/Collect.aspx?t=%22+encodeURIComponent(t)+%22&u=%22+encodeURIComponent(u);void%200" title="你在做啥"><img src="http://img.motian.org/pic/wp/zuosa.gif"/></a>

<a title="转贴到校内人人网" href="javascript:void((function(s,d,e){if(/xiaonei\.com/.test(d.location))return;var%20f='http://share.xiaonei.com/share/buttonshare.do?link=',u=d.location,l=d.title,p=[e(u),'&title=',e(l)].join('');function%20a(){if(!window.open([f,p].join(''),'xnshare',['toolbar=0,status=0,resizable=1,width=626,height=436,left=',(s.width-626)/2,',top=',(s.height-436)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();})(screen,document,encodeURIComponent));"><img src="http://img.motian.org/pic/wp/renren.gif" alt="分享到校内人人网" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(kaixin=window.open('http://www.kaixin001.com/~repaste/repaste.php?&rurl='+escape(d.location.href)+'&rtitle='+escape(d.title)+'&rcontent='+escape(d.title),'kaixin'));kaixin.focus();" title="转贴到开心网"><img src="http://img.motian.org/pic/wp/kaixin.gif" alt="转贴到开心网" border="0"/></a>

<a href="javascript:void(function(){var%20d=document,e=encodeURIComponent,s1=window.getSelection,s2=d.getSelection,s3=d.selection,s=s1?s1():s2?s2():s3?s3.createRange().text:' ',r='http://www.douban.com/recommend/?url='+e(d.location.href)+'&title='+e(d.title)+'&sel='+e(s)+'&v=1',x=function(){if(!window.open(r,'douban','toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=330'))location.href=r+'&r=1'};if(/Firefox/.test(navigator.userAgent)){setTimeout(x,0)}else{x()}})()" title="推荐到豆瓣" rel="nofollow" ><img src="http://img.motian.org/pic/wp/douban.png" border="0" height="16" width="16"></a>

<a title="收藏到Google书签" href="javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open('http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+c(b.location)+'&title='+c(b.title),'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=420px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300)})();"><img src="http://img.motian.org/pic/wp/googlebookmark.png" alt="Google书签" border="0" height="16" width="16"/></a>

<a title="添加到QQ书签" href="javascript:window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)"><img src="http://img.motian.org/pic/wp/qq.png" alt="QQ书签" border="0" height="16" width="16"/></a>

<a title="添加到百度搜藏" href="javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);var url=%22http://cang.baidu.com/do/add?it=%22+encodeURIComponent(t)+%22&iu=%22+encodeURIComponent(u)+%22&dc=%22+encodeURIComponent(c)+%22&fr=ien#nw=1%22;window.open(url,'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');void 0"><img src="http://img.motian.org/pic/wp/baidu.gif" alt="百度搜藏" border="0" height="16" width="16"/></a>

<a href="javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&title='+escape(d.title)+'&url='+escape(d.location.href)+'&desc='+escape(t),'vivi','scrollbars=no,width=480,height=480,left=75,top=20,status=no,resizable=yes'));vivi.focus();" title="收藏到新浪ViVi"><img src="http://img.motian.org/pic/wp/vivi.gif" alt="Sina ViVi" border="0"/></a>

<a title="添加到雅虎收藏" onclick="window.open('http://myweb.cn.yahoo.com/popadd.html?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title), 'Yahoo','scrollbars=yes,width=440,height=440,left=80,top=80,status=yes,resizable=yes');" href="javascript:;" rel="nofollow"><img src="http://img.motian.org/pic/wp/yahoo.png" alt="yahoo收藏" border="0" height="16" width="16"/></a>

<a title="保存到del.icio.us美味书签" href="javascript:(function(){f='http://delicious.com/save?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(document.title)+'&v=5&';a=function(){if(!window.open(f+'noui=1&jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()"><img src="http://img.motian.org/pic/wp/delicious.gif" alt="Del.icio.us" border="0" height="16" width="16"/></a>

<a title="推荐到digg.com" href="javascript:location.href='http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)"><img src="http://img.motian.org/pic/wp/digg.gif" alt="digg" border="0"/></a>

<a href="javascript:void(location.href='https://twitter.com/home?status=Now%20reading%20<<'+encodeURIComponent(document.title)+'>>%20'+encodeURIComponent(location.href))" title="分享到 Twitter"><img src="http://img.motian.org/pic/wp/twitter.png" alt="分享到twitter"/></a>

 <br/>
<script type="text/javascript"><!--
google_ad_client = "pub-4498164283832126";
/* 468x60, 创建于 10-8-17 */
google_ad_slot = "2152552823";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>]]></content:encoded>
			<wfw:commentRss>http://motian.org/post/blog-deke-weibo-119.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
