<?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; Twitter &amp; Microblog</title>
	<atom:link href="http://www.syncoo.com/category/topics/twitter-microblog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.syncoo.com</link>
	<description>轻松同步，便携移动。Sync different.</description>
	<lastBuildDate>Thu, 09 Feb 2012 07:42:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>利用 PHP 和 Follow5 同步腾讯微博</title>
		<link>http://www.syncoo.com/php-follow5-tencent-mblog.htm</link>
		<comments>http://www.syncoo.com/php-follow5-tencent-mblog.htm#comments</comments>
		<pubDate>Sun, 05 Sep 2010 02:30:34 +0000</pubDate>
		<dc:creator>XDash</dc:creator>
				<category><![CDATA[Twitter & Microblog]]></category>
		<category><![CDATA[网络同步]]></category>
		<category><![CDATA[follow5]]></category>
		<category><![CDATA[microblog]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[源代码]]></category>
		<category><![CDATA[腾讯微博]]></category>

		<guid isPermaLink="false">http://www.syncoo.com/?p=3258</guid>
		<description><![CDATA[如果你是个微博同步控，这篇文章可以助你一臂之力。首先 Follow5 可以用来同步几乎所有微博，不过大名鼎鼎的腾讯微博不可以，那么本文就此应运而生。编程语言用的PHP，运行在开启了 curl 的 PHP 服务器上，所以首先要确定你的服务器开启了 curl。本段代码主要是实现发微博到 Follow5 和腾讯微博，利用 Follow5 的五步大同功能，就不必再发其它微博上了。
本文主要参考了三篇文章：腾讯微博API，同步消息到腾讯微博，发布一个Follow5的API PHP类 。因此如果你对本文有任何不理解的地方，可以详细阅读以上文章。
闲话少说，发表微博到 Follow5，你还得需要一个 Follow5 的 key，在这里我要表扬 Follow5 办事效率高，一个晚上就将 key 发给我了，太高兴了。以下就是代码，如果因为代码损害了原博主，还请告知。本文对 PHP 和 python 一窍不通，所以几乎都是啃大家的代码然后加以组合。
&#60;?php
if ($_POST['status']) {
 $status = $_POST['status'];
 update_follow5('username', 'password', $status);

 //此处的username是你的腾讯微博用户名，而不是你的Q号码
 update_qq('username', 'password', $status);    

 //跳回到发表微博的界面
 header("location: xxxxx.html");
}

function update_follow5($username, $password, $status){
 //这个api_key需要自己去向Follow5申请
 $api_key = 'xxxxxxxxxxxxxxxx';
 $usr = $username.':'.$password;
 $str = 'status='.urlencode(stripslashes($status)).'&#38;api_key='.$api_key;
 $url = 'http://api.follow5.com/api/statuses/update.xml';

 postCurl($url, $usr, $str);
}

//此处代码参考http://www.js8.in/349.html
function postCurl($url, $usr, $str) {
 $ch = curl_init($url);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($ch, CURLOPT_POST, 1);        
 curl_setopt($ch, CURLOPT_USERPWD, $usr);
 curl_setopt($ch, CURLOPT_POSTFIELDS, $str);
 $data = curl_exec($ch);
 $Headers = curl_getinfo($ch);
 if ($Headers['http_code'] == 200) {
 return $data;
 } else {
 if ($Headers['http_code'] == 401) {
 echo 'Username and or password not [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="LBS的未来和腾讯微博" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F59433.html&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/05/24/8609084.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">LBS的未来和腾讯微博 (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="腾讯微博新增在线聊天功能" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F59308.html&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/05/09/8061860.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">腾讯微博新增在线聊天功能 (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Follow5 全新改版，新增微博双向同步和时间轴视图（图）" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ffollow5-2011.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/25/25026431.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Follow5 全新改版，新增微博双向同步和时间轴视图（图）</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="腾讯微博邀请码五枚" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite-2120.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/03/27454606.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">腾讯微博邀请码五枚</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="围着脖子推 V1.0beta – 同步更新Twitter与新浪微博" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fsync-twittersina-593.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2332604.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">围着脖子推 V1.0beta – 同步更新Twitter与新浪微博</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>如果你是个微博同步控，这篇文章可以助你一臂之力。首先 Follow5 可以用来同步几乎所有微博，不过大名鼎鼎的腾讯微博不可以，那么本文就此应运而生。编程语言用的PHP，运行在开启了 curl 的 PHP 服务器上，所以首先要确定你的服务器开启了 curl。本段代码主要是实现发微博到 Follow5 和腾讯微博，利用 Follow5 的五步大同功能，就不必再发其它微博上了。</p>
<p>本文主要参考了三篇文章：<a href="http://www.ineeke.com/archives/tencent-microblog-api/" target="_blank">腾讯微博API</a>，<a href="http://isouth.org/archives/279.html">同步消息到腾讯微博</a>，<a href="http://www.js8.in/349.html">发布一个Follow5的API PHP类</a> 。因此如果你对本文有任何不理解的地方，可以详细阅读以上文章。</p>
<p><span id="more-3258"></span>闲话少说，发表微博到 Follow5，你还得需要一个 Follow5 的 key，在这里我要表扬 Follow5 办事效率高，一个晚上就将 key 发给我了，太高兴了。以下就是代码，如果因为代码损害了原博主，还请告知。本文对 PHP 和 python 一窍不通，所以几乎都是啃大家的代码然后加以组合。</p>
<pre lang="php" escaped="true">&lt;?php
if ($_POST['status']) {
 $status = $_POST['status'];
 update_follow5('username', 'password', $status);

 //此处的username是你的腾讯微博用户名，而不是你的Q号码
 update_qq('username', 'password', $status);    

 //跳回到发表微博的界面
 header("location: xxxxx.html");
}

function update_follow5($username, $password, $status){
 //这个api_key需要自己去向Follow5申请
 $api_key = 'xxxxxxxxxxxxxxxx';
 $usr = $username.':'.$password;
 $str = 'status='.urlencode(stripslashes($status)).'&amp;api_key='.$api_key;
 $url = 'http://api.follow5.com/api/statuses/update.xml';

 postCurl($url, $usr, $str);
}

//此处代码参考http://www.js8.in/349.html
function postCurl($url, $usr, $str) {
 $ch = curl_init($url);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($ch, CURLOPT_POST, 1);        
 curl_setopt($ch, CURLOPT_USERPWD, $usr);
 curl_setopt($ch, CURLOPT_POSTFIELDS, $str);
 $data = curl_exec($ch);
 $Headers = curl_getinfo($ch);
 if ($Headers['http_code'] == 200) {
 return $data;
 } else {
 if ($Headers['http_code'] == 401) {
 echo 'Username and or password not set,or api key is wrong';
 } elseif ($Headers['http_code'] == 404) {
 echo 'Invalud URL for CURL request';
 }
 }
}

function update_qq($qq, $password, $content){
 //省却代码无数，补充代码请参看http://www.ineeke.com/archives/tencent-microblog-api/

 //增加这第五次是用来发表腾讯微博的
 //改装来自于http://isouth.org/archives/279.html
 $fields = 'content='.$content.'&amp;countType=&amp;pic=&amp;viewModel=0';
 $referer_url='http://t.qq.com/oooooooooooooooooooooooo';
 $url='http://t.qq.com/publish.php';
 $curl = curl_init();
 curl_setopt($curl, CURLOPT_REFERER, $referer_url);
 curl_setopt($curl, CURLOPT_URL, $url);
 curl_setopt($curl, CURLOPT_POST, 1); 
 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($curl, CURLOPT_POSTFIELDS, $fields);
 curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie_jar);
 curl_setopt($curl, CURLOPT_COOKIEFILE, $cookie_jar);
 curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie_jar);
 $loginResult = curl_exec($curl);
 curl_close($curl);

unlink($cookie_jar);
}
?&gt;</pre>
<p>据说腾讯的登录有时会出问题的，所以如果在使用过程出现问题，还请能安心对之，不过我现在还没出过什么问题，可能测试次数少的缘故吧。更多知识还请去上面提到的三位博主的博客吧，他们才是真正的牛人。</p>
<p>本文转载自<a href="http://wangliping.net/">转烛空间</a>，原文地址：<a href="http://wangliping.net/sync-weibo">http://wangliping.net/sync-weibo</a>。</p>
<p><code> </code></p>
<div><script language="javascript" type="text/javascript" src="http://js.users.51.la/2894225.js"></script></div><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="LBS的未来和腾讯微博" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F59433.html&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/05/24/8609084.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">LBS的未来和腾讯微博 (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="腾讯微博新增在线聊天功能" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F59308.html&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/05/09/8061860.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">腾讯微博新增在线聊天功能 (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Follow5 全新改版，新增微博双向同步和时间轴视图（图）" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ffollow5-2011.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/25/25026431.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Follow5 全新改版，新增微博双向同步和时间轴视图（图）</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="腾讯微博邀请码五枚" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite-2120.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/03/27454606.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">腾讯微博邀请码五枚</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="围着脖子推 V1.0beta – 同步更新Twitter与新浪微博" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fsync-twittersina-593.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2332604.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">围着脖子推 V1.0beta – 同步更新Twitter与新浪微博</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.syncoo.com/php-follow5-tencent-mblog.htm/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>腾讯微博邀请码五枚</title>
		<link>http://www.syncoo.com/tencent-microblog-invite.htm</link>
		<comments>http://www.syncoo.com/tencent-microblog-invite.htm#comments</comments>
		<pubDate>Fri, 14 May 2010 09:35:42 +0000</pubDate>
		<dc:creator>XDash</dc:creator>
				<category><![CDATA[Twitter & Microblog]]></category>
		<category><![CDATA[微博]]></category>
		<category><![CDATA[腾讯]]></category>
		<category><![CDATA[邀请码]]></category>

		<guid isPermaLink="false">http://www.syncoo.com/?p=2120</guid>
		<description><![CDATA[
http://t.qq.com/invite/9fd45b713a2dfd652473
http://t.qq.com/invite/03bea071661331da41c5
http://t.qq.com/invite/f38082a60c3b5bfeafad
http://t.qq.com/invite/07069fc766d23cbd8b85
http://t.qq.com/invite/c8fe0e4d780c86bcce95

自行取用，先到先得。
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="LBS的未来和腾讯微博" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F59433.html&from=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/05/24/8609084.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">LBS的未来和腾讯微博 (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="腾讯微博新增在线聊天功能" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F59308.html&from=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/05/09/8061860.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">腾讯微博新增在线聊天功能 (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="围着脖子推 V1.0beta – 同步更新Twitter与新浪微博" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fsync-twittersina-593.htm&from=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2332604.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">围着脖子推 V1.0beta – 同步更新Twitter与新浪微博</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="利用 PHP 和 Follow5 同步腾讯微博" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm&from=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/03/27454606.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">利用 PHP 和 Follow5 同步腾讯微博</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="利用Ubiquity同步twitter及国内微博客" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fubiquity-sync-twitter-600.htm&from=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2288151.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">利用Ubiquity同步twitter及国内微博客</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://t.qq.com/invite/9fd45b713a2dfd652473" target="_blank">http://t.qq.com/invite/9fd45b713a2dfd652473</a></li>
<li><a href="http://t.qq.com/invite/03bea071661331da41c5" target="_blank">http://t.qq.com/invite/03bea071661331da41c5</a></li>
<li><a href="http://t.qq.com/invite/f38082a60c3b5bfeafad" target="_blank">http://t.qq.com/invite/f38082a60c3b5bfeafad</a></li>
<li><a href="http://t.qq.com/invite/07069fc766d23cbd8b85" target="_blank">http://t.qq.com/invite/07069fc766d23cbd8b85</a></li>
<li><a href="http://t.qq.com/invite/c8fe0e4d780c86bcce95" target="_blank">http://t.qq.com/invite/c8fe0e4d780c86bcce95</a></li>
</ul>
<p>自行取用，先到先得。</p>
<div><script language="javascript" type="text/javascript" src="http://js.users.51.la/2894225.js"></script></div><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="LBS的未来和腾讯微博" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F59433.html&from=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/05/24/8609084.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">LBS的未来和腾讯微博 (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="腾讯微博新增在线聊天功能" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F59308.html&from=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/05/09/8061860.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">腾讯微博新增在线聊天功能 (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="围着脖子推 V1.0beta – 同步更新Twitter与新浪微博" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fsync-twittersina-593.htm&from=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2332604.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">围着脖子推 V1.0beta – 同步更新Twitter与新浪微博</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="利用 PHP 和 Follow5 同步腾讯微博" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm&from=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/03/27454606.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">利用 PHP 和 Follow5 同步腾讯微博</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="利用Ubiquity同步twitter及国内微博客" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fubiquity-sync-twitter-600.htm&from=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2288151.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">利用Ubiquity同步twitter及国内微博客</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.syncoo.com/tencent-microblog-invite.htm/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>苍井空上Twitter了+同步控Twitter相关内容推荐</title>
		<link>http://www.syncoo.com/how-to-login-twitter.htm</link>
		<comments>http://www.syncoo.com/how-to-login-twitter.htm#comments</comments>
		<pubDate>Mon, 12 Apr 2010 05:26:13 +0000</pubDate>
		<dc:creator>XDash</dc:creator>
				<category><![CDATA[Twitter & Microblog]]></category>
		<category><![CDATA[网络同步]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[整理]]></category>
		<category><![CDATA[汇总]]></category>
		<category><![CDATA[苍井空]]></category>

		<guid isPermaLink="false">http://www.syncoo.com/?p=1931</guid>
		<description><![CDATA[前一阵子有朋友建议，将同步控上有关Twitter的登录方法和使用技巧进行汇总，以方便广大新手。恰逢昨天苍井空老师上了Twitter（@aoi_sola），中文推特圈的同志们是奔走相告，使得苍井老师的人气从2000多迅速攀升上了14000+。

对此月光的评论是：1、微博的名人效应强大。2、另类名人效应更强，3、中文Twitter圈的活跃用户应该在2万人以上。4、Twitter用户喜欢意淫。5、国内微博也可借鉴这一传播效应。
这两天同步控的群里也在热闹这个事儿。总的说来，苍井老师的这一行为起到了如下积极作用：1、推动了全民爬X运动。2、促进了中日文化交流，群里同志们开始共享日文翻译工具。3、增进了群里战友的革命情感。
借此契机，我将同步控以往一些个人推荐的Twitter工具和技巧精选推荐在此。取用自便。我的Twitter：@xdash。

《全新思路，不改hosts，照样简单轻松用twhirl上Twitter》
《OneKeyHost &#8211; 一键穿X访问国外常用网站》
《Buzz Can Tweet – 将Buzz 信息自动同步到Twitter》
《利用Ubiquity同步twitter及国内微博客》
《FeedBurner新增同步RSS更新提醒到Twitter功能》
《LinkedIn增加Twitter状态同步功能》
《围着脖子推V1.0beta – 同步更新Twitter与新浪微博》

<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Twitter变更内容审查机制 按照不同国家过滤内容" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F70042.html&from=http%3A%2F%2Fwww.syncoo.com%2Fhow-to-login-twitter.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/01/28/14414438.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Twitter变更内容审查机制 按照不同国家过滤内容 (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Twitter：更像新闻媒体而不是社会网络" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.socialbeta.cn%2Farticles%2Ftwitter_newsoutlet.html&from=http%3A%2F%2Fwww.syncoo.com%2Fhow-to-login-twitter.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2010/11/24/1066592.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Twitter：更像新闻媒体而不是社会网络 (@socialbeta)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="FeedBurner新增同步RSS更新提醒到Twitter功能" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ffeedburner-sync-twitter-1190.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fhow-to-login-twitter.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/27/2424287.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">FeedBurner新增同步RSS更新提醒到Twitter功能</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="【新品发布】Reader2Twitter：同步发布 GR 分享至 Twitter" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Freader2twitter-3313.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fhow-to-login-twitter.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/07/11323078.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【新品发布】Reader2Twitter：同步发布 GR 分享至 Twitter</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="利用Ubiquity同步twitter及国内微博客" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fubiquity-sync-twitter-600.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fhow-to-login-twitter.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2288151.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">利用Ubiquity同步twitter及国内微博客</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>前一阵子有朋友建议，将<a href="http://www.syncoo.com" target="_blank">同步控</a>上有关Twitter的登录方法和使用技巧进行汇总，以方便广大新手。恰逢昨天苍井空老师上了Twitter（<a href="http://twitter.com/aoi_sola" target="_blank">@aoi_sola</a>），中文推特圈的同志们是奔走相告，使得苍井老师的人气从2000多迅速攀升上了14000+。</p>
<p><a href="http://www.syncoo.com/wp-content/uploads/2010/04/苍井空.jpg" rel="lightbox[1931]"><img class="alignnone size-full wp-image-1937" style="border: 1px solid #eeeeee;" title="苍井空@twitter" src="http://www.syncoo.com/wp-content/uploads/2010/04/苍井空.jpg" alt="" width="270" height="255" /></a></p>
<p>对此<a href="http://www.williamlong.info/blog/archives/421.html" target="_blank">月光的评论</a>是：1、微博的名人效应强大。2、另类名人效应更强，3、中文Twitter圈的活跃用户应该在2万人以上。4、Twitter用户喜欢意淫。5、国内微博也可借鉴这一传播效应。</p>
<p>这两天同步控的群里也在热闹这个事儿。总的说来，苍井老师的这一行为起到了如下积极作用：1、推动了全民爬X运动。2、促进了中日文化交流，群里同志们开始共享日文翻译工具。3、增进了群里战友的革命情感。</p>
<p>借此契机，我将同步控以往一些个人推荐的Twitter工具和技巧精选推荐在此。取用自便。我的Twitter：<a href="http://twitter.com/xdash" target="_blank">@xdash</a>。</p>
<ul>
<li><a href="http://www.syncoo.com/laconica-to-twhirl-1400.htm" target="_blank">《全新思路，不改hosts，照样简单轻松用twhirl上Twitter》</a></li>
<li><a href="http://www.syncoo.com/onekeyhost-461.htm/comment-page-1" target="_blank">《OneKeyHost &#8211; 一键穿X访问国外常用网站》</a></li>
<li><a href="http://www.syncoo.com/buzzcantweet-1627.htm" target="_blank">《Buzz Can Tweet – 将Buzz 信息自动同步到Twitter》</a></li>
<li><a href="http://www.syncoo.com/ubiquity-sync-twitter-600.htm" target="_blank">《利用Ubiquity同步twitter及国内微博客》</a></li>
<li><a href="http://www.syncoo.com/feedburner-sync-twitter-1190.htm" target="_blank">《FeedBurner新增同步RSS更新提醒到Twitter功能》</a></li>
<li><a href="http://www.syncoo.com/linkedin-add-twitter-1020.htm" target="_blank">《LinkedIn增加Twitter状态同步功能》</a></li>
<li><a href="http://www.syncoo.com/sync-twittersina-593.htm" target="_blank">《围着脖子推V1.0beta – 同步更新Twitter与新浪微博》</a></li>
</ul>
<div><script language="javascript" type="text/javascript" src="http://js.users.51.la/2894225.js"></script></div><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Twitter变更内容审查机制 按照不同国家过滤内容" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F70042.html&from=http%3A%2F%2Fwww.syncoo.com%2Fhow-to-login-twitter.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/01/28/14414438.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Twitter变更内容审查机制 按照不同国家过滤内容 (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Twitter：更像新闻媒体而不是社会网络" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.socialbeta.cn%2Farticles%2Ftwitter_newsoutlet.html&from=http%3A%2F%2Fwww.syncoo.com%2Fhow-to-login-twitter.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2010/11/24/1066592.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Twitter：更像新闻媒体而不是社会网络 (@socialbeta)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="FeedBurner新增同步RSS更新提醒到Twitter功能" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ffeedburner-sync-twitter-1190.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fhow-to-login-twitter.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/27/2424287.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">FeedBurner新增同步RSS更新提醒到Twitter功能</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="【新品发布】Reader2Twitter：同步发布 GR 分享至 Twitter" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Freader2twitter-3313.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fhow-to-login-twitter.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/07/11323078.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【新品发布】Reader2Twitter：同步发布 GR 分享至 Twitter</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="利用Ubiquity同步twitter及国内微博客" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fubiquity-sync-twitter-600.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fhow-to-login-twitter.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2288151.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">利用Ubiquity同步twitter及国内微博客</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.syncoo.com/how-to-login-twitter.htm/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>一个同步控的LifeStream</title>
		<link>http://www.syncoo.com/sync-fan-lifestream.htm</link>
		<comments>http://www.syncoo.com/sync-fan-lifestream.htm#comments</comments>
		<pubDate>Sat, 27 Mar 2010 05:53:00 +0000</pubDate>
		<dc:creator>XDash</dc:creator>
				<category><![CDATA[Twitter & Microblog]]></category>
		<category><![CDATA[网络同步]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[同步]]></category>
		<category><![CDATA[围脖]]></category>
		<category><![CDATA[微博客]]></category>

		<guid isPermaLink="false">http://www.syncoo.com/?p=1831</guid>
		<description><![CDATA[前一阵子有推友在 Twitter 上称，自己非常厌烦“同步控一族”在同步微博客上的所作所为，不单制造了大量垃圾信息，更将有用信息淹没在资讯的海洋中，难以打捞。随后网友纷纷表示认同。微博客同步一族被推到了风口浪尖。

其实过去我也试图进行类似的同步，并尝试了很多工具。但现在看来，很多同步并无必要，因为：

你自身是否具有网络影响力，并不取决于你发送信息的数量，而在于其转化率、价值和你本人线下的影响力。
过多进行同步，稍有不慎容易造成信息的循环同步，给他人带来很大困扰。
接力同步过程中，某些同步网站为了给消息留下自己的“烙印”，往往会采用一些手段，例如自己的短地址、加入前后缀等，使信息变异，丧失了原本的模样。
某些微博客自身会产生不具有信息价值的垃圾内容，比如follow了谁，修改了什么资料，获得了什么奖励等。这些信息自己留着看就好，同步出去就是噪音。

当然，同步也有其自身的独特功能，例如备份信息等。安全妥善的方法是在X内和X外各设置至少一个主力微博客，将信息双向同步。这样，无论是前者遭盾还是后者遭X，至少保证你的信息还能找回，不至于像饭否挂掉那样瞬间损失了很多有用的网上印记。
据说某饭友一直热切期待的饭否回归的那天，因为他在饭否认识了一位女孩，某日正欲表白，然后就没有然后了……
标题via 该网友以FriendFeed为中心，将各条微博线路最终同步到个人生活流聚合上。另外如果您使用WordPress，我推荐 WordPress LifeStream 插件，直接将个人网络信息聚合在本人的博客页面上（但目前仅支持大部分国外服务）。演示效果。
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Dipity2.0:基于时间轴的Lifestreaming后媒体服务" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.showeb20.com%2F%3Fp%3D1140&from=http%3A%2F%2Fwww.syncoo.com%2Fsync-fan-lifestream.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/389473.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Dipity2.0:基于时间轴的Lifestreaming后媒体服务 (@showeb20)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Lifestream.fm:社会性媒体聚合服务" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.showeb20.com%2F%3Fp%3D978&from=http%3A%2F%2Fwww.syncoo.com%2Fsync-fan-lifestream.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/389765.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Lifestream.fm:社会性媒体聚合服务 (@showeb20)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="嘀咕回来了！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fdigu-is-back-829.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fsync-fan-lifestream.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2298340.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">嘀咕回来了！</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="【抢鲜曝光】iPad + 智能机 + 绿色版？透露一些快盘的内部开发消息（5P）" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fkuaipan-news-3182.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fsync-fan-lifestream.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/02/27/2984383.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【抢鲜曝光】iPad + 智能机 + 绿色版？透露一些快盘的内部开发消息（5P）</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="黑莓 BIS 3.0 将可同步 Gmail 邮件" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fblackberry-bis-3-sync-gmail-1528.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fsync-fan-lifestream.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2324548.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">黑莓 BIS 3.0 将可同步 Gmail 邮件</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>前一阵子有推友在 Twitter 上称，自己非常厌烦“同步控一族”在同步微博客上的所作所为，不单制造了大量垃圾信息，更将有用信息淹没在资讯的海洋中，难以打捞。随后网友纷纷表示认同。微博客同步一族被推到了风口浪尖。</p>
<p><img class="alignnone size-full wp-image-1833" title="Microblog Sync Stream" src="http://www.syncoo.com/wp-content/uploads/2010/03/in.png" alt="Microblog Sync Stream" width="472" height="333" /></p>
<p>其实过去我也试图进行类似的同步，并尝试了很多工具。但现在看来，很多同步并无必要，因为：</p>
<ul>
<li>你自身是否具有网络影响力，并不取决于你发送信息的数量，而在于其转化率、价值和你本人线下的影响力。</li>
<li>过多进行同步，稍有不慎容易造成信息的循环同步，给他人带来很大困扰。</li>
<li>接力同步过程中，某些同步网站为了给消息留下自己的“烙印”，往往会采用一些手段，例如自己的短地址、加入前后缀等，使信息变异，丧失了原本的模样。</li>
<li>某些微博客自身会产生不具有信息价值的垃圾内容，比如follow了谁，修改了什么资料，获得了什么奖励等。这些信息自己留着看就好，同步出去就是噪音。</li>
</ul>
<p>当然，同步也有其自身的独特功能，例如备份信息等。安全妥善的方法是在X内和X外各设置至少一个主力微博客，将信息双向同步。这样，无论是前者遭盾还是后者遭X，至少保证你的信息还能找回，不至于像饭否挂掉那样瞬间损失了很多有用的网上印记。</p>
<p>据说某饭友一直热切期待的饭否回归的那天，因为他在饭否认识了一位女孩，某日正欲表白，然后就没有然后了……</p>
<p><a href="http://yefoenix.cz.cc/2010-03/yefoenix-lifestream" target="_blank">标题via</a> 该网友以FriendFeed为中心，将各条微博线路最终同步到个人生活流聚合上。另外如果您使用<span class='wp_keywordlink'><a href="http://www.google.com/cse?cx=002932912210142450661:efmukwgiae8&ie=UTF-8&q=wordpress&sa=%E6%90%9C%E7%B4%A2" title="WordPress" target="_blank">WordPress</a></span>，我推荐 <a href="http://wordpress.org/extend/plugins/lifestream/" target="_blank">WordPress LifeStream</a> 插件，直接将个人网络信息聚合在本人的博客页面上（但目前仅支持大部分国外服务）。<a href="http://www.fanbing.net/lifestream" target="_blank">演示效果</a>。</p>
<div><script language="javascript" type="text/javascript" src="http://js.users.51.la/2894225.js"></script></div><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Dipity2.0:基于时间轴的Lifestreaming后媒体服务" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.showeb20.com%2F%3Fp%3D1140&from=http%3A%2F%2Fwww.syncoo.com%2Fsync-fan-lifestream.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/389473.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Dipity2.0:基于时间轴的Lifestreaming后媒体服务 (@showeb20)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Lifestream.fm:社会性媒体聚合服务" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.showeb20.com%2F%3Fp%3D978&from=http%3A%2F%2Fwww.syncoo.com%2Fsync-fan-lifestream.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/389765.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Lifestream.fm:社会性媒体聚合服务 (@showeb20)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="驱动精灵在线版1.0 Beta" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fmydriver-online.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fsync-fan-lifestream.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/25/2398597.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">驱动精灵在线版1.0 Beta</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="【延期公告】数据银行（DBank）送Q币活动延期一周，参与从速" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fdbank-activity-postpone-2525.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fsync-fan-lifestream.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/03/27454606.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【延期公告】数据银行（DBank）送Q币活动延期一周，参与从速</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="如何在节假日使用同步工具？" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fsync-in-holidays.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fsync-fan-lifestream.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2330070.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">如何在节假日使用同步工具？</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.syncoo.com/sync-fan-lifestream.htm/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>围着脖子推GTalk机器人V1.0版开放源代码</title>
		<link>http://www.syncoo.com/twitter-sina-gtalk-robot-opensource.htm</link>
		<comments>http://www.syncoo.com/twitter-sina-gtalk-robot-opensource.htm#comments</comments>
		<pubDate>Fri, 29 Jan 2010 11:45:31 +0000</pubDate>
		<dc:creator>XDash</dc:creator>
				<category><![CDATA[Twitter & Microblog]]></category>
		<category><![CDATA[网络同步]]></category>
		<category><![CDATA[gtalk]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[围着脖子推]]></category>
		<category><![CDATA[围脖]]></category>
		<category><![CDATA[开源]]></category>

		<guid isPermaLink="false">http://www.syncoo.com/?p=1467</guid>
		<description><![CDATA[同步控曾经多次介绍的Twitter-新浪微博同步工具——围着脖子推，近日在作者博客发布了开放源代码的消息。以下是作者原文：
围着脖子推GTalk机器人作为围着脖子推项目的分支，也走上了开源的路线，并同样使用Apache License 2.0协议。
围着脖子推在GoogleCode上的地址是：http://twitterSina.googlecode.com
围着脖子推GTalk机器人分支项目名是：gtalkRobot
源代码SVN地址是：http://twittersina.googlecode.com/svn/branches/gtalkRobot
大家可以去GoogleCode上直接下载打包好的源代码文件，也可以使用SVN工具自行获取源代码。该源代码只包括GTalk机器人版，不包括网页版。
已经有网友下载网页版的代码后自己架设围着脖子推了，GTalk机器人版开源后，大家使用这个小工具又多了一种选择。
同时，此次开源也希望与更多的网友交流和学习。
# 围着脖子推作者博客：http://blog.stevenwang.name/
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="简单好用的照片处理软件 – 可牛影像v1.0beta" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F2813.html&from=http%3A%2F%2Fwww.syncoo.com%2Ftwitter-sina-gtalk-robot-opensource.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/08/5251213.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">简单好用的照片处理软件 – 可牛影像v1.0beta (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="NPMserv v0.3.1发布下载(win下nginx+php+mysql)" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F9476.html&from=http%3A%2F%2Fwww.syncoo.com%2Ftwitter-sina-gtalk-robot-opensource.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">NPMserv v0.3.1发布下载(win下nginx+php+mysql) (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="围着脖子推GTalk机器人V1.0发布" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ftwitter-sina-gtalk-robot-1284.htm&from=http%3A%2F%2Fwww.syncoo.com%2Ftwitter-sina-gtalk-robot-opensource.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/03/27454606.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">围着脖子推GTalk机器人V1.0发布</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Toodledo V1.5.3 中文汉化版下载 for iPhone &amp; iTouch" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ftoodledo-v153-for-iphone-itouch.htm&from=http%3A%2F%2Fwww.syncoo.com%2Ftwitter-sina-gtalk-robot-opensource.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/26/14524918.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Toodledo V1.5.3 中文汉化版下载 for iPhone &amp; iTouch</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Dropbox免费网络文件同步工具v1.0.1破解版 for iPhone" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fdropbox-v101-cr-for-iphone.htm&from=http%3A%2F%2Fwww.syncoo.com%2Ftwitter-sina-gtalk-robot-opensource.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/01/26726352.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Dropbox免费网络文件同步工具v1.0.1破解版 for iPhone</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.syncoo.com" target="_blank">同步控</a>曾经多次介绍的Twitter-新浪微博同步工具——<a href="http://www.google.com/cse?cx=002932912210142450661:efmukwgiae8&amp;ie=UTF-8&amp;q=%E5%9B%B4%E7%9D%80%E8%84%96%E5%AD%90%E6%8E%A8&amp;sa=%E6%90%9C%E7%B4%A2" target="_blank">围着脖子推</a>，近日<a href="http://blog.stevenwang.name/twittersinagtalkrobot-v1.0-gae-opensource-37004.html" target="_blank">在作者博客发布了开放源代码的消息</a>。以下是作者原文：</p>
<p>围着脖子推GTalk机器人作为围着脖子推项目的分支，也走上了开源的路线，并同样使用Apache License 2.0协议。</p>
<p>围着脖子推在GoogleCode上的地址是：<a href="http://twittersina.googlecode.com/" target="_blank">http://twitterSina.googlecode.com</a></p>
<p>围着脖子推GTalk机器人分支项目名是：gtalkRobot</p>
<p>源代码SVN地址是：<a href="http://twittersina.googlecode.com/svn/branches/gtalkRobot" target="_blank">http://twittersina.googlecode.com/svn/branches/gtalkRobot</a></p>
<p>大家可以去GoogleCode上直接下载打包好的源代码文件，也可以使用SVN工具自行获取源代码。该源代码只包括GTalk机器人版，不包括网页版。</p>
<p>已经有网友下载网页版的代码后自己架设围着脖子推了，GTalk机器人版开源后，大家使用这个小工具又多了一种选择。</p>
<p>同时，此次开源也希望与更多的网友交流和学习。</p>
<p># 围着脖子推作者博客：<a href="http://blog.stevenwang.name/">http://blog.stevenwang.name/</a></p>
<div><script language="javascript" type="text/javascript" src="http://js.users.51.la/2894225.js"></script></div><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="简单好用的照片处理软件 – 可牛影像v1.0beta" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F2813.html&from=http%3A%2F%2Fwww.syncoo.com%2Ftwitter-sina-gtalk-robot-opensource.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/08/5251213.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">简单好用的照片处理软件 – 可牛影像v1.0beta (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="NPMserv v0.3.1发布下载(win下nginx+php+mysql)" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.alibuybuy.com%2Fposts%2F9476.html&from=http%3A%2F%2Fwww.syncoo.com%2Ftwitter-sina-gtalk-robot-opensource.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">NPMserv v0.3.1发布下载(win下nginx+php+mysql) (@alibuybuy)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="围着脖子推GTalk机器人V1.0发布" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ftwitter-sina-gtalk-robot-1284.htm&from=http%3A%2F%2Fwww.syncoo.com%2Ftwitter-sina-gtalk-robot-opensource.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/03/27454606.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">围着脖子推GTalk机器人V1.0发布</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Toodledo V1.5.3 中文汉化版下载 for iPhone &amp; iTouch" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ftoodledo-v153-for-iphone-itouch.htm&from=http%3A%2F%2Fwww.syncoo.com%2Ftwitter-sina-gtalk-robot-opensource.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/26/14524918.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Toodledo V1.5.3 中文汉化版下载 for iPhone &amp; iTouch</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Dropbox免费网络文件同步工具v1.0.1破解版 for iPhone" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fdropbox-v101-cr-for-iphone.htm&from=http%3A%2F%2Fwww.syncoo.com%2Ftwitter-sina-gtalk-robot-opensource.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/01/26726352.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Dropbox免费网络文件同步工具v1.0.1破解版 for iPhone</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.syncoo.com/twitter-sina-gtalk-robot-opensource.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

