<?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>Coolxll&#039;s Secret Garden &#187; gfw</title>
	<atom:link href="http://coolxll.me/tag/gfw/feed/" rel="self" type="application/rss+xml" />
	<link>http://coolxll.me</link>
	<description>Software/Life/Mobilephone/IT</description>
	<lastBuildDate>Sun, 14 Aug 2011 03:00:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tips：解决 GAppProxy 等代理无法被局域网中其他客户端访问的问题</title>
		<link>http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/</link>
		<comments>http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 09:19:53 +0000</pubDate>
		<dc:creator>coolxll</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[gfw]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://coolxll.me/?p=76831</guid>
		<description><![CDATA[由于把常用系统换到 Ubuntu Linux 了，所以代理也得一同切换到该平台下。正如在之前的文章中所说的一样，在家里的时候，我常常使用手机配合电脑上的代理服务器来访问一些不便访问的站点，... ]]></description>
			<content:encoded><![CDATA[<p>由于把常用系统换到 <a href="http://coolxll.me/2010/06/ubuntu-10-04-lucid-lynx/">Ubuntu Linux</a> 了，所以代理也得一同切换到该平台下。<a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/">正如在之前的文章中所说的一样</a>，在家里的时候，我常常使用手机配合电脑上的代理服务器来访问一些不便访问的站点，因为代理相比VPN不容易断。不过发现新版本的GAppProxy local端似乎无法被其他机器访问，现提供两个解决方案：<br/><br />
<span id="more-76831"></span></p>
<ol>
<li>使用 nmap 工具查看了一下本机局域网地址的ip，发现对于局域网8000端口并没有作绑定，可能是作者出于安全性方面的考虑，毕竟之前就有听说过本机的代理被其他人盗用的事情。查看了一下 proxy.py 的代码，在最下面发现了<br />
<code>httpd = ThreadingHTTPServer(("127.0.0.1", listen_port), LocalProxyHandler)<br />
httpd.serve_forever()</code>可见默认是绑定在本地回环上的，把上述的127.0.0.1或者localhost，改成0.0.0.0就可以在所有可用设备上都进行绑定了，0.0.0.0代表默认路由的意思。对于用GAppProxy2的同学，建议开启localhost_only，然后修改判断条件把 m_host.startswith(&#8221;192.168&#8243;)的那段作为localhost处理就是了，因为发现如果全部允许，但是又没有密码的话，的确很容易被扫描到然后有未知的机器使用本机的代理。</li>
<li>使用 TinyProxy 或者 Squid 进行二级代理中转，因为需求并不大，所以其实并不需要使用到Squid。说到 Squid，倒是可以使用 Squid 的规则设置一个透明代理，因为是HTTP代理，且规则在服务器上，所以其实在设备方面是有着最大的适应性，当然 TinyProxy 也可以进行按规则的 UpStream 转发。 TinyProxy/Squid 包括还有个没有试用的 Polipo 的配置文件一般都在 /etc下，Squid 的在/etc/squid/下，对于 TinyProxy 只需要设置绑定端口（默认是8888,Squid是3128）以及上层代理(倒没关注TinyProxy是否支持 SocksV5的上层代理）。其实 Tips2 的好处在于对于 U﹑FG等无法修改且只绑定在 localhost 上的软件也能起效，无非是需要多添加一个服务罢了。</li>
</ol>
<hr/>
写到这里突然发现我也有点想买个VPS去配置个Squid/pptpd自用了，毕竟自家电脑一没固定ip二不是24小时开机，多么不便啊。何况VPS现在也不是那么贵嘛。</p>
<hr /><h2>已有评论</h2><ul><li><a href="http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/">2010年10月4日</a>, James <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/us.png" title="UNITED STATES" alt="UNITED STATES" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/ie8.png' title='Internet Explorer 8.0' alt='Internet Explorer' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_win7.png' title='Windows 7' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: 我的电脑用GappProxy2.0.0 手机就连在电脑的局域网上 可是还是不会按照你的设置成功翻墙阿 求解释：
1.如何“开启localhost_only”...
2.又如何“修改判断条件把 m_host.startswith(”192.168″)的那段作为localhost处理”...
3.如何进行8000端口绑定...
求详细解释...千恩万谢~~~</li><li><a href="http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/">2010年10月4日</a>, <a href="http://coolxll.me"   rel='external nofollow' class='url'>coolxll</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/firefox.png' title='Mozilla Firefox 3.5.13' alt='Mozilla Firefox' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_win7.png' title='Windows 7' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-3080" rel="nofollow">@James</a>, 1.localhost_only 在conf 文件里配置的
2.在proxy 里搜索 m_host 然后根据条件加入
3.改成0.0.0.0 然后用Linux下的nc查看你的局域网ip地址，看看8000端口是否打开</li><li><a href="http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/">2010年10月4日</a>, James <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/us.png" title="UNITED STATES" alt="UNITED STATES" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/ie8.png' title='Internet Explorer 8.0' alt='Internet Explorer' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_win7.png' title='Windows 7' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-3082" rel="nofollow">@coolxll</a>, 
哦 原来你说的是Linux系统下的方法 可我用的是windows 不知道windows下怎么改动啊~~ 多谢多谢~~~</li><li><a href="http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/">2010年10月4日</a>, <a href="http://coolxll.me"   rel='external nofollow' class='url'>coolxll</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/firefox.png' title='Mozilla Firefox 3.5.13' alt='Mozilla Firefox' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_win7.png' title='Windows 7' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-3086" rel="nofollow">@James</a>, 一样，把127.0.0.1 改成0.0.0.0 localhost_only 随你高兴了，关掉就能连了</li><li><a href="http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/">2010年10月4日</a>, James <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/us.png" title="UNITED STATES" alt="UNITED STATES" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/ie8.png' title='Internet Explorer 8.0' alt='Internet Explorer' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_win7.png' title='Windows 7' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-3087" rel="nofollow">@coolxll</a>, 
嘿嘿~~成功啦~~大谢~~</li><li><a href="http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/">2010年12月14日</a>, meson <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/chrome.png' title='Google Chrome 10.0.603.3' alt='Google Chrome' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_win7.png' title='Windows 7' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: win下的客户端能使用proxy.conf来设置吗，没有python环境，不能使用python版的客户端。</li><li><a href="http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/">2010年12月14日</a>, <a href="http://coolxll.me"   rel='external nofollow' class='url'>coolxll</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/safari.png' title='Safari 6531.22.7' alt='Safari' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/macos.png' title='Mac OS X' alt='Mac OS' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-3472" rel="nofollow">@meson</a>, exe 版没法修改吧 除非修改py 然后重新打包成exe 类似py2exe 这样的</li></ul><hr /><small>Copyright &copy; 2010<br />  <a href="http://coolxll.me">Coolxll's Secret Garden</a>,<a href="http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/" title="原文链接">原文链接</a>，已有7条<a href="http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/#comments" title="评论">评论</a>, 作者: <a href="http://coolxll.me" >coolxll</a><h3  class="related_post_title">相关文章：</h3><ul class="related_post"><li>2009年12月8日 -- <a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/" title="手机上的另类&ldquo;跳栏&rdquo;方法">手机上的另类&ldquo;跳栏&rdquo;方法</a> (6)</li><li>2010年06月5日 -- <a href="http://coolxll.me/2010/06/built-in-browser-equals-monopoly/" title="内置浏览器=垄断？">内置浏览器=垄断？</a> (4)</li><li>2010年04月23日 -- <a href="http://coolxll.me/2010/04/something-to-say-about-google-reader/" title="关于 Google Reader 移动版一些想要说的">关于 Google Reader 移动版一些想要说的</a> (20)</li><li>2010年03月28日 -- <a href="http://coolxll.me/2010/03/foursquare/" title="使用 foursquare 的一些感受">使用 foursquare 的一些感受</a> (16)</li><li>2009年08月8日 -- <a href="http://coolxll.me/2009/08/browser-address-bar-in-firefox-chrome/" title="What&#8217;s in my browser address bar from a to z">What&#8217;s in my browser address bar from a to z</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>手机上的另类&#8220;跳栏&#8221;方法</title>
		<link>http://coolxll.me/2009/12/over-the-wall-on-mobile/</link>
		<comments>http://coolxll.me/2009/12/over-the-wall-on-mobile/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 14:04:26 +0000</pubDate>
		<dc:creator>coolxll</dc:creator>
				<category><![CDATA[mobilephone]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[gfw]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[s60]]></category>
		<category><![CDATA[symbian]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://coolxll.cn/?p=76699</guid>
		<description><![CDATA[众所周知的原因，我们的手机上有许多无法访问的网站、无法发挥他们本身用途的软件。下面，我就介绍一种最简单的，成本最低的方案，来让你在手机上访问那些著名的Web2.0站点，比如 Faceboo... ]]></description>
			<content:encoded><![CDATA[<p><a href="http://i47.tinypic.com/30blhs3.jpg" rel="lightbox[76699]"><img style="margin: 0px 25px 0px 0px; display: inline" class="alignleft" title="FireWall" alt="" align="left" src="http://i47.tinypic.com/30blhs3.jpg" width="344" height="236" /></a>众所周知的原因，我们的手机上有许多无法访问的网站、无法发挥他们本身用途的软件。下面，我就介绍一种最简单的，成本最低的方案，来让你在手机上访问那些著名的Web2.0站点，比如 Facebook/<a href="https://twitter.com/coolxll">Twitter</a>/Youtube 等。特别是最近Opera Mini 和 UCWeb 英文版相继出事之后，对于一些不方便使用VPN的手机，或许这算是一个变通的方案吧。</p>
<p>事情是这样的，你需要准备的条件有：</p>
<ol>
<li>一台有Wifi（能和你的笔记本处在同一个局域网）的智能手机 </li>
<li>一个能够访问国际互联网的代理服务器，例如SSH 或者 PUFF 这样的软件 </li>
</ol>
<p>然后，Let’s Go!</p>
<p> <span id="more-76699"></span>每台局域网中的计算机都有一个独立的IP地址，并且由于防火墙的缘故，只能被局域网中的计算器访问到(除非在NAT中设置端口映射策略)，之前我们访问很多国外网站也是通过很多软件在本地监听相应端口来作用于代理服务器的。
</p>
<p>我最初的想法是将手机中的Wifi的代理服务器直接设置成 u96/fg690 等软件产生的ip不就可以达到通过代理上网的目的了吗？现实是有些打击的，直接这样设置，根本是上不了网的，不排除是 iPhone OS不支持的缘故（iPhone 似乎只支持 HTTP 代理），尽管我在 Symbian OS 以及另外一台使用 Windows XP的电脑上也做了类似的实验，均告失败。唯一可以直接使用的代理服务器软件是 GAppProxy , 只需要把你手机的代理服务器设置成你电脑的ip:8000 即可，当然 GAppProxy 由于 GAE 的缘故限制是比较大的，首先是不能下载大于1MB以上的文件，其次更大的问题在于HTTPS经过GAE中间的解包处理之后，都变成了不可信证书，所以需要HTTPS连接的站点都是无法使用 GAE 连接的，或者需要同意该证书。</p>
<p>最后的解决方案是想起了拨号时代挺流行的一个假设代理的 Windows 下的软件 <a href="http://www.ccproxy.com/">ccProxy</a> (如果有更好的软件，也欢迎留言推荐),该软件的特点在于支持<strong>二级代理</strong>，通过二级代理我们可以将我们电脑上的代理共享给手机使用。     <br /><img alt="" src="http://vehheg.blu.livefilestore.com/y1pJzGUMUgEOtRMbdgn5tVOddBADnkcAeS4kUrFotNHWJSX5bHYfcGVoYsH1SRXUHHV0BcNU0CepTySKGtc-LEF3mjTwCLkT6SA/ccproxy.jpg" /> <img alt="" src="http://vehheg.blu.livefilestore.com/y1ppXi3Y505_fv6wbjvoA-GfSPlYG2JBKSmVVjIBYygn5VuhF0gV-VRIhtsMTz3-xLBaCwW_lVvGTC-u6gPuLVy0mx5paUkMBC2/2ndproxy.jpg" /><img src="http://i48.tinypic.com/4rdaus.jpg" />     <br /><strong>手机中的代理请设置成上图中的端口</strong></p>
<p>设置方法如下所示，分别是 iPhone OS / Symbian OS 以及 Windows Mobile 的设置，（手上只有这些系统了，BB和Android 应该也是类似的）</p>
<p>iPhone: <img alt="" src="http://i48.tinypic.com/6rpx79.jpg" />     <br />Symbian:<img alt="" src="http://i50.tinypic.com/34q1zbm.jpg" />     <br />WinMo:<img alt="" src="http://i48.tinypic.com/2a7vgpf.jpg" width="370" height="480" />     <br />成功访问Youtube：     <br /><img alt="" src="http://i46.tinypic.com/2j29shs.jpg" /></p>
<p>至于，更进一步么，就是通过 <a href="https://autoproxy2pac.appspot.com/">AutoProxy2Pac</a> 自动将需要浏览的网站转换为PAC文件，上传到你方便访问到的地址上，将会更加方便。</p>
<hr /><h2>已有评论</h2><ul><li><a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/">2009年12月8日</a>, <a href="http://topsy.com/tb/coolxll.cn/2009/12/over-the-wall-on-mobile/" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','topsy.com']);"  rel='external nofollow' class='url'>Tweets that mention 手机上的另类跳栏方法,访问你想访问的站点 | Coolxll's Secret Garden -- Topsy.com</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/us.png" title="UNITED STATES" alt="UNITED STATES" class="country-flag" />     说到: [...] This post was mentioned on Twitter by Xu Linglong, 郭猩猩. 郭猩猩 said: 试试Pre 。RT @coolxll: [Blog]：如何在手机上翻墙，对于没有或者不方便使用VPN的手机或许有用，至少我在 iPhone OS 和 Symbian 上测试通过，http://coolxll.cn/2009/12/over-the-wall-on-mobile/ [...]</li><li><a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/">2009年12月8日</a>, <a href="http://www.icebugger.cn" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','www.icebugger.cn']);"  rel='external nofollow' class='url'>icebugger</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/ie8.png' title='Internet Explorer 7.0' alt='Internet Explorer' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows.png' title='Windows XP' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: 那个是WM不是Symbian。。。</li><li><a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/">2009年12月8日</a>, <a href="http://coolxll.cn" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','coolxll.cn']);"  rel='external nofollow' class='url'>coolxll</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/chrome.png' title='Google Chrome 4.0.249.25' alt='Google Chrome' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_vista.png' title='Windows Vista' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-660" rel="nofollow">@icebugger</a>, Symbian 有啊，图片难道没显示出来吗？ 具体就是在编辑接入点-》高级设置，然后就能看到代理服务器设置了。 
主要就是只有 ccProxy 的代理才能被手机使用罢了。</li><li><a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/">2009年12月9日</a>, <a href="http://fis.io/" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','fis.io']);"  rel='external nofollow' class='url'>fisio</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/safari.png' title='Safari 531.21.10' alt='Safari' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/macos.png' title='Mac OS X' alt='Mac OS' width='14px' height='14px' class='os-icon' />   说到: 嗯，我直接手机上填vpn..哈哈</li><li><a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/">2009年12月9日</a>, <a href="http://xijie.wordpress.com/2009/12/09/%e6%89%8b%e6%9c%ba%e4%b8%8a%e7%9a%84%e5%8f%a6%e7%b1%bb%e8%b7%b3%e6%a0%8f%e6%96%b9%e6%b3%95/" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','xijie.wordpress.com']);"  rel='external nofollow' class='url'>手机上的另类&ldquo;跳栏&rdquo;方法 &laquo; 细节的力量</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/us.png" title="UNITED STATES" alt="UNITED STATES" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/wp.png' title='WordPress MU' alt='WordPress' width='14px' height='14px' class='browser-icon' />    说到: [...] 十二月 9, 2009   来源：Coolxll&#8217;s Secret Garden [...]</li><li><a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/">2009年12月9日</a>, <a href="http://coolxll.cn" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','coolxll.cn']);"  rel='external nofollow' class='url'>coolxll</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/firefox.png' title='Mozilla Firefox 3.5.5' alt='Mozilla Firefox' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_vista.png' title='Windows Vista' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-668" rel="nofollow">@fisio</a>, 能用上VPN就挺幸福了。</li></ul><hr /><small>Copyright &copy; 2010<br />  <a href="http://coolxll.me">Coolxll's Secret Garden</a>,<a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/" title="原文链接">原文链接</a>，已有6条<a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/#comments" title="评论">评论</a>, 作者: <a href="http://coolxll.me" >coolxll</a><h3  class="related_post_title">相关文章：</h3><ul class="related_post"><li>2010年01月26日 -- <a href="http://coolxll.me/2010/01/itunes-remote-s60-android-wm/" title="不是 iPhone 一样遥控 iTunes">不是 iPhone 一样遥控 iTunes</a> (2)</li><li>2010年05月3日 -- <a href="http://coolxll.me/2010/05/trust-on-mobile-software/" title="信任与手机的第三方程序的安全性问题">信任与手机的第三方程序的安全性问题</a> (18)</li><li>2011年07月18日 -- <a href="http://coolxll.me/2011/07/internationalization-and-localization-of-macosx-and-ios/" title="从国际化看MacOSX和iOS的成功">从国际化看MacOSX和iOS的成功</a> (6)</li><li>2011年02月28日 -- <a href="http://coolxll.me/2011/02/redemption-of-symbian/" title="Symbian的救赎？">Symbian的救赎？</a> (3)</li><li>2010年06月16日 -- <a href="http://coolxll.me/2010/06/what-decides-smartphone-hardware-or-software/" title="是硬件还是软件决定了手机？">是硬件还是软件决定了手机？</a> (3)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://coolxll.me/2009/12/over-the-wall-on-mobile/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>恋上你的床，恋上Twitter</title>
		<link>http://coolxll.me/2009/08/2009-twitter-loving/</link>
		<comments>http://coolxll.me/2009/08/2009-twitter-loving/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 11:59:51 +0000</pubDate>
		<dc:creator>coolxll</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[gfw]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[microblog]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://coolxll.cn/?p=76491</guid>
		<description><![CDATA[下文仅仅是我这半年来使用Twitter的一些感受，个人意见，仅供参考：
2009,微博客元年
2009年最火的网络服务是什么？那毫无疑问必然是当之无愧的 Twitter 。2009年Twitter从美国到中国，风靡大江... ]]></description>
			<content:encoded><![CDATA[<p>下文仅仅是我这半年来使用Twitter的一些感受，<strong>个人意见</strong>，仅供参考：</p>
<p style="background-color: #99cc00">2009,微博客元年</p>
<p><img style="display: inline; margin-left: 0px; margin-right: 0px" src="http://vehheg.blu.livefilestore.com/y1p3oTrX7swBvKSjDwiuOtIESjYEbOW307Kc0Ap4kQ05hQC0HlrI-Bnjgx7omZA14twXWkEfqsXnkhiTxkRp567zg/twitter-hashclouds.jpg" alt="" width="240" height="180" align="left" />2009年最火的网络服务是什么？那毫无疑问必然是当之无愧的 <strong>Twitter </strong>。2009年Twitter从美国到中国，风靡大江南北、男女老少。在马路上你是不是经常看见有人聚精会神地低头看着手机，你以为他（她）是在发短消息。NO，NO，<strong>他（她）其实是在上 Twitter </strong>。2009年，毫不夸张地说可以称为 Twitter 元年（尽管 Twitter 成立是在3年之前）。在中国，还有为数不少的&#8221; Twitter-Clone &#8220;活跃着，比如<a href="http://www.fanfou.com">饭否</a>、<a href="http://digu.com">嘀咕</a>、<a href="http://jiwai.de">叽歪</a>等。<br />
注:很不幸的是,截止本文发布时,饭否/嘀咕/叽歪在中国都被关闭, Twitter 也无法直接访问,真是一个讽刺啊。<span id="more-76491"></span></p>
<p style="background-color: #99cc00">接触微博客的原因</p>
<p>我接触 Twitter 的时间并不长，是<strong>从2009年1月开始的</strong>，在此之前我对于微博客还是有一些粗浅的认识的，使用过<strong>腾讯滔滔</strong>以及<strong>饭否</strong>等微博客。腾讯滔滔由于 QQ 的关系，是我使用的第一个微博客，但是由于<strong>不能在手机网页上发表自己的心情</strong>等种种原因（见右图）不能令自己满意。于是，寻找了<strong>下一个替代品——饭否</strong>，那段时间饭否的手机版登陆也有些问题，只能通过电脑版登陆，然后依靠 Cookies 进入手机版。  <img style="display: inline; margin-left: 0px; margin-right: 0px" src="http://vehheg.blu.livefilestore.com/y1pfKed8fvGyA-L1iXrNjhjmy4DtCYIEgjiNwdatbJPmwEnpun3ZZI1-9sDnyEI_JKkMcVAaqmskogYn-NZlAlKd33JqkgK4wkv/taotao.jpg" alt="" align="right" /></p>
<p style="background-color: #99cc00">邂逅Twitter</p>
<p>而后有一次不经意在逛 <a href="http://perfectworks.info">PerfectWorks</a> 的博客的时候，发现 <a href="https://friendfeed.com">FriendFeed</a> (墙外)这个当时很有创意的<strong>聚合 Web2.0 应用</strong>，发现 FriendFeed 对于 twitter 的支持很不错（其实，总体而言，各种美国的 Web2.0 应用对 Twitter 都有比较不错的支持，包括 <a href="http://www.facebook.com">Facebook (同样在墙外)</a>。）就这样，我开始踏上了我的推客生涯。<br />
最初使用 Twitter 的目的很简单，<strong>随时随地记录下自己的所思所想，记录下那稍纵即逝的灵感，偶尔也会摘录一下书上看到的不错的名言佳句</strong>。和其他 Web2.0 服务类似，我 Twitter上第一批 Following 的好友时<strong>线下就认识的好友以及 GMail 通讯录里的朋友</strong>(比如 <a href="https://twitter.com/terryxxy">@terryxxy</a>, <a href="https://twitter.com/scavin">@scavin</a>等）。同样也感谢第一个 Follow 我的朋友 <a href="http://twitter.com/ibelen">@ibelen</a>，每个上 Twitter 的人都希望自己的 Tweet 能<strong><span style="color: #008000;">有人倾听吧</span></strong>。</p>
<p>刚开始用Twitter的时候，用的还是 <a href="http://twitter.com">Web 版界面</a>，相信每个刚上手 Twitter 的同学都是这样由浅入深的吧，而后慢慢尝试了一些桌面客户端，比如 <a href="http://twhirl.org/">twhirl</a>、<a href="http://tweetdeck.com/beta/">TweekDeck</a> 等。</p>
<p>当然真正令我着迷的还是 Twitter <span style="color: #008040;"><strong>方便的手机客户端</strong></span>，只有有了手机客户端，Twitter才有了随时随地的属性，我当时使用的手机是 Nokia 的<a href="http://coolxll.cn/2009/04/%e5%88%ab%e4%ba%86%ef%bc%8c%e6%88%91%e7%9a%84e51/">E51</a>，S60的系统，用的 Twitter 软件是 <a href="http://www.twibble.de/twibble-mobile/">twibble</a>（支持Java与BlackBerry的Twitter手机客户端），当时的版本似乎是0.3.X,还很简陋，不过常用的发推、回复等功能也都有了，而且操作也比较方便，后来更新到了0.8.7，界面有了很大的改进，而且<strong>支持数字键盘的快捷键操作</strong>，是我用过的体验最好的客户端之一，其实 twibble 0.8.7还存在一个比较严重的缺陷只是当时我一直没发现而已，也就是不支持 <strong>thread comment </strong>,也就是在回复的时候带上 in reply to 让别人可以知道你回复的是哪一条消息。我觉得这个对于整理 Conversation 等的 Twitter应用来说还是很重要的，并且在这之后支持 thread，也成为了我挑选 Twitter客户端的一个重要标准之一。令人庆幸的是，twibble 在沉寂多时之后终于推出了 twibble 0.9.X 支持了 thread api。</p>
<p>话说手机丢了之后，我临时用的是一部多普达710（Windows Mobile 6.1 Standard的操作系统），尽管有很多<a href="http://coolxll.cn/2009/07/%e8%ae%ba%e4%b8%ba%e4%bb%80%e4%b9%88symbian%e6%98%af%e6%99%ba%e8%83%bd%e6%89%8b%e6%9c%ba/">Symbian</a>上习惯的软件不能使用，不过仍旧不妨碍我继续使用Twitter。WM上最佳的Twitter软件我个人以为是<a href="http://crazymobile.cn/pocketwit-show.html">PockeTwit</a>(本来想写一篇评测，不过由于现在PockeTwit不能直接使用，只能作罢），还有很多诸如ceTwit/TinyTwitter等的软件，还能通过JBED运行Java模拟器来运行诸如<a href="http://www.geedr.com/twibble-for-blackberry.html">Twibble</a>/Twittai这样的Java程序。最近，正在使用<a href="http://coolxll.cn/2009/07/t-mobile-g1-htc-dream/">G1</a>（Android），上面也有<a href="http://coolxll.cn/2009/07/android-twitter-twidroid/">twidroid</a> 能很好的满足我的推特需求。 退一万步说，即使没有这些客户端，只要你有一部能上网的手机那么你就能通过访问<a href="http://www.dabr.co.uk">dabr</a>来tweet，所以请相信：Twitter无处不在，拿起手机，这就是你的推特。</p>
<p>在Twitter的陪伴下，我走过了大三下，时间过得很快，有Twitter的时光总是不那么寂寞，很充实很快乐，可以与朋友分享生活的点滴，有你我很快乐。Twitter，我愿与你一路同行，共同成长。</p>
<p style="background-color: #99cc00">Twitter 被墙</p>
<p>天有不测风云，人有旦夕祸福。在六月的某个日子，太阳依旧当空照，我照常登录我的 Twitter 的账号，<img style="display: inline; margin-left: 0px; margin-right: 0px" src="http://vehheg.blu.livefilestore.com/y1pw5bP7E-h6aGpXmhyAldu282jzuKKUnw0QeNjjXgbbhQjjBBpLCWYTld1q7SqbtqV9x3ggYlqCshmUw_Z_i1EHs9MpGaztK93/e7bbbfe59d9d1.jpg" alt="" width="171" height="240" align="right" />却发现无法正常登陆了。我知道这是伟大的墙在作怪，不过好在人民群众的智慧是无穷无尽的，不久之后大 家便有了各种办法登录 Twitter ，主要归纳如下，也方便暂时还不会登录 Twitter的同学参考：</p>
<ol>
<li>在线 Twitter 网站（比如 <a href="http://itweet.net">iTweet</a> , <a href="http://www.twitzap.com">TwitZap</a>等）</li>
<li><a href="http://www.dabr.co.uk">dabr</a> 以及各种<a href="https://docs.google.com/View?id=afjspmqb2whv_184dm6n9ngj">山寨dabr</a>(<a href="http://t.coolxll.cn">我的山寨dabr</a>)</li>
<li>修改 Hosts 文件（此处就不公开了，欲知详情PM我）</li>
<li>使用第三方 API 或者 自己搭建 API （比如 <a href="http://nest.onedd.net/api">http://nest.onedd.net/api</a>)</li>
<li>……期待更多</li>
</ol>
<p>所以，我们的结论是在云端的 Twitter 是墙不住的，尽管你能让我上 Twitter 不如以前方便，但你挡不住我上 Twitter 的热情。</p>
<p style="background-color: #99cc00">一些感慨</p>
<p>人的欲望总是无穷无尽的，从最初的仅仅希望有一个方便的网页可以记录自己的生活点滴(当初我觉得能够通过 IM 发推就已经很方便了)到对 Twitter 的重度依赖，以及对 Twitter 的客户端的要求越来越高，人还真是被这样一部一部给宠坏的，永远不知道满足，呵呵。另外，也希望 Twitter 能够尽快回归，我们等你回家吃饭呢。（不过目前的情况看起来似乎比较困难，连饭否都。。）</p>
<hr /><h2>已有评论</h2><ul><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月1日</a>, <a href="http://twitter.com/lisker" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','twitter.com']);"  rel='external nofollow' class='url'>lisker</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/firefox.png' title='Mozilla Firefox 3.5.1' alt='Mozilla Firefox' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_win7.png' title='Windows 7' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: 我那个PockeTwit的show，已然在墙外了。唉</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月1日</a>, <a href="http://www.xiaxiaoyang.com" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','www.xiaxiaoyang.com']);"  rel='external nofollow' class='url'>Sunny</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/chrome.png' title='Google Chrome 3.0.196.2' alt='Google Chrome' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows.png' title='Windows XP' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: 给个建议，英文和中文之间要有空格，你可以看看我的博客，或者你试试看把这篇文章改一改，就发现效果差别很大很大</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月1日</a>, <a href="http://coolxll.cn" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','coolxll.cn']);"  rel='external nofollow' class='url'>coolxll</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/chrome.png' title='Google Chrome 3.0.196.2' alt='Google Chrome' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_vista.png' title='Windows Vista' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-93" rel="nofollow">@lisker</a>, 还以为你的博客被墙了。。仔细一想，原来是Google的某80%的人能用的图片Host服务啊，也罢，暂时用Live相册，或者Tinypic替代下吧。

Flickr 其实也成，只是觉得把Flickr当图床有些污染了那圣洁的摄影场地啊，XD</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月1日</a>, <a href="http://coolxll.cn" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','coolxll.cn']);"  rel='external nofollow' class='url'>coolxll</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/chrome.png' title='Google Chrome 3.0.196.2' alt='Google Chrome' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_vista.png' title='Windows Vista' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-94" rel="nofollow">@Sunny</a>, 谢谢你的建议，我尝试修改一下，不过还没有习惯在中英文之间加空格， 争取养成这个好习惯，尽管在 Twitter 上有意识的学着这样做了</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月1日</a>, <a href="http://twitter.com/lisker" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','twitter.com']);"  rel='external nofollow' class='url'>lisker</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/firefox.png' title='Mozilla Firefox 3.5.1' alt='Mozilla Firefox' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_win7.png' title='Windows 7' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-95" rel="nofollow">@coolxll</a>, 大部分图已经恢复了， 可是 pika 插件对 picasa 的 slide show 无效。唉...</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月1日</a>, <a href="http://coolxll.cn" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','coolxll.cn']);"  rel='external nofollow' class='url'>coolxll</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/chrome.png' title='Google Chrome 3.0.196.2' alt='Google Chrome' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_vista.png' title='Windows Vista' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-98" rel="nofollow">@lisker</a>, 因为slide show还涉及到Flash吧， 前面一篇CJ的日志里，我也很自我的用了Picasa的幻灯片， 因为修改了Hosts 自后 访问Picasa基本无碍。</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月1日</a>, <a href="http://www.dreamfreeblog.com" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','www.dreamfreeblog.com']);"  rel='external nofollow' class='url'>睡到自然醒blog</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/firefox.png' title='Mozilla Firefox 3.0.12' alt='Mozilla Firefox' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows.png' title='Windows XP' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: 又(有)一个方便的网页？</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月1日</a>, <a href="http://coolxll.cn" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','coolxll.cn']);"  rel='external nofollow' class='url'>coolxll</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/chrome.png' title='Google Chrome 3.0.196.2' alt='Google Chrome' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_vista.png' title='Windows Vista' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-100" rel="nofollow">@睡到自然醒blog</a>, 什么方便的网页？没看明白你的意思诶</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月1日</a>, <a href="http://www.dreamfreeblog.com" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','www.dreamfreeblog.com']);"  rel='external nofollow' class='url'>dreamfree</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/ie.png' title='Internet Explorer 6.0' alt='Internet Explorer' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows.png' title='Windows XP' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-101" rel="nofollow">@coolxll</a>, 你原文中的错别字拉，哈哈～</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月1日</a>, <a href="http://coolxll.cn" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','coolxll.cn']);"  rel='external nofollow' class='url'>coolxll</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/chrome.png' title='Google Chrome 3.0.196.2' alt='Google Chrome' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_vista.png' title='Windows Vista' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-102" rel="nofollow">@dreamfree</a>, 已改正，谢谢</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月1日</a>, Eureka <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/firefox.png' title='Mozilla Firefox 3.5.1' alt='Mozilla Firefox' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows.png' title='Windows XP' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: Tor + foxyproxy + TwitterFox翻墙也不错</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月1日</a>, <a href="http://coolxll.cn" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','coolxll.cn']);"  rel='external nofollow' class='url'>coolxll</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/chrome.png' title='Google Chrome 3.0.196.2' alt='Google Chrome' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_vista.png' title='Windows Vista' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-104" rel="nofollow">@Eureka</a>, 
嗯，是不错
除了foxyproxy之外，如果你懒得自己维护列表，可以使用AutoProxy自动维护的G*F*W List

另外，觉得JAP也不错，速度比Tor快一点</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月1日</a>, Eureka <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/ie8.png' title='Internet Explorer 7.0' alt='Internet Explorer' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows.png' title='Windows XP' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-105" rel="nofollow">@coolxll</a>, 
我就翻墙更新下twitter
剩下的我直接用公司的vpn到然后用公司的tw代理上……</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月2日</a>, newdot <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" />     说到: 第一个接触的微博也是滔滔。今年3月8号注册的饭否，4月1号注册的twitter。</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月2日</a>, gaojiamin <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/firefox.png' title='Mozilla Firefox 3.5.1' alt='Mozilla Firefox' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows.png' title='Windows XP' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: 我的同学都不会用twitter。。。twitter完全和现实生活隔绝的感觉。。。。。。不知道twitter什么时候能解禁，那样我得把同学朋友拉来twitter才行</li><li><a href="http://coolxll.me/2009/08/2009-twitter-loving/">2009年08月2日</a>, <a href="http://coolxll.cn" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','coolxll.cn']);"  rel='external nofollow' class='url'>coolxll</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/chrome.png' title='Google Chrome 3.0.196.2' alt='Google Chrome' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_vista.png' title='Windows Vista' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-112" rel="nofollow">@gaojiamin</a>,  其实不翻墙一般使用Twitter 问题还是不大的。
只不过个人感觉，对于新手来说，Twitter的入门难道明显高于饭否，可惜饭否已经Out了。
我曾经也试图让一些同学用Twitter，不过大多都是注册之后，无疾而终，发了十几条、几十条 就byebye了。</li></ul><hr /><small>Copyright &copy; 2010<br />  <a href="http://coolxll.me">Coolxll's Secret Garden</a>,<a href="http://coolxll.me/2009/08/2009-twitter-loving/" title="原文链接">原文链接</a>，已有16条<a href="http://coolxll.me/2009/08/2009-twitter-loving/#comments" title="评论">评论</a>, 作者: <a href="http://coolxll.me" >coolxll</a><h3  class="related_post_title">相关文章：</h3><ul class="related_post"><li>2010年08月8日 -- <a href="http://coolxll.me/2010/08/2010-chinajoy/" title="2010 ChinaJoy 之观感">2010 ChinaJoy 之观感</a> (2)</li><li>2010年01月29日 -- <a href="http://coolxll.me/2010/01/how-to-get-retweeted-on-twitter/" title="译文：如何在Twitter上获得锐推">译文：如何在Twitter上获得锐推</a> (0)</li><li>2009年12月8日 -- <a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/" title="手机上的另类&ldquo;跳栏&rdquo;方法">手机上的另类&ldquo;跳栏&rdquo;方法</a> (6)</li><li>2009年09月30日 -- <a href="http://coolxll.me/2009/09/talk-about-twitter-and-microblog/" title="谈谈Twitter 与 微博客">谈谈Twitter 与 微博客</a> (13)</li><li>2011年02月13日 -- <a href="http://coolxll.me/2011/02/some-thought-about-communication-cos/" title="关于沟通成本的一些思考">关于沟通成本的一些思考</a> (7)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://coolxll.me/2009/08/2009-twitter-loving/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Blogger的分类用途（Blogger暂时搬去Yo2，因为和谐的原因）</title>
		<link>http://coolxll.me/2009/05/blogger%e7%9a%84%e5%88%86%e7%b1%bb%e7%94%a8%e9%80%94%ef%bc%88blogger%e6%9a%82%e6%97%b6%e6%90%ac%e5%8e%bbyo2%ef%bc%8c%e5%9b%a0%e4%b8%ba%e5%92%8c%e8%b0%90%e7%9a%84%e5%8e%9f%e5%9b%a0%ef%bc%89/</link>
		<comments>http://coolxll.me/2009/05/blogger%e7%9a%84%e5%88%86%e7%b1%bb%e7%94%a8%e9%80%94%ef%bc%88blogger%e6%9a%82%e6%97%b6%e6%90%ac%e5%8e%bbyo2%ef%bc%8c%e5%9b%a0%e4%b8%ba%e5%92%8c%e8%b0%90%e7%9a%84%e5%8e%9f%e5%9b%a0%ef%bc%89/#comments</comments>
		<pubDate>Sat, 09 May 2009 19:48:00 +0000</pubDate>
		<dc:creator>coolxll</dc:creator>
				<category><![CDATA[gfw]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[Yo2]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=168</guid>
		<description><![CDATA[紧急通告：本Blogger由于GFW被墙，暂时搬往Yo2，FeedSky的订阅地址不变，感谢大家的支持
一、回顾过去
这个Blogger用了也有一段时间了，从第一篇文章算起大概是半年吧。
想了一想，觉得还是把... ]]></description>
			<content:encoded><![CDATA[<p><span style="font-weight: bold;">紧急通告</span>：本Blogger由于GFW被墙，暂时搬往Yo2，FeedSky的订阅地址不变，感谢大家的支持</p>
<p style="background-color: #33cc00;">一、回顾过去</p>
<p>这个Blogger用了也有一段时间了，从第一篇文章算起大概是半年吧。<br />
想了一想，觉得还是把关于Life的部分另外单独写在Yo2吧，现在我注册的Yo2博客完全就是这个的克隆。<br />
（p.s. 按理来说从Blogger转换到WordPress是很方便的一件事情，因为WordPress本身就有导入的工具，不过由于伟大的G*F*W的缘故，Yo2不能导入blogger的文章，幸好我本地有个WordPress导入到本地，再用XML形式导出就Ok了，当然也要翻墙，用的是VPN）<br />
前几天，把这个Blogger绑定到了某个.cn域名上（表鄙视我，反正没啥大用处没用啥还不都一样，又不指望挣钱，所以嘛，cn域名反正比较便宜，cn域名的坏处也很明显，就是连Google Apps都用不了，orz，再补充一句，.jp/.us/.uk/.hk等地区域名都是支持Google Apps的）</p>
<p style="background-color: #33cc00;">二、现状分析</p>
<p>看了许多人的博客之后发现一个规律，生活归生活，技术的归技术，一定是要用两个blog来写才比较好，而且嘛，Life的文章，就像这篇一样，写的会比较随意一些，而写另一些观点或者技巧的文章的时候就算练习练习自己的写作技巧咯。（很希望能够有机会到平面媒体上发表些文章哈，最近经常看到有认识的同学、朋友在杂志、期刊上发表自己的文章甚是羡慕）<br />
不过，自己更新的频率较低，有没有必要分两个博客来写，还在纠结中。</p>
<p style="background-color: #33cc00;">三、未来展望</p>
<p>Blogger的用途 TechBlog<br />
Yo2的用途  LifeBlog</p>
<p style="background-color: #ff0000;">四、突发事件</p>
<p>很不幸的，Blogger于2009年5月15日再次被GFW墙奸，所以我准备搬回Yo2去用一阵子，我的Yo2的地址是<a href="http://coolxll.yo2.cn/">http://coolxll.yo2.cn </a>，你也可以通过<a href="http://lifeblog.coolxll.cn/">http://lifeblog.coolxll.cn</a> 进行访问，没买过Yo2的域名绑定服务，so…………</p>
<p>Feed地址可以用FeedSky订阅，<a href="http://feed.feedsky.com/coolxll">http://feed.feedsky.com/coolxll</a></p>
<hr />本来这篇文章想好好写的，不过既然被墙了，真没什么心情再写了，就这样将就发了，抱歉。</p>
<hr /><h2>已有评论</h2><ul><li><a href="http://coolxll.me/2009/05/blogger%e7%9a%84%e5%88%86%e7%b1%bb%e7%94%a8%e9%80%94%ef%bc%88blogger%e6%9a%82%e6%97%b6%e6%90%ac%e5%8e%bbyo2%ef%bc%8c%e5%9b%a0%e4%b8%ba%e5%92%8c%e8%b0%90%e7%9a%84%e5%8e%9f%e5%9b%a0%ef%bc%89/">2009年05月18日</a>, <a href="http://easepark.yo2.cn" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','easepark.yo2.cn']);"  rel='external nofollow' class='url'>Wheat0r</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" />     说到: 我们在坚持</li><li><a href="http://coolxll.me/2009/05/blogger%e7%9a%84%e5%88%86%e7%b1%bb%e7%94%a8%e9%80%94%ef%bc%88blogger%e6%9a%82%e6%97%b6%e6%90%ac%e5%8e%bbyo2%ef%bc%8c%e5%9b%a0%e4%b8%ba%e5%92%8c%e8%b0%90%e7%9a%84%e5%8e%9f%e5%9b%a0%ef%bc%89/">2009年05月18日</a>, teloon <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" />     说到: 你的feedsky的地址是什么？发到我邮箱吧~~
PS：上学期参加Firefox小组的，可惜这学期太忙了就没去了.</li><li><a href="http://coolxll.me/2009/05/blogger%e7%9a%84%e5%88%86%e7%b1%bb%e7%94%a8%e9%80%94%ef%bc%88blogger%e6%9a%82%e6%97%b6%e6%90%ac%e5%8e%bbyo2%ef%bc%8c%e5%9b%a0%e4%b8%ba%e5%92%8c%e8%b0%90%e7%9a%84%e5%8e%9f%e5%9b%a0%ef%bc%89/">2009年05月18日</a>, coolxll <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" />     说到: 我的FeedSky地址是 <a href="http://feed.feedsky.com/coolxll" rel="nofollow">FeedSky地址</a></li></ul><hr /><small>Copyright &copy; 2010<br />  <a href="http://coolxll.me">Coolxll's Secret Garden</a>,<a href="http://coolxll.me/2009/05/blogger%e7%9a%84%e5%88%86%e7%b1%bb%e7%94%a8%e9%80%94%ef%bc%88blogger%e6%9a%82%e6%97%b6%e6%90%ac%e5%8e%bbyo2%ef%bc%8c%e5%9b%a0%e4%b8%ba%e5%92%8c%e8%b0%90%e7%9a%84%e5%8e%9f%e5%9b%a0%ef%bc%89/" title="原文链接">原文链接</a>，已有3条<a href="http://coolxll.me/2009/05/blogger%e7%9a%84%e5%88%86%e7%b1%bb%e7%94%a8%e9%80%94%ef%bc%88blogger%e6%9a%82%e6%97%b6%e6%90%ac%e5%8e%bbyo2%ef%bc%8c%e5%9b%a0%e4%b8%ba%e5%92%8c%e8%b0%90%e7%9a%84%e5%8e%9f%e5%9b%a0%ef%bc%89/#comments" title="评论">评论</a>, 作者: <a href="http://coolxll.me" >coolxll</a><h3  class="related_post_title">相关文章：</h3><ul class="related_post"><li>2010年10月4日 -- <a href="http://coolxll.me/2010/10/blog-or-podcast/" title="博客还是播客？">博客还是播客？</a> (10)</li><li>2010年06月21日 -- <a href="http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/" title="Tips：解决 GAppProxy 等代理无法被局域网中其他客户端访问的问题">Tips：解决 GAppProxy 等代理无法被局域网中其他客户端访问的问题</a> (7)</li><li>2009年12月8日 -- <a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/" title="手机上的另类&ldquo;跳栏&rdquo;方法">手机上的另类&ldquo;跳栏&rdquo;方法</a> (6)</li><li>2009年08月1日 -- <a href="http://coolxll.me/2009/08/2009-twitter-loving/" title="恋上你的床，恋上Twitter">恋上你的床，恋上Twitter</a> (16)</li><li>2009年05月2日 -- <a href="http://coolxll.me/2009/05/disqus-%e8%af%95%e7%94%a8%e6%84%9f%e5%8f%97/" title="Disqus 试用感受">Disqus 试用感受</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://coolxll.me/2009/05/blogger%e7%9a%84%e5%88%86%e7%b1%bb%e7%94%a8%e9%80%94%ef%bc%88blogger%e6%9a%82%e6%97%b6%e6%90%ac%e5%8e%bbyo2%ef%bc%8c%e5%9b%a0%e4%b8%ba%e5%92%8c%e8%b0%90%e7%9a%84%e5%8e%9f%e5%9b%a0%ef%bc%89/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>[转载]发放FuckGFW的邀请码，要的留言。</title>
		<link>http://coolxll.me/2009/03/%e8%bd%ac%e8%bd%bd%e5%8f%91%e6%94%befuckgfw%e7%9a%84%e9%82%80%e8%af%b7%e7%a0%81%ef%bc%8c%e8%a6%81%e7%9a%84%e7%95%99%e8%a8%80%e3%80%82/</link>
		<comments>http://coolxll.me/2009/03/%e8%bd%ac%e8%bd%bd%e5%8f%91%e6%94%befuckgfw%e7%9a%84%e9%82%80%e8%af%b7%e7%a0%81%ef%bc%8c%e8%a6%81%e7%9a%84%e7%95%99%e8%a8%80%e3%80%82/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 13:12:00 +0000</pubDate>
		<dc:creator>coolxll</dc:creator>
				<category><![CDATA[gfw]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[FuckGFW]]></category>
		<category><![CDATA[推广]]></category>
		<category><![CDATA[翻墙]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=134</guid>
		<description><![CDATA[收到邀请帐号后，需要的同学可以留言向我索取。
本文将提供一种一劳永逸的翻墙方式（ssh -D），实施之后，那道墙——对你来说——将从此透明。
本文面向的用户：使用Windows作为操作系统... ]]></description>
			<content:encoded><![CDATA[<p><font color="#ff8040">收到邀请帐号后，需要的同学可以留言向我索取。</font></p>
<p>本文将提供一种一劳永逸的翻墙方式（ssh -D），实施之后，那道墙——对你来说——将从此透明。</p>
<p>本文面向的用户：使用Windows作为操作系统并且使用Firefox作为常用浏览器。</p>
<h2>第一步：免费获取拥有SSH权限的帐号和密码。</h2>
<p>默认的免费获取方式：将本文转载到你自己的博客上，将转载后的文章网址发送到<img title="" alt="f.ckgfw#gmail.com" src="http://photos.smugmug.com/photos/497999637_nw25h-O.png" />。</p>
<p>转载方式：拷贝<a href="https://dl.getdropbox.com/u/398/html.txt">文章代码</a>至博客后台HTML编辑器中，直接发布即可，文章标题自拟，可在前后文插入自己的评论。</p>
<p> <span class="fullpost">
<p>经过人工审核，你将收到一封附有五个拥有SSH权限的帐号和密码的电子邮件，你可以将它们赠与你自己的读者。</p>
<p>更多获取方式将在今后陆续激活，请关注帐号配送中心：<a href="https://friendfeed.com/rooms/fuckgfw-for-free">https://friendfeed.com/rooms/fuckgfw-for-free</a></p>
<h2>第二步：配置MyEntunnel软件</h2>
<p>下载并安装MyEntunnel，该软件全名为My Encrypted Tunnel。</p>
<p>一键下载：<a href="https://dl.getdropbox.com/u/398/myentunnel.exe">https://dl.getdropbox.com/u/398/myentunnel.exe</a></p>
<p><img title="" alt="myentunnel" src="http://photos.smugmug.com/photos/497956295_FRKXY-O.jpg" /></p>
<p>按照上图将第一步收到的帐号信息填写到相应的地方后，点击<img title="" alt="save" src="http://photos.smugmug.com/photos/497956305_GuUqV-O.jpg" />按钮，再点击<img title="" alt="hide" src="http://photos.smugmug.com/photos/497956257_vDBHg-O.jpg" />按钮。</p>
<p>第一次连接过程中会出现一个认证对话框，按照提示确认即可。以后的自动连接中将不再出现此认证对话框。</p>
<p>最后点击<img title="" alt="hide" src="http://photos.smugmug.com/photos/497956277_uqUyE-O.jpg" />按钮，使对话框隐藏到系统任务栏中。</p>
<p>提示：</p>
<p>为MyEntunnel创建一个快捷方式，将其复制到系统的【启动】（C:Documents and Settings当前用户名（需要修改成你自己的）「开始」菜单程序启动）文件夹中，今后开机便可自动启动软件，并自动连接服务器。</p>
<p><img title="" alt="tray" src="http://photos.smugmug.com/photos/497956351_pNNkc-O.png" /></p>
<p>绿色代表连接成功且稳定；黄色代表正在连接或重新连接；红色代表连接失败。</p>
<h2>第三步：配置Firefox浏览器</h2>
<p>假设你正使用<a href="http://www.mozilla.com/firefox">Firefox浏览器</a>阅读本文。</p>
<p>一键安装：<a href="http://autoproxy.mozdev.org/latest.xpi">http://autoproxy.mozdev.org/latest.xpi</a></p>
<p><img title="" alt="xpi-offical" src="http://photos.smugmug.com/photos/498951512_XzxSh-O.png" /></p>
<p>点击立即安装，安装后，重新启动Firefox。然后你会看到如下对话框，选择gfwlist (P.R.China)后，点击确定。</p>
<p><img title="" alt="gfwlist" src="http://photos.smugmug.com/photos/497956357_vmp9W-O.png" /></p>
<p>接着你会看到Firefox主界面右上角出现有一个“福”字图案，点击“福”。</p>
<p><img title="" alt="fu" src="http://photos.smugmug.com/photos/497956204_t4d3L-O.png" /></p>
<p>点击“代理服务器——编辑代理服务器”。</p>
<p><img title="" alt="edit" src="http://photos.smugmug.com/photos/497956317_yWwtL-O.png" /></p>
<p>随即出现如下画面，你会看到如GAppProxy、Tor和Your Freedom这样一系列代理服务器名称。</p>
<p><img title="" alt="before" src="http://photos.smugmug.com/photos/497956227_jQby9-O.png" /></p>
<p>将GAppProxy一栏的参数修改为如下图所示。</p>
<p><img title="" alt="after" src="http://photos.smugmug.com/photos/497956232_ttQRj-O.png" /></p>
<p>修改完毕后，点击确定。至此配置已全部就绪。</p>
<p>获取更多帮助，请关注反馈中心：<a href="https://friendfeed.com/rooms/fuckgfw-feedback">https://friendfeed.com/rooms/fuckgfw-feedback</a></p>
<h2>第四步：支持fuckGFW</h2>
<p>获取详情，请关注捐赠与推广中心：<a href="https://friendfeed.com/rooms/fuckgfw-donation-and-marketing">https://friendfeed.com/rooms/fuckgfw-donation-and-marketing</a></p>
<p> </span><br />
<h4>版权信息：您可以自由复制、传播、演绎本作品且无需署名、无需注明原始出处。</h4>
<hr /><h2>已有评论</h2><ul><li><a href="http://coolxll.me/2009/03/%e8%bd%ac%e8%bd%bd%e5%8f%91%e6%94%befuckgfw%e7%9a%84%e9%82%80%e8%af%b7%e7%a0%81%ef%bc%8c%e8%a6%81%e7%9a%84%e7%95%99%e8%a8%80%e3%80%82/">2009年04月17日</a>, Michael      说到: 怎么没人要？我要了吧<br />对GFW早就不爽了<br />直接给我回复吧</li><li><a href="http://coolxll.me/2009/03/%e8%bd%ac%e8%bd%bd%e5%8f%91%e6%94%befuckgfw%e7%9a%84%e9%82%80%e8%af%b7%e7%a0%81%ef%bc%8c%e8%a6%81%e7%9a%84%e7%95%99%e8%a8%80%e3%80%82/">2009年04月19日</a>, coolxll      说到: 发送到你的hotmail邮箱了<br /><br />就是你的Profile里的那个</li><li><a href="http://coolxll.me/2009/03/%e8%bd%ac%e8%bd%bd%e5%8f%91%e6%94%befuckgfw%e7%9a%84%e9%82%80%e8%af%b7%e7%a0%81%ef%bc%8c%e8%a6%81%e7%9a%84%e7%95%99%e8%a8%80%e3%80%82/">2009年04月22日</a>, Anonymous      说到: 还有没，朋友<br />请发至邮箱：billgate168@126.com<br />谢谢</li><li><a href="http://coolxll.me/2009/03/%e8%bd%ac%e8%bd%bd%e5%8f%91%e6%94%befuckgfw%e7%9a%84%e9%82%80%e8%af%b7%e7%a0%81%ef%bc%8c%e8%a6%81%e7%9a%84%e7%95%99%e8%a8%80%e3%80%82/">2009年04月23日</a>, Myzazhi1      说到: 博主可以给我一个吗？先表示感谢！^_^</li><li><a href="http://coolxll.me/2009/03/%e8%bd%ac%e8%bd%bd%e5%8f%91%e6%94%befuckgfw%e7%9a%84%e9%82%80%e8%af%b7%e7%a0%81%ef%bc%8c%e8%a6%81%e7%9a%84%e7%95%99%e8%a8%80%e3%80%82/">2009年04月23日</a>, coolxll      说到: LS的LS的已发送<br />邀请码 已经发完<br /><br />谢谢大家的关注<br /><br />再次感谢<br /><br />FriendFeed的这个的房间里应该还能要的邀请码，需要的朋友可以到那里尝试一下。</li><li><a href="http://coolxll.me/2009/03/%e8%bd%ac%e8%bd%bd%e5%8f%91%e6%94%befuckgfw%e7%9a%84%e9%82%80%e8%af%b7%e7%a0%81%ef%bc%8c%e8%a6%81%e7%9a%84%e7%95%99%e8%a8%80%e3%80%82/">2009年09月14日</a>, <a href="http://bingdong700.com" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','bingdong700.com']);"  rel='external nofollow' class='url'>冰冻</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/ie8.png' title='Internet Explorer 8.0' alt='Internet Explorer' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows.png' title='Windows XP' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: 文章地址已经失效呢，怎么办呢？我很想要一个</li><li><a href="http://coolxll.me/2009/03/%e8%bd%ac%e8%bd%bd%e5%8f%91%e6%94%befuckgfw%e7%9a%84%e9%82%80%e8%af%b7%e7%a0%81%ef%bc%8c%e8%a6%81%e7%9a%84%e7%95%99%e8%a8%80%e3%80%82/">2009年09月14日</a>, <a href="http://coolxll.cn" onclick="javascript:_gaq.push(['_trackEvent','outbound-commentauthor','coolxll.cn']);"  rel='external nofollow' class='url'>coolxll</a> <img src="http://coolxll.me/wp-content/plugins/comment-info-detector/flags/cn.png" title="CHINA" alt="CHINA" class="country-flag" /> <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/chrome.png' title='Google Chrome 4.0.206.1' alt='Google Chrome' width='14px' height='14px' class='browser-icon' />   <img src='http://coolxll.me/wp-content/plugins/comment-info-detector/browsers/windows_vista.png' title='Windows Vista' alt='Windows' width='14px' height='14px' class='os-icon' />   说到: <a href="#comment-306" rel="nofollow">@冰冻</a>, SSHGfw 现在也不提供SSH账号了，以前的账号也都已失效，需要SSH，可以购买国外主机的SSH服务，或者 blockcn 的也可以</li></ul><hr /><small>Copyright &copy; 2010<br />  <a href="http://coolxll.me">Coolxll's Secret Garden</a>,<a href="http://coolxll.me/2009/03/%e8%bd%ac%e8%bd%bd%e5%8f%91%e6%94%befuckgfw%e7%9a%84%e9%82%80%e8%af%b7%e7%a0%81%ef%bc%8c%e8%a6%81%e7%9a%84%e7%95%99%e8%a8%80%e3%80%82/" title="原文链接">原文链接</a>，已有7条<a href="http://coolxll.me/2009/03/%e8%bd%ac%e8%bd%bd%e5%8f%91%e6%94%befuckgfw%e7%9a%84%e9%82%80%e8%af%b7%e7%a0%81%ef%bc%8c%e8%a6%81%e7%9a%84%e7%95%99%e8%a8%80%e3%80%82/#comments" title="评论">评论</a>, 作者: <a href="http://coolxll.me" >coolxll</a><h3  class="related_post_title">相关文章：</h3><ul class="related_post"><li>2010年06月21日 -- <a href="http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/" title="Tips：解决 GAppProxy 等代理无法被局域网中其他客户端访问的问题">Tips：解决 GAppProxy 等代理无法被局域网中其他客户端访问的问题</a> (7)</li><li>2009年12月8日 -- <a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/" title="手机上的另类&ldquo;跳栏&rdquo;方法">手机上的另类&ldquo;跳栏&rdquo;方法</a> (6)</li><li>2009年08月1日 -- <a href="http://coolxll.me/2009/08/2009-twitter-loving/" title="恋上你的床，恋上Twitter">恋上你的床，恋上Twitter</a> (16)</li><li>2009年05月10日 -- <a href="http://coolxll.me/2009/05/blogger%e7%9a%84%e5%88%86%e7%b1%bb%e7%94%a8%e9%80%94%ef%bc%88blogger%e6%9a%82%e6%97%b6%e6%90%ac%e5%8e%bbyo2%ef%bc%8c%e5%9b%a0%e4%b8%ba%e5%92%8c%e8%b0%90%e7%9a%84%e5%8e%9f%e5%9b%a0%ef%bc%89/" title="Blogger的分类用途（Blogger暂时搬去Yo2，因为和谐的原因）">Blogger的分类用途（Blogger暂时搬去Yo2，因为和谐的原因）</a> (3)</li><li>2009年03月28日 -- <a href="http://coolxll.me/2009/03/%e4%bb%8a%e6%99%9a%ef%bc%8c%e5%9c%b0%e7%90%83%e4%b8%80%e5%b0%8f%e6%97%b6%e8%bd%ac%e8%bd%bd%ef%bc%89/" title="今晚，地球一小时(转载）">今晚，地球一小时(转载）</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://coolxll.me/2009/03/%e8%bd%ac%e8%bd%bd%e5%8f%91%e6%94%befuckgfw%e7%9a%84%e9%82%80%e8%af%b7%e7%a0%81%ef%bc%8c%e8%a6%81%e7%9a%84%e7%95%99%e8%a8%80%e3%80%82/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>将翻墙进行到底——AnchorFree Hotspot Shield</title>
		<link>http://coolxll.me/2009/01/%e5%b0%86%e7%bf%bb%e5%a2%99%e8%bf%9b%e8%a1%8c%e5%88%b0%e5%ba%95%e2%80%94%e2%80%94anchorfree-hotspot-shield/</link>
		<comments>http://coolxll.me/2009/01/%e5%b0%86%e7%bf%bb%e5%a2%99%e8%bf%9b%e8%a1%8c%e5%88%b0%e5%ba%95%e2%80%94%e2%80%94anchorfree-hotspot-shield/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 08:35:00 +0000</pubDate>
		<dc:creator>coolxll</dc:creator>
				<category><![CDATA[gfw]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[hotspot]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=24</guid>
		<description><![CDATA[不是我不乖，只是这网络实在是很让人伤脑筋。最近“连接被重置”的几率越来越高了。    所以在此，郑重向大家推荐一款免费的VPN软件——Hotspot Shield。
License:Free 
Requirements: Windows 2000/XP/Vista... ]]></description>
			<content:encoded><![CDATA[<p>不是我不乖，只是这网络实在是很让人伤脑筋。最近“连接被重置”的几率越来越高了。    <br />所以在此，郑重向大家推荐一款免费的VPN软件——Hotspot Shield。</p>
<blockquote><li><strong>License:</strong>Free </li>
<li><strong>Requirements: </strong>Windows 2000/XP/Vista </li>
<li><strong>Size:</strong>3.12MB </li>
</blockquote>
<p>下载：<iframe style="border-right: #dde5e9 1px solid; padding-right: 0px; border-top: #dde5e9 1px solid; padding-left: 0px; padding-bottom: 0px; margin: 3px; border-left: #dde5e9 1px solid; width: 240px; padding-top: 0px; border-bottom: #dde5e9 1px solid; height: 26px; background-color: #ffffff" marginwidth="0" marginheight="0" src="http://cid-505f80236cda4553.skydrive.live.com/embedrow.aspx/Software/Internet/VPN" frameborder="0" scrolling="no"></iframe></p>
<p> <span class="fullpost">
<p>软件界面如图:      <br /><a href="http://lh4.ggpht.com/_PKmoDtdGsjw/SYR9sJ_vveI/AAAAAAAABs8/zZTh1f0g8AU/s1600-h/image%5B3%5D.png" rel="lightbox[67083]"><img title="image" style="display: inline" height="371" alt="image" src="http://lh3.ggpht.com/_PKmoDtdGsjw/SYR9tmGgm0I/AAAAAAAABtA/MTVOgeI7hBg/image_thumb%5B1%5D.png?imgmax=800" width="404" /></a>&#160; <br />没有繁琐的设置，却有比带套（Tor）快的多的速度，不妨尝试一下。</p>
<p>软件的缺点：</p>
<ol>
<li>访问网页时带有广告（IE、Firefox和Chrome都有），不过使用Opera浏览器没有广告，所以你不妨使用Opera浏览器配合这款VPN一起使用。 <a href="http://lh3.ggpht.com/_PKmoDtdGsjw/SYR9wcJJuSI/AAAAAAAABtE/NXRkruI4zHU/s1600-h/image%5B7%5D.png" rel="lightbox[67083]"><img title="VPNad" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="240" alt="VPNad" src="http://lh3.ggpht.com/_PKmoDtdGsjw/SYR9x537kXI/AAAAAAAABtI/WUm-IYDtEGI/image_thumb%5B3%5D.png?imgmax=800" width="404" border="0" /></a>         <br /><a href="http://lh5.ggpht.com/_PKmoDtdGsjw/SYR9yxC9veI/AAAAAAAABtM/1HXYkIRR_aU/s1600-h/image%5B11%5D.png" rel="lightbox[67083]"><img title="VPNad2" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="204" alt="VPNad2" src="http://lh3.ggpht.com/_PKmoDtdGsjw/SYR9z78b4xI/AAAAAAAABtQ/J4ZVEYkv8ZY/image_thumb%5B5%5D.png?imgmax=800" width="404" border="0" /></a> </li>
<li>另外，由于是VPN，而不是代理服务器，所以你一切的网络连接，均经过它的服务器转向，没法选择，这也是美中不足的地方之一。 </li>
</ol>
<p> </span></p>
<hr /><small>Copyright &copy; 2010<br />  <a href="http://coolxll.me">Coolxll's Secret Garden</a>,<a href="http://coolxll.me/2009/01/%e5%b0%86%e7%bf%bb%e5%a2%99%e8%bf%9b%e8%a1%8c%e5%88%b0%e5%ba%95%e2%80%94%e2%80%94anchorfree-hotspot-shield/" title="原文链接">原文链接</a>，已有0条<a href="http://coolxll.me/2009/01/%e5%b0%86%e7%bf%bb%e5%a2%99%e8%bf%9b%e8%a1%8c%e5%88%b0%e5%ba%95%e2%80%94%e2%80%94anchorfree-hotspot-shield/#comments" title="评论">评论</a>, 作者: <a href="http://coolxll.me" >coolxll</a><h3  class="related_post_title">相关文章：</h3><ul class="related_post"><li>2010年06月21日 -- <a href="http://coolxll.me/2010/06/tips-solve-gappproxy-connection-problem-in/" title="Tips：解决 GAppProxy 等代理无法被局域网中其他客户端访问的问题">Tips：解决 GAppProxy 等代理无法被局域网中其他客户端访问的问题</a> (7)</li><li>2009年12月8日 -- <a href="http://coolxll.me/2009/12/over-the-wall-on-mobile/" title="手机上的另类&ldquo;跳栏&rdquo;方法">手机上的另类&ldquo;跳栏&rdquo;方法</a> (6)</li><li>2011年05月15日 -- <a href="http://coolxll.me/2011/05/implus-with-lbs/" title="IM+全新5.0版本，试水LBS">IM+全新5.0版本，试水LBS</a> (3)</li><li>2011年04月8日 -- <a href="http://coolxll.me/2011/04/how-to-install-macosx-via-harddis/" title="如果使用硬盘或者U盘来启动MacOSX安装程序">如果使用硬盘或者U盘来启动MacOSX安装程序</a> (2)</li><li>2010年07月17日 -- <a href="http://coolxll.me/2010/07/never-used-program-on-nokia-phone/" title="诺基亚手机上有多少你从来不会用到的程序">诺基亚手机上有多少你从来不会用到的程序</a> (8)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://coolxll.me/2009/01/%e5%b0%86%e7%bf%bb%e5%a2%99%e8%bf%9b%e8%a1%8c%e5%88%b0%e5%ba%95%e2%80%94%e2%80%94anchorfree-hotspot-shield/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

