<?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>nonozone &#187; 同步</title>
	<atom:link href="http://www.nonozone.net/tag/%e5%90%8c%e6%ad%a5/feed" rel="self" type="application/rss+xml" />
	<link>http://www.nonozone.net</link>
	<description>冷眼旁观互联网</description>
	<lastBuildDate>Mon, 16 Jan 2012 10:11:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>利用Tw2other将twitter同步到国内其他微博</title>
		<link>http://www.nonozone.net/using-tw2other-sync-twitter-to-other-microblog.html</link>
		<comments>http://www.nonozone.net/using-tw2other-sync-twitter-to-other-microblog.html#comments</comments>
		<pubDate>Mon, 02 Aug 2010 14:25:48 +0000</pubDate>
		<dc:creator>nonozone</dc:creator>
				<category><![CDATA[奇淫巧技]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[同步]]></category>
		<category><![CDATA[微博]]></category>

		<guid isPermaLink="false">http://www.nonozone.net/using-tw2other-to-twitter-sync-to-other-domestic-micro-bo.html</guid>
		<description><![CDATA[一直都想找一个能将twitter上面的信息同步到国内其他微博的方法，以前都是利用Follow5，先发送到F5，然后同步到其他地方，但是F5有一个很不好的地方不仅仅是服务不稳定，有时候会无法同步，更重要的时候阉割功能，有些敏感词会被自动用**替换掉。比如上次世界杯我发送一个[今天朝鲜对巴西]，结果就变成[今**鲜对巴西]了…无语吧。所以还是希望有一种方法自己更加可控。今天介绍的是一个PHP小脚本吧，可以自动将twitter上面的信息同步到嘀咕，新浪微博，网易微博，人人网等国内微博。 Tw2other是一个开源的Google code项目，主页地址是：http://code.google.com/p/tw2ohter/，唉&#8230;这个作者也实在有点让人无语…other不小心写成了ohter…，不管怎样，先到那个网站下载最新版的tw2other压缩包。 使用Tw2other，你需要有一个国外的PHP空间，如果你没有国外的空间，国内的空间其实也可以，但是你起码有一个可用的twitter proxy api地址。tw2other暂时只支持digu/sina/zuosa/follow5/9911/豆瓣广播/鲜果联播/人间网/人人网/网易微博，作者后面考虑会加入其他的微博支持。 好了，下面开始了，其实很简单，只需要配置两个文件分别是config.php和Cron.php。首先配置config.php，在config.php的第六行有代码： 1: define ( 'INTERVAL', 50 ); 这里可以设定刷新间隔时间，默认就可以了，我自己是设定的30秒。 然后在第八行，有一处： 1: $twitterApi = 'http://twitter.com/'; 这里就可以修改你的twitter proxy api地址，当然，如果你的是国外主机，这一步就不需要了。 然后在第10行有一处代码 $twitterUsenr=‘’这里修改成你自己的twitter用户名。然后在第19行，有一处$twitterSyncLevel=0；这里可以参考文件里的说明，自行修改，我就不多重复了。 然后下面就是可以设置可以同步到那些国内微博的用户名和密码，自己添加，这里也不再强调。那这里config.php这个文件已经就改好了。 现在开始修改cron.php，打开这个文件，直接修改第8行，修改成自己的地址： 1: $url = &#34; http://www.nonohost.com/Tw2other/index.php&#34;; 这里需要注意的是，建议放在你空间的根目录，而不要放在子目录，即使你已经把域名绑定到子目录，貌似也有点问题。我用的是Bluehost的空间，本来是把Tw2other这个文件夹放在一个子目录里，并且这个子目录已经绑定在一个顶级域名了，结果还是一直出错，后来我重新把这个文件夹放在根目录，然后问题就解决了。不过也可能是我自己没有设置好吧。 现在这两个文件也都设置好了，上传到你的服务器空间，现在需要设置cPanel的crom（时钟守护作业）这个东西其实我不大明白是什么，我也是跟着人家依葫芦画瓢，一步一步做下来就是了。 首先进入你的cPanel，找到最下面的 时钟守护作业，我使用的是Bluehost空间，其他空间如果使用cPanel应该跟我的差不多。其他使用非cPanel控制面板的我就不知道在哪里了。如图： 点击进入之后，首先会让你添加一个Cron Email，这个过程并不是必须的，但是我建议刚开始你可以先添加一个email，这样可以接收程序出错的信息以便调试，调试完毕，是可以把这个Email地址去掉的。 然后下面会有一个添加Add New Cron Job的按钮，如图，跟我一样设置就可以了。 至于最下面哪行command怎么填写，我是这样的 1: /usr/local/bin/php /home/nonohost/public_html/Tw2other/cron.php 前面是这个空间php解释器的位置，后面那个是你的Tw2other文件夹所在的位置！注意，路径里面是区分大小写的！后面的tw2other路径你要参考自己的具体情况，就不要把我copy过去了。 添加完毕以后，应该你会马上收到一封Email邮件，如果成功了话，可能会提示没有new update，如果出错，会告知你出错的原因，然后再调试吧。 具体的操作就这样，其实我也就是看着tw2other项目主页里面的那篇文章一步一步做下来的，中间出现过几次问题，后来就搞定了。<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="108" valign="top" style="padding: 5px !important; margin: 0 !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.nonozone.net%2Fseveral-mainstream-contrast-micro-blog-service.html&from=http%3A%2F%2Fwww.nonozone.net%2Fusing-tw2other-sync-twitter-to-other-microblog.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !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="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="wordpress更新twitter插件twitterbot" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Ftwitter-updates-wordpress-plugin-twitterbot.html&from=http%3A%2F%2Fwww.nonozone.net%2Fusing-tw2other-sync-twitter-to-other-microblog.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26859935.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">wordpress更新twitter插件twitterbot</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Chrome浏览器twitter扩展Chrowety" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fchrome-browser-twitter-extension-chrowety.html&from=http%3A%2F%2Fwww.nonozone.net%2Fusing-tw2other-sync-twitter-to-other-microblog.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26857917.jpg" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Chrome浏览器twitter扩展Chrowety</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="优秀的twitter客户端Mixero" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fgood-twitter-client-mixero.html&from=http%3A%2F%2Fwww.nonozone.net%2Fusing-tw2other-sync-twitter-to-other-microblog.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26848217.jpg" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">优秀的twitter客户端Mixero</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Twitter客户端Tweet Deck" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Ftwitter-client-tweet-deck.html&from=http%3A%2F%2Fwww.nonozone.net%2Fusing-tw2other-sync-twitter-to-other-microblog.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26859761.jpg" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Twitter客户端Tweet Deck</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上面的信息同步到国内其他微博的方法，以前都是利用Follow5，先发送到F5，然后同步到其他地方，但是F5有一个很不好的地方不仅仅是服务不稳定，有时候会无法同步，更重要的时候阉割功能，有些敏感词会被自动用**替换掉。比如上次世界杯我发送一个[今天朝鲜对巴西]，结果就变成[今**鲜对巴西]了…无语吧。所以还是希望有一种方法自己更加可控。今天介绍的是一个PHP小脚本吧，可以自动将twitter上面的信息同步到嘀咕，新浪微博，网易微博，人人网等国内微博。</p>
<p>Tw2other是一个开源的Google code项目，主页地址是：<a href="http://code.google.com/p/tw2ohter/">http://code.google.com/p/tw2ohter/</a>，唉&#8230;这个作者也实在有点让人无语…other不小心写成了ohter…，不管怎样，先到那个网站下载最新版的tw2other压缩包。</p>
<p>使用Tw2other，你需要有一个国外的PHP空间，如果你没有国外的空间，国内的空间其实也可以，但是你起码有一个可用的twitter proxy api地址。tw2other暂时只支持digu/sina/zuosa/follow5/9911/豆瓣广播/鲜果联播/人间网/人人网/网易微博，作者后面考虑会加入其他的微博支持。</p>
<p>好了，下面开始了，其实很简单，只需要配置两个文件分别是config.php和Cron.php。首先配置config.php，在config.php的第六行有代码：</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span>define ( <span class="str">'INTERVAL'</span>, 50 );</pre>
</div>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>这里可以设定刷新间隔时间，默认就可以了，我自己是设定的30秒。</p>
<p>然后在第八行，有一处：</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span>$twitterApi = <span class="str">'http://twitter.com/'</span>;</pre>
</div>
<p>这里就可以修改你的twitter proxy api地址，当然，如果你的是国外主机，这一步就不需要了。</p>
<p>然后在第10行有一处代码 $twitterUsenr=‘’这里修改成你自己的twitter用户名。然后在第19行，有一处$twitterSyncLevel=0；这里可以参考文件里的说明，自行修改，我就不多重复了。</p>
<p>然后下面就是可以设置可以同步到那些国内微博的用户名和密码，自己添加，这里也不再强调。那这里config.php这个文件已经就改好了。</p>
<p>现在开始修改cron.php，打开这个文件，直接修改第8行，修改成自己的地址：</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span>$url = <span class="str">&quot; <a title="http://www.nonohost.com/Tw2other/index.php" href="http://www.nonohost.com/Tw2other/index.php">http://www.nonohost.com/Tw2other/index.php</a>&quot;</span>;</pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>这里需要注意的是，建议放在你空间的根目录，而不要放在子目录，即使你已经把域名绑定到子目录，貌似也有点问题。我用的是Bluehost的空间，本来是把Tw2other这个文件夹放在一个子目录里，并且这个子目录已经绑定在一个顶级域名了，结果还是一直出错，后来我重新把这个文件夹放在根目录，然后问题就解决了。不过也可能是我自己没有设置好吧。</p>
<p>现在这两个文件也都设置好了，上传到你的服务器空间，现在需要设置cPanel的crom（时钟守护作业）这个东西其实我不大明白是什么，我也是跟着人家依葫芦画瓢，一步一步做下来就是了。</p>
<p>首先进入你的cPanel，找到最下面的 时钟守护作业，我使用的是Bluehost空间，其他空间如果使用cPanel应该跟我的差不多。其他使用非cPanel控制面板的我就不知道在哪里了。如图：</p>
<p><a href="http://www.nonozone.net/wp-content/uploads/2010/08/tw2othertwitter.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" class="wlDisabledImage" title="tw2other同步twitter到其他国内微博" border="0" alt="tw2other同步twitter到其他国内微博" src="http://www.nonozone.net/wp-content/uploads/2010/08/tw2othertwitter_thumb.png" width="502" height="279" /></a></p>
<p>点击进入之后，首先会让你添加一个Cron Email，这个过程并不是必须的，但是我建议刚开始你可以先添加一个email，这样可以接收程序出错的信息以便调试，调试完毕，是可以把这个Email地址去掉的。</p>
<p>然后下面会有一个添加<strong>Add New Cron Job</strong>的按钮，如图，跟我一样设置就可以了。</p>
<p><a href="http://www.nonozone.net/wp-content/uploads/2010/08/tw2othertwitter1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" class="wlDisabledImage" title="tw2other同步twitter到国内微博" border="0" alt="tw2other同步twitter到国内微博" src="http://www.nonozone.net/wp-content/uploads/2010/08/tw2othertwitter_thumb1.png" width="470" height="301" /></a></p>
<p>至于最下面哪行command怎么填写，我是这样的</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span>/usr/local/bin/php /home/nonohost/public_html/Tw2other/cron.php</pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>前面是这个空间php解释器的位置，后面那个是你的Tw2other文件夹所在的位置！注意，路径里面是区分大小写的！后面的tw2other路径你要参考自己的具体情况，就不要把我copy过去了。</p>
<p>添加完毕以后，应该你会马上收到一封Email邮件，如果成功了话，可能会提示没有new update，如果出错，会告知你出错的原因，然后再调试吧。</p>
<p>具体的操作就这样，其实我也就是看着tw2other项目主页里面的那篇文章一步一步做下来的，中间出现过几次问题，后来就搞定了。</p>
<br /><g:plusone size="" href="http%3A%2F%2Fwww.nonozone.net%2Fusing-tw2other-sync-twitter-to-other-microblog.html"></g:plusone><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="108" valign="top" style="padding: 5px !important; margin: 0 !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.nonozone.net%2Fseveral-mainstream-contrast-micro-blog-service.html&from=http%3A%2F%2Fwww.nonozone.net%2Fusing-tw2other-sync-twitter-to-other-microblog.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !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="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="wordpress更新twitter插件twitterbot" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Ftwitter-updates-wordpress-plugin-twitterbot.html&from=http%3A%2F%2Fwww.nonozone.net%2Fusing-tw2other-sync-twitter-to-other-microblog.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26859935.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">wordpress更新twitter插件twitterbot</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Chrome浏览器twitter扩展Chrowety" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fchrome-browser-twitter-extension-chrowety.html&from=http%3A%2F%2Fwww.nonozone.net%2Fusing-tw2other-sync-twitter-to-other-microblog.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26857917.jpg" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Chrome浏览器twitter扩展Chrowety</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="优秀的twitter客户端Mixero" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fgood-twitter-client-mixero.html&from=http%3A%2F%2Fwww.nonozone.net%2Fusing-tw2other-sync-twitter-to-other-microblog.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26848217.jpg" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">优秀的twitter客户端Mixero</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Twitter客户端Tweet Deck" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Ftwitter-client-tweet-deck.html&from=http%3A%2F%2Fwww.nonozone.net%2Fusing-tw2other-sync-twitter-to-other-microblog.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26859761.jpg" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Twitter客户端Tweet Deck</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.nonozone.net/using-tw2other-sync-twitter-to-other-microblog.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Blackberry与outlook同步联系人图文教程</title>
		<link>http://www.nonozone.net/blackberry-sync-with-outlook-contacts-graphic-guide.html</link>
		<comments>http://www.nonozone.net/blackberry-sync-with-outlook-contacts-graphic-guide.html#comments</comments>
		<pubDate>Sat, 29 Nov 2008 10:18:44 +0000</pubDate>
		<dc:creator>nonozone</dc:creator>
				<category><![CDATA[黑莓之路]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[同步]]></category>
		<category><![CDATA[联系人]]></category>
		<category><![CDATA[黑莓]]></category>

		<guid isPermaLink="false">http://www.nonozone.net/blackberry-sync-with-outlook-contacts-graphic-guide.html</guid>
		<description><![CDATA[如果用过多普达的人可能都会觉得手机跟outlook同步联系人的功能记忆深刻，其实黑莓也可以很方便的跟outlook同步，具体方法如下： 首先打开桌面管理器DM，我的是4.6版本的。 选择同步，进来就如下界面，点左边的第三个同步，然后点击右侧我标记的地方 然后就是这样了，这里会提示你选择需要同步什么内容，我们选择通讯簿 同时双击，也就是直接在这个蓝色的区块双击就可以了 然后这里会提示你选择跟什么程序选择，我们选择Microsoft outlook，如果你没有安装Microsoft office outlook，而仅仅是outlook express的话，请选择Windows通讯簿/邮件 这一项。然后下一步。 这里的选项就是看看你同步的方向，你可以选择从BB把联系人导入到outlook，也可以选择把电脑上的联系人导入到BB，当然也可以选择跟电脑同步，两边若有修改，就即时同步，如果是这样你就可以选择双向同步。总之，这里可以根据自己的需要选择。我选择的单项同步，从设备（这个设备的意思就是你的BB）同步到outlook，因为我同步一般也就是一个备份的功能，到不需要修改在同步回来了。如果你想在电脑上修改通讯录，您可以选择双向同步，也可以先从BB同步到电脑，再从电脑同步到BB都可以！ 然后继续下一步，下一步，确定就可以了。然后这个时候又回到同步到主界面： 点击同步，怎么样，就可以了吧！ 如果还不清楚的话，可以给我留言，我看哪里描述的不够具体，再修改一次！]]></description>
			<content:encoded><![CDATA[<p>如果用过多普达的人可能都会觉得手机跟outlook同步联系人的功能记忆深刻，其实黑莓也可以很方便的跟outlook同步，具体方法如下：
<div style="text-align: left; clear: both" class="separator">首先打开桌面管理器DM，我的是4.6版本的。</div>
<div style="text-align: left; clear: both" class="separator"><a style="margin-left: 1em; margin-right: 1em" href="http://2.bp.blogspot.com/_ULV-fUWR3VA/STETwtIg07I/AAAAAAAABl4/fswP0ZGlopE/s1600-h/Magical+Snap+-+2008.11.29+17.58+-+001.jpg" imageanchor="1"><img border="0" src="http://2.bp.blogspot.com/_ULV-fUWR3VA/STETwtIg07I/AAAAAAAABl4/fswP0ZGlopE/s400/Magical+Snap+-+2008.11.29+17.58+-+001.jpg" /></a></div>
<div style="text-align: left; clear: both" class="separator">选择同步，进来就如下界面，点左边的第三个同步，然后点击右侧我标记的地方</div>
<div style="text-align: left; clear: both" class="separator"></div>
<p> <a style="margin-left: 1em; margin-right: 1em" href="http://4.bp.blogspot.com/_ULV-fUWR3VA/STET8LFAGTI/AAAAAAAABmA/7r9WRqbK3LM/s1600-h/Magical+Snap+-+2008.11.29+18.00+-+004.jpg" imageanchor="1"><img border="0" src="http://4.bp.blogspot.com/_ULV-fUWR3VA/STET8LFAGTI/AAAAAAAABmA/7r9WRqbK3LM/s400/Magical+Snap+-+2008.11.29+18.00+-+004.jpg" /></a>
<div style="text-align: left; clear: both" class="separator">然后就是这样了，这里会提示你选择需要同步什么内容，我们选择通讯簿</div>
<div style="text-align: left; clear: both" class="separator"></div>
<p> <a style="margin-left: 1em; margin-right: 1em" href="http://1.bp.blogspot.com/_ULV-fUWR3VA/STEUP63mHpI/AAAAAAAABmI/MEmmENbnaik/s1600-h/Magical+Snap+-+2008.11.29+18.00+-+005.jpg" imageanchor="1"><img border="0" src="http://1.bp.blogspot.com/_ULV-fUWR3VA/STEUP63mHpI/AAAAAAAABmI/MEmmENbnaik/s400/Magical+Snap+-+2008.11.29+18.00+-+005.jpg" /></a>
<div style="text-align: left; clear: both" class="separator">同时双击，也就是直接在这个蓝色的区块双击就可以了</div>
<div style="text-align: left; clear: both" class="separator"></div>
<p> <a style="margin-left: 1em; margin-right: 1em" href="http://4.bp.blogspot.com/_ULV-fUWR3VA/STEVFFfED-I/AAAAAAAABmY/af5OjjKtEbM/s1600-h/Magical+Snap+-+2008.11.29+18.03+-+008.jpg" imageanchor="1"><img border="0" src="http://4.bp.blogspot.com/_ULV-fUWR3VA/STEVFFfED-I/AAAAAAAABmY/af5OjjKtEbM/s400/Magical+Snap+-+2008.11.29+18.03+-+008.jpg" /></a>
<div style="text-align: center; clear: both" class="separator"></div>
<div style="text-align: left">然后这里会提示你选择跟什么程序选择，我们选择Microsoft outlook，如果你没有安装Microsoft office outlook，而仅仅是outlook express的话，请选择Windows通讯簿/邮件 这一项。然后下一步。</div>
<div style="text-align: left; clear: both" class="separator"><a style="margin-left: 1em; margin-right: 1em" href="http://4.bp.blogspot.com/_ULV-fUWR3VA/STEU5TYj1GI/AAAAAAAABmQ/ByO8jb3PGJw/s1600-h/Magical+Snap+-+2008.11.29+18.00+-+006.jpg" imageanchor="1"><img border="0" src="http://4.bp.blogspot.com/_ULV-fUWR3VA/STEU5TYj1GI/AAAAAAAABmQ/ByO8jb3PGJw/s400/Magical+Snap+-+2008.11.29+18.00+-+006.jpg" /></a></div>
<div style="text-align: left; clear: both" class="separator">这里的选项就是看看你同步的方向，你可以选择从BB把联系人导入到outlook，也可以选择把电脑上的联系人导入到BB，当然也可以选择跟电脑同步，两边若有修改，就即时同步，如果是这样你就可以选择双向同步。总之，这里可以根据自己的需要选择。我选择的单项同步，从设备（这个设备的意思就是你的BB）同步到outlook，因为我同步一般也就是一个备份的功能，到不需要修改在同步回来了。如果你想在电脑上修改通讯录，您可以选择双向同步，也可以先从BB同步到电脑，再从电脑同步到BB都可以！</div>
<div style="text-align: left; clear: both" class="separator">然后继续下一步，下一步，确定就可以了。然后这个时候又回到同步到主界面：</div>
<div style="text-align: left; clear: both" class="separator"></div>
<p> <a style="margin-left: 1em; margin-right: 1em" href="http://3.bp.blogspot.com/_ULV-fUWR3VA/STEWWpF1g5I/AAAAAAAABmg/_KJBaiU8VoA/s1600-h/Magical+Snap+-+2008.11.29+18.01+-+007.jpg" imageanchor="1"><img border="0" src="http://3.bp.blogspot.com/_ULV-fUWR3VA/STEWWpF1g5I/AAAAAAAABmg/_KJBaiU8VoA/s400/Magical+Snap+-+2008.11.29+18.01+-+007.jpg" /></a>
<div style="text-align: left">点击同步，怎么样，就可以了吧！</div>
<div style="text-align: left">如果还不清楚的话，可以给我留言，我看哪里描述的不够具体，再修改一次！</div>
<br /><g:plusone size="" href="http%3A%2F%2Fwww.nonozone.net%2Fblackberry-sync-with-outlook-contacts-graphic-guide.html"></g:plusone>]]></content:encoded>
			<wfw:commentRss>http://www.nonozone.net/blackberry-sync-with-outlook-contacts-graphic-guide.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

