<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>温和的力量</title>
	<atom:link href="http://douw.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://douw.wordpress.com</link>
	<description>努力变得温和</description>
	<lastBuildDate>Wed, 09 Mar 2011 06:49:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='douw.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>温和的力量</title>
		<link>http://douw.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://douw.wordpress.com/osd.xml" title="温和的力量" />
	<atom:link rel='hub' href='http://douw.wordpress.com/?pushpress=hub'/>
		<item>
		<title>python命令行tab自动补齐</title>
		<link>http://douw.wordpress.com/2011/03/09/tab-completion-in-python-cli/</link>
		<comments>http://douw.wordpress.com/2011/03/09/tab-completion-in-python-cli/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 06:10:45 +0000</pubDate>
		<dc:creator>douw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://douw.wordpress.com/2011/03/09/tab-completion-in-python-cli/</guid>
		<description><![CDATA[tab自动补齐是一个很方便的功能，结果是不管是什么程序，只要是命令行，我都要习惯性的连按tab键。Google了一个在python中启用tab自动补齐的方案和一个讨论。基本解决方法是使用readline和rlcompleter，解决的主要问题是mac osx下对tab键的识别。 #Code UUID = '9301d536-860d-11de-81c8-0023dfaa9e40' import sys try: import readline except ImportError: try: import pyreadline as readline # throw open a browser if we fail both readline and pyreadline except ImportError: import webbrowser webbrowser.open(&#34;http://ipython.scipy.org/moin/PyReadline/Intro#line-36&#34;) # throw open a browser &#8230; <a href="http://douw.wordpress.com/2011/03/09/tab-completion-in-python-cli/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=148&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>tab自动补齐是一个很方便的功能，结果是不管是什么程序，只要是命令行，我都要习惯性的连按tab键。Google了一个<a href="http://www.farmckon.net/2009/08/rlcompleter-how-do-i-get-it-to-work/" target="_blank">在python中启用tab自动补齐的方案</a>和一个<a href="http://stackoverflow.com/questions/675370/tab-completion-in-python-interpreter-in-os-x-terminal" target="_blank">讨论</a>。基本解决方法是使用readline和rlcompleter，解决的主要问题是mac osx下对tab键的识别。</p>
<pre class="brush: python;">
#Code  UUID = '9301d536-860d-11de-81c8-0023dfaa9e40'
import sys
try:
        import readline
except ImportError:
        try:
                import pyreadline as readline
        # throw open a browser if we fail both readline and pyreadline
        except ImportError:
                import webbrowser
                webbrowser.open(&quot;http://ipython.scipy.org/moin/PyReadline/Intro#line-36&quot;)
                # throw open a browser
        #pass
else:
        import rlcompleter
        if(sys.platform == 'darwin'):
                readline.parse_and_bind (&quot;bind ^I rl_complete&quot;)
        else:
                readline.parse_and_bind(&quot;tab: complete&quot;)
</pre>
<p>将以上代码保存为Home目录的.pythonrc.py，并且在.bash_profile文件中添加定义</p>
<pre class="brush: bash;">export PYTHONSTARTUP=$HOME/.pythonrc.py</pre>
<p>下次登录时就可以生效，等不及的话直接在terminal中运行以上语句。再次运行python，输入pr再按tab看看如何。</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/douw.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/douw.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/douw.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/douw.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/douw.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/douw.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/douw.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/douw.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/douw.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/douw.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/douw.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/douw.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/douw.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/douw.wordpress.com/148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=148&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://douw.wordpress.com/2011/03/09/tab-completion-in-python-cli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85d2d9296a280aa6d0405c2b70e2b09a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Wayne</media:title>
		</media:content>
	</item>
		<item>
		<title>Protected: seu vpn</title>
		<link>http://douw.wordpress.com/2010/11/11/seu-vpn/</link>
		<comments>http://douw.wordpress.com/2010/11/11/seu-vpn/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 22:10:00 +0000</pubDate>
		<dc:creator>douw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://douw.wordpress.com/2010/11/11/seu-vpn/</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=78&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post is password protected. You must visit the website and enter the password to continue reading.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/douw.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/douw.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/douw.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/douw.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/douw.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/douw.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/douw.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/douw.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/douw.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/douw.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/douw.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/douw.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/douw.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/douw.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=78&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://douw.wordpress.com/2010/11/11/seu-vpn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85d2d9296a280aa6d0405c2b70e2b09a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Wayne</media:title>
		</media:content>
	</item>
		<item>
		<title>woogle主题中文化</title>
		<link>http://douw.wordpress.com/2010/11/11/woogle%e4%b8%bb%e9%a2%98%e4%b8%ad%e6%96%87%e5%8c%96/</link>
		<comments>http://douw.wordpress.com/2010/11/11/woogle%e4%b8%bb%e9%a2%98%e4%b8%ad%e6%96%87%e5%8c%96/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 22:01:39 +0000</pubDate>
		<dc:creator>douw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://douw.wordpress.com/2010/11/11/woogle%e4%b8%bb%e9%a2%98%e4%b8%ad%e6%96%87%e5%8c%96/</guid>
		<description><![CDATA[现在用的这个WP主题是woogle，<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=86&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>现在用的这个WP主题是woogle，</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/douw.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/douw.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/douw.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/douw.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/douw.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/douw.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/douw.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/douw.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/douw.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/douw.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/douw.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/douw.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/douw.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/douw.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=86&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://douw.wordpress.com/2010/11/11/woogle%e4%b8%bb%e9%a2%98%e4%b8%ad%e6%96%87%e5%8c%96/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85d2d9296a280aa6d0405c2b70e2b09a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Wayne</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 10.04启用红点+中键滚动</title>
		<link>http://douw.wordpress.com/2010/08/27/ubuntu-10-04%e5%90%af%e7%94%a8%e7%ba%a2%e7%82%b9%e4%b8%ad%e9%94%ae%e6%bb%9a%e5%8a%a8/</link>
		<comments>http://douw.wordpress.com/2010/08/27/ubuntu-10-04%e5%90%af%e7%94%a8%e7%ba%a2%e7%82%b9%e4%b8%ad%e9%94%ae%e6%bb%9a%e5%8a%a8/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 20:04:16 +0000</pubDate>
		<dc:creator>douw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://douw.wordpress.com/2010/08/27/ubuntu-10-04%e5%90%af%e7%94%a8%e7%ba%a2%e7%82%b9%e4%b8%ad%e9%94%ae%e6%bb%9a%e5%8a%a8/</guid>
		<description><![CDATA[引自这里 Create a new file /usr/lib/X11/xorg.conf.d/20-thinkpad.conf with the following contents: Section &#8220;InputClass&#8221; Identifier &#8220;Trackpoint Wheel Emulation&#8221; MatchProduct &#8220;TrackPoint&#8221; MatchDevicePath &#8220;/dev/input/event*&#8221; Driver &#8220;evdev&#8221; Option &#8220;EmulateWheel&#8221; &#8220;true&#8221; Option &#8220;EmulateWheelButton&#8221; &#8220;2&#8243; Option &#8220;Emulate3Buttons&#8221; &#8220;false&#8221; Option &#8220;XAxisMapping&#8221; &#8220;6 7&#8243; Option &#8220;YAxisMapping&#8221; &#8220;4 5&#8243; EndSection<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=66&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>引自<a href="http://psung.blogspot.com/2010/04/thinkpad-trackpoint-scrolling-in-ubuntu.html" target="_blank">这里</a></p>
<blockquote><p>Create a new file /usr/lib/X11/xorg.conf.d/20-thinkpad.conf  with the following contents:</p>
<p>    Section &#8220;InputClass&#8221;<br />        Identifier &#8220;Trackpoint Wheel Emulation&#8221;<br />        MatchProduct &#8220;TrackPoint&#8221;<br />        MatchDevicePath &#8220;/dev/input/event*&#8221;<br />        Driver &#8220;evdev&#8221;<br />        Option &#8220;EmulateWheel&#8221; &#8220;true&#8221;<br />        Option &#8220;EmulateWheelButton&#8221; &#8220;2&#8243;<br />        Option &#8220;Emulate3Buttons&#8221; &#8220;false&#8221;<br />        Option &#8220;XAxisMapping&#8221; &#8220;6 7&#8243;<br />        Option &#8220;YAxisMapping&#8221; &#8220;4 5&#8243;<br />    EndSection</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/douw.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/douw.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/douw.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/douw.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/douw.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/douw.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/douw.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/douw.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/douw.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/douw.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/douw.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/douw.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/douw.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/douw.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=66&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://douw.wordpress.com/2010/08/27/ubuntu-10-04%e5%90%af%e7%94%a8%e7%ba%a2%e7%82%b9%e4%b8%ad%e9%94%ae%e6%bb%9a%e5%8a%a8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85d2d9296a280aa6d0405c2b70e2b09a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Wayne</media:title>
		</media:content>
	</item>
		<item>
		<title>(转)利用IPV6超级翻墙教程</title>
		<link>http://douw.wordpress.com/2010/07/03/%e8%bd%ac%e5%88%a9%e7%94%a8ipv6%e8%b6%85%e7%ba%a7%e7%bf%bb%e5%a2%99%e6%95%99%e7%a8%8b/</link>
		<comments>http://douw.wordpress.com/2010/07/03/%e8%bd%ac%e5%88%a9%e7%94%a8ipv6%e8%b6%85%e7%ba%a7%e7%bf%bb%e5%a2%99%e6%95%99%e7%a8%8b/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 09:09:37 +0000</pubDate>
		<dc:creator>douw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://douw.wordpress.com/2010/07/03/%e8%bd%ac%e5%88%a9%e7%94%a8ipv6%e8%b6%85%e7%ba%a7%e7%bf%bb%e5%a2%99%e6%95%99%e7%a8%8b/</guid>
		<description><![CDATA[利用IPV6超级翻墙教程——访问YouTube、Twitter、Picasa、Bloger等等 By Vanish posted in 系统技巧 on 五月 8, 2010 大家为了更多的了解墙外面的世界，于是大家想法设法的找各种翻墙方 法。本人也不想做个井底之蛙， 于是乎也学会很多翻墙方 法，什么在线代理、http代理、VPN代理、 SSH代理……. 但是很多是不理想的，网络限制、网速慢、要收费等等问题困扰。最近几个朋友告诉用IPV6翻墙啊！ 于是乎就在网络上搜集各种资料。 怎 么样使用和安装IPV6呢？ 利用IPV6看YouTube、 玩Twitter、看 Google的Picasa相册和上Bloger等等， 基本的翻墙流量网页基本上能够满足大家！而且速度也比较不错。可以使用国内的几个高校的IPV6隧道。 下面就教教大家基本的IPv6设 置、安装、使用方法吧！ 注意：XP和2003目前不支持IPV6,需要安装IPV6协议。Vista和windows7已 经默认支持。 方法 一:（适用于adsl直接拨号上网的方式） WindowsXp/2003的方法是，点击开始-&#62;运行，输入cmd 回车， 然后在弹出的命令框中照下面的样子输入命令，注意，是输入一行回车一下： C:Documents and SettingsAdministrator&#62;netsh netsh&#62;int netsh interface&#62;ipv6 netsh interface&#62;ipv6&#62;install &#8230; <a href="http://douw.wordpress.com/2010/07/03/%e8%bd%ac%e5%88%a9%e7%94%a8ipv6%e8%b6%85%e7%ba%a7%e7%bf%bb%e5%a2%99%e6%95%99%e7%a8%8b/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=41&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<h3><a rel="bookmark" href="http://vzone.me/system/ipv6-proxy-browsing-web.html">利用IPV6超级翻墙教程——访问YouTube、Twitter、Picasa、Bloger等等</a></h3>
<p><span>By <strong><a href="http://vzone.me/author/vanish/">Vanish</a></strong> posted  in <strong><a rel="category  tag" href="http://vzone.me/system">系统技巧</a></strong> on 五月 8, 2010</span></div>
<p><!-- End post-meta --></p>
<p id="_mcePaste"><strong>大家为了更多的了解墙外面的世界，于是大家想法设法的找各种<span><a href="http://vzone.me/tag/%e7%bf%bb%e5%a2%99" target="_blank">翻墙</a></span>方 法。本人也不想做个井底之蛙，</strong></p>
<p><strong>于是乎也学会很多<span><a href="http://vzone.me/tag/%e7%bf%bb%e5%a2%99" target="_blank">翻墙</a></span>方 法，什么在线<span><a href="http://vzone.me/tag/%e4%bb%a3%e7%90%86" target="_blank">代理</a></span>、http<span><a href="http://vzone.me/tag/%e4%bb%a3%e7%90%86" target="_blank">代理</a></span>、VPN<span><a href="http://vzone.me/tag/%e4%bb%a3%e7%90%86" target="_blank">代理</a></span>、 SSH代理…….</strong></p>
<p><strong>但是很多是不理想的，网络限制、网速慢、要收费等等问题困扰。最近几个朋友告诉用IPV6<span><a href="http://vzone.me/tag/%e7%bf%bb%e5%a2%99" target="_blank">翻墙</a></span>啊！</strong></p>
<p><strong>于是乎就在网络上搜集各种资料。</strong></p>
<p><strong> </strong><strong>怎 么样使用和安装IPV6呢？</strong></p>
<p><strong>利用IPV6看<span><a href="http://vzone.me/tag/youtube" target="_blank">YouTube</a></span>、 玩<span><a href="http://vzone.me/tag/twitter" target="_blank">Twitter</a></span>、看 Google的Picasa相册和上Bloger等等，</strong></p>
<p><strong>基本的翻墙流量网页基本上能够满足大家！而且速度也比较不错。可以使用国内的几个高校的IPV6隧道。</strong></p>
<p><strong>下面就教教大家基本的<span><a href="http://vzone.me/tag/ipv6" target="_blank">IPv6</a></span>设 置、安装、使用方法吧！</strong></p>
<p><strong> 注意：XP和2003目前不支持IPV6,需要安装IPV6协议。Vista和<span><a href="http://vzone.me/tag/windows7" target="_blank">windows7</a></span>已 经默认支持。</strong></p>
<p><strong><span id="more-441"> </span></strong></p>
<p><strong>方法 一:（适用于adsl直接拨号上网的方式）</strong></p>
<p id="_mcePaste">WindowsXp/2003的方法是，点击开始-&gt;运行，输入cmd 回车，</p>
<p>然后在弹出的命令框中照下面的样子输入命令，注意，是输入一行回车一下：</p>
<blockquote>
<p id="_mcePaste">C:Documents and SettingsAdministrator&gt;netsh</p>
<p id="_mcePaste">netsh&gt;int</p>
<p id="_mcePaste">netsh interface&gt;ipv6</p>
<p id="_mcePaste">netsh interface&gt;ipv6&gt;install</p>
<p id="_mcePaste">netsh interface ipv6&gt;isatap</p>
<p id="_mcePaste">netsh interface ipv6 isatap&gt;set router  isatap.sjtu.edu.cn</p>
</blockquote>
<p><strong>Vista/Win7的方法是鼠标右键点击“开始－&gt;程序－&gt;附件－&gt;命令提示符”，选择“以管理员身份运 行”。<br />
在新开启的【命令提示符】窗口中执行以下两条命令：</strong></p>
<blockquote><p>netsh interface ipv6 isatap set router isatap.sjtu.edu.cn<br />
netsh interface ipv6 isatap set state enabled</p></blockquote>
<p>执行完命令后，关闭所有浏览器，重新打开浏览器访问国外网站试试，也可以访问www.ipv6.org 看看你的页面。</p>
<p>(当你 看到 You are using <span><a href="http://vzone.me/tag/ipv6" target="_blank">IPv6</a></span> from 2001:…… 时，你就已经成功地将你的网络环境改为了IPV6。但我后来发现，</p>
<p>已经正常启用IPv6并能访问国外网站时，这里也提示的是You are using IPv4，这里原因未知哈。）</p>
<p>我用了上面的命令就已经成功了，记得要重新打开浏览器。</p>
<p id="_mcePaste">我在xp+ADSL/Win7+路由环境下测试成功。</p>
<p id="_mcePaste">有时候会遇到不成功的情况，请继续执行下面的命令。</p>
<blockquote>
<p id="_mcePaste">C:Documents and SettingsAdministrator&gt;netsh</p>
<p id="_mcePaste">netsh&gt;int</p>
<p id="_mcePaste">netsh interface&gt;ipv6</p>
<p id="_mcePaste">netsh interface&gt;ipv6&gt;install</p>
<p id="_mcePaste">netsh interface ipv6&gt;6to4</p>
<p id="_mcePaste">netsh interface ipv6 6to4&gt;set relay 202.112.26.246  enable</p>
</blockquote>
<p id="_mcePaste">执行到这里，如果还没能打开Ipv6，可以再尝试跳到最后一步，将所有域名记录加到本地hosts文件中。<br />
同时，建议你尝试将dns设置为”8.8.8.8″ 和 “8.8.4.4″，不知道如何设置DNS，就去问伟大的谷歌。</p>
<p>注意：最好把360关掉，把杀毒软件关掉(否则可能引起连接失败)。</p>
<p>上一张图片：<br />
<a href="http://sn18jw.bay.livefilestore.com/y1prqeCjA_0BAl_JiZ4ZeYcIm8EsABItqBPYYx9oxztgnoXcYefnBhqyNVG2poeEXc-e0yA_DWaiDwcOTSgQXCSM1vgMk52PWOj/ipv6.jpg"><img title="ipv6" src="http://sn18jw.bay.livefilestore.com/y1prqeCjA_0BAl_JiZ4ZeYcIm8EsABItqBPYYx9oxztgnoXcYefnBhqyNVG2poeEXc-e0yA_DWaiDwcOTSgQXCSM1vgMk52PWOj/ipv6.jpg" alt="" width="495" height="252" /></a></p>
<p>又一张图片：</p>
<p><a href="http://sn18jw.bay.livefilestore.com/y1pPRW1psX0PGWd0lzYrcaFslv1G6EODhw9Eywob0T1Alkd5XPQy8vr5ZgUh4UBNTlhImeSYKDLMJcezcdJApu1nSqR5y8c2xgn/youtube.jpg"><img title="youtube" src="http://sn18jw.bay.livefilestore.com/y1pPRW1psX0PGWd0lzYrcaFslv1G6EODhw9Eywob0T1Alkd5XPQy8vr5ZgUh4UBNTlhImeSYKDLMJcezcdJApu1nSqR5y8c2xgn/youtube.jpg" alt="" width="539" height="204" /></a>
</p>
<p id="_mcePaste"><strong>方法二：（适用于各种上网方式）</strong></p>
<p id="_mcePaste">这需要安装一个软件gogoCLIENT<a>，下载页面（需注册）：</a>http://gogonet.gogo6.com/page/download-1</p>
<p id="_mcePaste">有适用于Windows、Linux、mac各个操作系统使用的版本，根据实际情况下载。一般人的操作系统都是 Windows 32bit的。</p>
<p id="_mcePaste">为方便大家，下面提供各个版本的下载地址。（<strong>如果以下地址无法下载，请到官方注册账号进行下载</strong>）</p>
<p>windows 32位版: <a href="http://api.ning.com/files/eTQek6oePnyKxo4A4xnjAqlL--jue7OrZTywOyNFUEkGLmLsqQLT7dmVedGNEPUmRvEyVbcm-Bq0T1Q-fyLhWi-ctbx52DSn/gogoc1.2RELEASEwin32.exe" target="_blank">点击下载gogoCLIENT</a></p>
<p>windows 64位：<a href="http://api.ning.com/files/eTQek6oePnyf09jlLkAAW4a-kmGIPcck3HM13gtCQib3eoGx9KaoLLlm5DuufWnrx5b1irL5pXkT0feqbBiA2aPjgUwoSrUS/gogoc1.2RELEASEwin64.exe" target="_blank">点击下载gogoCLIENT</a></p>
<p>linux版：<a href="http://gogo6.com/downloads/gogoc-1_2-RELEASE.tar.gz" target="_blank">点击下载gogoCLIENT</a></p>
<p id="_mcePaste"><strong>装好后，直接运行程序，所有的设置都用默认的，点connect就行了（如图），</strong></p>
<p><strong>连接成功后右下角会弹出一个连接成功的信息。</strong><a href="http://sn18jw.bay.livefilestore.com/y1pW5YcG9_bvyJ-kFfyBlQ9QIy16oCZVI5sMxnX1TOGkOPSuey_Ukq31BCX8-VtQSgDIDwB5l6AfLHu0l2ygwPt2fSmFOBEhwLC/gogonet.jpg"><img title="gogonet" src="http://sn18jw.bay.livefilestore.com/y1pW5YcG9_bvyJ-kFfyBlQ9QIy16oCZVI5sMxnX1TOGkOPSuey_Ukq31BCX8-VtQSgDIDwB5l6AfLHu0l2ygwPt2fSmFOBEhwLC/gogonet.jpg" alt="" width="314" height="395" /></a></p>
<p id="_mcePaste">这个软件的原理是使用该软件的服务器作为中转访问ipv6的网络。</p>
<p id="_mcePaste">我在<span><a href="http://vzone.me/tag/windows7" target="_blank">windows7</a></span>+ 路由器上网环境下测试成功。</p>
<p id="_mcePaste">能成功使用ipv6网络后，你就可以用ipv6的方式访问Google了 （http://ipv6.google.com/ncr，不加ncr可能 会转到google.hk），</p>
<p>Google的图标会动哦！搜索“胡萝卜”，搜索结果页面正常显示。</p>
<p id="_mcePaste">不习惯英文的话，可以上 http://ipv6.google.com.hk，这里有简体中文的 页面</p>
<p id="_mcePaste">另外，经过测试，将以下内容添加到 C:WindowsSystem32driversetchosts  文件末尾，</p>
<p>可以正常访问youtube并观看视频OK</p>
<p><a href="http://sn18jw.bay.livefilestore.com/y1pP8lS_BuZRnCPR8GHtfmV0pylj4HfZuXcsl_6urp3YSQ7b-W1aOrnfvvzN6CHb_SmUoz1QR4SvCBEgNosmsFtqiFAAj77f1P7/youtube01.jpg"><img title="youtube.jpg" src="http://sn18jw.bay.livefilestore.com/y1pP8lS_BuZRnCPR8GHtfmV0pylj4HfZuXcsl_6urp3YSQ7b-W1aOrnfvvzN6CHb_SmUoz1QR4SvCBEgNosmsFtqiFAAj77f1P7/youtube01.jpg" alt="" width="583" height="316" /></a></p>
<p>可以访问<span><a href="http://vzone.me/tag/twitter" target="_blank">Twitter</a></span>上微博 看空姐了。</p>
<p><a href="http://sn18jw.bay.livefilestore.com/y1p9nCifyWJ6_9dPmNd35MGIAuiH2PCcOaG5vtGgSDSetH3t7HlHlh_xAty5_uxK8u5UuRh9i5PeygjciruYcHqE1ArFu-wleWr/twitter.jpg"><img title="twitter" src="http://sn18jw.bay.livefilestore.com/y1p9nCifyWJ6_9dPmNd35MGIAuiH2PCcOaG5vtGgSDSetH3t7HlHlh_xAty5_uxK8u5UuRh9i5PeygjciruYcHqE1ArFu-wleWr/twitter.jpg" alt="" width="586" height="313" /></a></p>
<p><strong>为大家提供几个高校的IPV6服务器地址</strong></p>
<p>中南大学 isatap.hust.edu.cn</p>
<p><span style="font-size:x-small;">上海交大 isatap.sjtu.edu.cn </span></p>
<p>将gogoCLIENT中的server address地址替换成以上高校地址就行了，</p>
<p>然后点apply——&gt;点connect就替换完成了。</p>
<p>以下是我自己使用的几个host地址.</p>
<p>115下载：<a href="http://u.115.com/file/f3339f303b">http://u.115.com/file/f3339f303b</a>（文 件IPv6-host.txt）</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/douw.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/douw.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/douw.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/douw.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/douw.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/douw.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/douw.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/douw.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/douw.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/douw.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/douw.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/douw.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/douw.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/douw.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=41&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://douw.wordpress.com/2010/07/03/%e8%bd%ac%e5%88%a9%e7%94%a8ipv6%e8%b6%85%e7%ba%a7%e7%bf%bb%e5%a2%99%e6%95%99%e7%a8%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85d2d9296a280aa6d0405c2b70e2b09a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Wayne</media:title>
		</media:content>

		<media:content url="http://sn18jw.bay.livefilestore.com/y1prqeCjA_0BAl_JiZ4ZeYcIm8EsABItqBPYYx9oxztgnoXcYefnBhqyNVG2poeEXc-e0yA_DWaiDwcOTSgQXCSM1vgMk52PWOj/ipv6.jpg" medium="image">
			<media:title type="html">ipv6</media:title>
		</media:content>

		<media:content url="http://sn18jw.bay.livefilestore.com/y1pPRW1psX0PGWd0lzYrcaFslv1G6EODhw9Eywob0T1Alkd5XPQy8vr5ZgUh4UBNTlhImeSYKDLMJcezcdJApu1nSqR5y8c2xgn/youtube.jpg" medium="image">
			<media:title type="html">youtube</media:title>
		</media:content>

		<media:content url="http://sn18jw.bay.livefilestore.com/y1pW5YcG9_bvyJ-kFfyBlQ9QIy16oCZVI5sMxnX1TOGkOPSuey_Ukq31BCX8-VtQSgDIDwB5l6AfLHu0l2ygwPt2fSmFOBEhwLC/gogonet.jpg" medium="image">
			<media:title type="html">gogonet</media:title>
		</media:content>

		<media:content url="http://sn18jw.bay.livefilestore.com/y1pP8lS_BuZRnCPR8GHtfmV0pylj4HfZuXcsl_6urp3YSQ7b-W1aOrnfvvzN6CHb_SmUoz1QR4SvCBEgNosmsFtqiFAAj77f1P7/youtube01.jpg" medium="image">
			<media:title type="html">youtube.jpg</media:title>
		</media:content>

		<media:content url="http://sn18jw.bay.livefilestore.com/y1p9nCifyWJ6_9dPmNd35MGIAuiH2PCcOaG5vtGgSDSetH3t7HlHlh_xAty5_uxK8u5UuRh9i5PeygjciruYcHqE1ArFu-wleWr/twitter.jpg" medium="image">
			<media:title type="html">twitter</media:title>
		</media:content>
	</item>
		<item>
		<title>如何去除wine菜单项</title>
		<link>http://douw.wordpress.com/2010/05/09/%e5%a6%82%e4%bd%95%e5%8e%bb%e9%99%a4wine%e8%8f%9c%e5%8d%95%e9%a1%b9/</link>
		<comments>http://douw.wordpress.com/2010/05/09/%e5%a6%82%e4%bd%95%e5%8e%bb%e9%99%a4wine%e8%8f%9c%e5%8d%95%e9%a1%b9/#comments</comments>
		<pubDate>Sun, 09 May 2010 03:53:05 +0000</pubDate>
		<dc:creator>douw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://douw.wordpress.com/2010/05/09/%e5%a6%82%e4%bd%95%e5%8e%bb%e9%99%a4wine%e8%8f%9c%e5%8d%95%e9%a1%b9/</guid>
		<description><![CDATA[ubuntu系统安装wine之后，即便卸载了，右键和菜单中仍有wine的身影——无论gnome还是KDE，解决方法很简单，将/home/&#60;username&#62;/.local/share/applications/目录下所有与wine相关的文件/目录删除掉就可以了。<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=106&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>ubuntu系统安装wine之后，即便卸载了，右键和菜单中仍有wine的身影——无论gnome还是KDE，解决方法很简单，将/home/&lt;username&gt;/.local/share/applications/目录下所有与wine相关的文件/目录删除掉就可以了。</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/douw.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/douw.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/douw.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/douw.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/douw.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/douw.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/douw.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/douw.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/douw.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/douw.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/douw.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/douw.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/douw.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/douw.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=106&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://douw.wordpress.com/2010/05/09/%e5%a6%82%e4%bd%95%e5%8e%bb%e9%99%a4wine%e8%8f%9c%e5%8d%95%e9%a1%b9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85d2d9296a280aa6d0405c2b70e2b09a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Wayne</media:title>
		</media:content>
	</item>
		<item>
		<title>emacs打开文件乱码的解决方法</title>
		<link>http://douw.wordpress.com/2010/04/18/emacs%e6%89%93%e5%bc%80%e6%96%87%e4%bb%b6%e4%b9%b1%e7%a0%81%e7%9a%84%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95/</link>
		<comments>http://douw.wordpress.com/2010/04/18/emacs%e6%89%93%e5%bc%80%e6%96%87%e4%bb%b6%e4%b9%b1%e7%a0%81%e7%9a%84%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 22:39:40 +0000</pubDate>
		<dc:creator>douw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://douw.wordpress.com/2010/04/18/emacs%e6%89%93%e5%bc%80%e6%96%87%e4%bb%b6%e4%b9%b1%e7%a0%81%e7%9a%84%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95/</guid>
		<description><![CDATA[emacs打开文件后常常因为默认编码与文档编码不同而显示为乱码。此时不用惊慌，只需C-x &#60;RET&#62; r ( M-x revert-buffer-with-coding-system) 来用指定的编码重新读入这个文件即可。一般乱码都是因为emacs下使用latin或者utf8，而打开的文档是gb2312编码。如果不记得编码类型就试一下，基本上gb2312都能解决。询问编码时记得用tab补齐比较方便。 另一种更方便的方法是使用unicad，下载unicad.el保存到相应目录（譬如.emacs中配置my-elisp文件夹为存放目录），然后在.emacs中声明(require &#8216;unicad)即可。这样下次打开文档时会自动判断编码类型，非常方便。 Powered by ScribeFire.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=76&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>emacs打开文件后常常因为默认编码与文档编码不同而显示为乱码。此时不用惊慌，只需C-x &lt;RET&gt; r ( M-x revert-buffer-with-coding-system) 来用指定的编码重新读入这个文件即可。一般乱码都是因为emacs下使用latin或者utf8，而打开的文档是gb2312编码。如果不记得编码类型就试一下，基本上gb2312都能解决。询问编码时记得用tab补齐比较方便。</p>
<p>另一种更方便的方法是使用<a target="_blank" href="http://code.google.com/p/unicad/wiki/FAQ_Chinese">unicad</a>，下载unicad.el保存到相应目录（譬如.emacs中配置my-elisp文件夹为存放目录），然后在.emacs中声明(require &#8216;unicad)即可。这样下次打开文档时会自动判断编码类型，非常方便。</p>
<p class="scribefire-powered">Powered by <a href="http://www.scribefire.com/">ScribeFire</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/douw.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/douw.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/douw.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/douw.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/douw.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/douw.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/douw.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/douw.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/douw.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/douw.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/douw.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/douw.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/douw.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/douw.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=76&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://douw.wordpress.com/2010/04/18/emacs%e6%89%93%e5%bc%80%e6%96%87%e4%bb%b6%e4%b9%b1%e7%a0%81%e7%9a%84%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85d2d9296a280aa6d0405c2b70e2b09a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Wayne</media:title>
		</media:content>
	</item>
		<item>
		<title>Emacs Daemon + emacsclient快速打开文档</title>
		<link>http://douw.wordpress.com/2010/04/17/emacs-daemon-emacsclient%e5%bf%ab%e9%80%9f%e6%89%93%e5%bc%80%e6%96%87%e6%a1%a3/</link>
		<comments>http://douw.wordpress.com/2010/04/17/emacs-daemon-emacsclient%e5%bf%ab%e9%80%9f%e6%89%93%e5%bc%80%e6%96%87%e6%a1%a3/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 22:49:54 +0000</pubDate>
		<dc:creator>douw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://douw.wordpress.com/2010/04/17/emacs-daemon-emacsclient%e5%bf%ab%e9%80%9f%e6%89%93%e5%bc%80%e6%96%87%e6%a1%a3/</guid>
		<description><![CDATA[$ cat `which ex` #!/bin/sh emacsclient -nc "$@" &#124;&#124; (emacs --daemon &#38;&#38; emacsclient -nc "$@") $ cat `which et` #!/bin/sh emacsclient -t "$@" &#124;&#124; (emacs --daemon &#38;&#38; emacsclient -t "$@") emacs &#8211;daemon可以添加到启动进程里，这样打开emacs的速度就很快了。不过现在有两个问题，一是.emacs的配置会有一些冲突，二十无论使用C+x 5 0还是C+x C+c关闭emacsclient，再次打开时查看已打开的buffer，之前的文档都没有关闭。 Powered by ScribeFire.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=46&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>$ cat `which ex`
#!/bin/sh
emacsclient -nc "$@" || (emacs --daemon &amp;&amp; emacsclient -nc "$@")
$ cat `which et`
#!/bin/sh
emacsclient -t "$@" || (emacs --daemon &amp;&amp; emacsclient -t "$@")</pre>
<p>emacs &#8211;daemon可以添加到启动进程里，这样打开emacs的速度就很快了。不过现在有两个问题，一是.emacs的配置会有一些冲突，二十无论使用C+x 5 0还是C+x C+c关闭emacsclient，再次打开时查看已打开的buffer，之前的文档都没有关闭。</p>
<p class="scribefire-powered">Powered by <a href="http://www.scribefire.com/">ScribeFire</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/douw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/douw.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/douw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/douw.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/douw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/douw.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/douw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/douw.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/douw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/douw.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/douw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/douw.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/douw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/douw.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=46&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://douw.wordpress.com/2010/04/17/emacs-daemon-emacsclient%e5%bf%ab%e9%80%9f%e6%89%93%e5%bc%80%e6%96%87%e6%a1%a3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85d2d9296a280aa6d0405c2b70e2b09a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Wayne</media:title>
		</media:content>
	</item>
		<item>
		<title>LaTeX+Beamer中的公式字体</title>
		<link>http://douw.wordpress.com/2010/04/16/latexbeamer%e4%b8%ad%e7%9a%84%e5%85%ac%e5%bc%8f%e5%ad%97%e4%bd%93/</link>
		<comments>http://douw.wordpress.com/2010/04/16/latexbeamer%e4%b8%ad%e7%9a%84%e5%85%ac%e5%bc%8f%e5%ad%97%e4%bd%93/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 05:17:04 +0000</pubDate>
		<dc:creator>douw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://douw.wordpress.com/2010/04/16/latexbeamer%e4%b8%ad%e7%9a%84%e5%85%ac%e5%bc%8f%e5%ad%97%e4%bd%93/</guid>
		<description><![CDATA[LaTeX+Beamer中将公式字体设置为times new roman，可以采用beamer字体主题professional，preamble中加入下面两行即可。 usepackage{times} usefonttheme{professionalfonts} Powered by ScribeFire.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=50&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>LaTeX+Beamer中将公式字体设置为times new roman，可以采用beamer字体主题professional，preamble中加入下面两行即可。
<pre>usepackage{times}
usefonttheme{professionalfonts}</pre>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=7db75438-d537-88e4-b479-af1324522991" /></div>
<p class="scribefire-powered">Powered by <a href="http://www.scribefire.com/">ScribeFire</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/douw.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/douw.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/douw.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/douw.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/douw.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/douw.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/douw.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/douw.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/douw.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/douw.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/douw.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/douw.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/douw.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/douw.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=50&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://douw.wordpress.com/2010/04/16/latexbeamer%e4%b8%ad%e7%9a%84%e5%85%ac%e5%bc%8f%e5%ad%97%e4%bd%93/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85d2d9296a280aa6d0405c2b70e2b09a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Wayne</media:title>
		</media:content>

		<media:content url="http://img.zemanta.com/pixy.gif?x-id=7db75438-d537-88e4-b479-af1324522991" medium="image" />
	</item>
		<item>
		<title>Ubuntu自定义快捷键</title>
		<link>http://douw.wordpress.com/2010/04/16/ubuntu%e8%87%aa%e5%ae%9a%e4%b9%89%e5%bf%ab%e6%8d%b7%e9%94%ae/</link>
		<comments>http://douw.wordpress.com/2010/04/16/ubuntu%e8%87%aa%e5%ae%9a%e4%b9%89%e5%bf%ab%e6%8d%b7%e9%94%ae/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 05:13:35 +0000</pubDate>
		<dc:creator>douw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://douw.wordpress.com/2010/04/16/ubuntu%e8%87%aa%e5%ae%9a%e4%b9%89%e5%bf%ab%e6%8d%b7%e9%94%ae/</guid>
		<description><![CDATA[在gnome桌面系统下，最直接的方法是在System-&#62;Preferences-&#62;Keyboard Shortcuts中定义，不过不够灵活。相对较为灵活的方式是使用gnome的注册表——gconf-editor. 运行gconf-editor，在/apps/metacity下可以灵活的设置快捷键，global_keybindings是全局快捷键，window_keybindings是窗口操作的快捷键，这里可以实现一些更灵活的窗口操控，例如move_to_corner_ne，望文生义即可知是将窗口移动到右上角，maximize_vertically是垂直方向最大化。这些窗口控制可以很方便的完成桌面的窗口布局。 Powered by ScribeFire.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=69&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>在gnome桌面系统下，最直接的方法是在System-&gt;Preferences-&gt;Keyboard Shortcuts中定义，不过不够灵活。相对较为灵活的方式是使用gnome的注册表——gconf-editor. 运行gconf-editor，在/apps/metacity下可以灵活的设置快捷键，global_keybindings是全局快捷键，window_keybindings是窗口操作的快捷键，这里可以实现一些更灵活的窗口操控，例如move_to_corner_ne，望文生义即可知是将窗口移动到右上角，maximize_vertically是垂直方向最大化。这些窗口控制可以很方便的完成桌面的窗口布局。</p>
<p class="scribefire-powered">Powered by <a href="http://www.scribefire.com/">ScribeFire</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/douw.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/douw.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/douw.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/douw.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/douw.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/douw.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/douw.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/douw.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/douw.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/douw.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/douw.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/douw.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/douw.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/douw.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=douw.wordpress.com&amp;blog=4500725&amp;post=69&amp;subd=douw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://douw.wordpress.com/2010/04/16/ubuntu%e8%87%aa%e5%ae%9a%e4%b9%89%e5%bf%ab%e6%8d%b7%e9%94%ae/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85d2d9296a280aa6d0405c2b70e2b09a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Wayne</media:title>
		</media:content>
	</item>
	</channel>
</rss>
