<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>杂乱的书桌</title>
	<atom:link href="http://www.quhuashuai.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.quhuashuai.com</link>
	<description>我学习，我思考，我记录</description>
	<lastBuildDate>Fri, 17 Apr 2009 18:25:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>zh-cn</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.4" -->
		<copyright>2007-2008 </copyright>
		<managingEditor>quhuashuai@gmail.com (杂乱的书桌)</managingEditor>
		<webMaster>quhuashuai@gmail.com (杂乱的书桌)</webMaster>
		<category>posts</category>
		<ttl>1440</ttl>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>我学习，我思考，我记录</itunes:summary>
		<itunes:author>杂乱的书桌</itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name>杂乱的书桌</itunes:name>
			<itunes:email>quhuashuai@gmail.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://www.quhuashuai.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://www.quhuashuai.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>杂乱的书桌</title>
			<link>http://www.quhuashuai.com</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>Archlinux下给T43添加Win键(Super键)</title>
		<link>http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/</link>
		<comments>http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 16:17:18 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[电脑应用]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=342</guid>
		<description><![CDATA[为了使用FVWM的需要，Super键，或者说Windows键是必不可少的，可是自己的T43上面只有两个Alt键，所以比较可行的选择就是把右边那个变成Windows键。本来很久之前就已经搞定了，只是最近的一次升[...]]]></description>
			<content:encoded><![CDATA[<p>为了使用FVWM的需要，Super键，或者说Windows键是必不可少的，可是自己的T43上面只有两个Alt键，所以比较可行的选择就是把右边那个变成Windows键。本来很久之前就已经搞定了，只是最近的一次升级之后，不知道为什么以前的修改失效了，花了点时间改好之后特意记录下来。以前的修改是靠xkeycaps自动完成的，但是估计这个程序是很久以前的，里面有的键盘种类比较少，这次我怎么改都没有成功，所以才开始动手自己寻找解决办法。</p>
<p><span style=" font-size:large;">需要的工具：</span></p>
<p>只需要xev以及xmodmap就可以搞定，我不确定是不是系统自带的，如果没有的话，使用pacman或者yaourt自己装一下就好了。</p>
<p><span style=" font-size:large;">修改原理：</span></p>
<p>这个修改的工作是由xmodmap完成的，它的功能就是完成键盘的物理键映射到计算机内部的逻辑键，也就是说，如果你愿意，你可以修改任意的按键，完全打乱键盘的次序都没有关系。xmodmap完成键映射的命令格式是： <em>xmodmap -e &#8220;keycode NUMBER = KEYNAME&#8221;</em> 。其中 <em>keycode</em> 是关键字， <em>NUMBER</em> 是键的编号，也即物理名称， <em>KEYNAME</em> 是逻辑名称，即计算机内部把序号为 <em>NUMBER</em> 的键当 <em>KEYNAME</em> 处理。如果需要的话可以可以直接<em>man xmodmap </em>查看。</p>
<p>另外我们可以把我们所做的修改写入配置文件当中，比如常用的 <em>~/.Xmodmap</em>，同时我们只需要修改 <em>~/.xinitrc</em>文件，加入<em>xmodmap ~/.Xmodmap </em>这条语句，这样在我们每次启动X之后，你所希望的配置就已经启用了。当然配置文件当中还有一些类似remove和add的语句，很容易理解，大家可以看下后面的过程。</p>
<p><span style=" font-size:large;">修改步骤:</span></p>
<p>因为我个人想要把右边的Alt键修改为Super键，所以后面的步骤当中都是在这个基础之上的。</p>
<ul>
<li >在命令行下输入xev，然后在跳出的那个小窗口当中按下右侧的Alt键（或者任何你想要修改的按键），观察终端下面出现的提示信息，在这里我们可以找到<em>keycode NUMBER</em>以及<em>KEYNAME，</em>在我这里输出信息为：</li>
</ul>
<p><code> KeyRelease event, serial 35, synthetic NO, window 0x3800001, root 0x82, subw 0x3800002, time 6287212, (20,28), root:(42,90), state 0x40, keycode 108 (keysym 0xffec, Alt_R), same_screen YES, XLookupString gives 0 bytes: XFilterEvent returns: False </code>
<p style=" -qt-block-indent:1;">我们所需要的信息就是keycode 108，以及括号当中的Alt_R。 </p>
<ul>
<li > 我们需要查看我们当前的按键配置，在命令行下输入xmodmap，我们可以看到在mod1一行当中有Super_R, Alt_R，同时在mod4下面有Super_L，Hyper_L，知道了当前配置之后我们才可以进行修改。</li>
</ul>
<ul>
<li >接下来我们需要在$HOME目录下面建立一个.Xmodmap文件，在里面写入：</li>
</ul>
<p><code>remove Mod1 = Super_R Alt_R<br />
 remove Mod4 = Super_L Hyper_L<br />
keycode 0x6c = Super_R<br />
add Mod4 = Super_R</code> </p>
<p> 所以第一行我们把Super_R和Alt_R从当前的mod1当中删除，第二行把Super_L以及Hyper_L从当前的mod4当中删除，第三行将当前的Alt_R键映射为Super_R键，值得注意的是keycode之后的0&#215;6c其实是我们之前得到的keycode 108的16进制表示方式，最后一行便是将Super_R键加入到当前的mod4当中。</p>
<ul>
<li >这样之后我们就可以在FVWM的配置文件中，使用Mod4，也就是Super键了。不过需要说明的是，如果只是为了在fvwm当中使左右的Alt键具有不同的功能，我们需要做的只是在<em>~/.Xmodmap</em>当中将Alt_L保存在mod1当中，而将Alt_R保存在mod4中，相信这样就没有问题了，只是你要使用compiz之类的东西的话，需要Super键的存在。</li>
</ul>
<p>基本上就是这样的过程，希望能够帮上那些和我一样的新手。</p>
<blockquote></blockquote>
<blockquote></blockquote>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=342&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2009. |
<a href="http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/">Permalink</a> |
<a href="http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/#comments">15 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/&amp;title=Archlinux下给T43添加Win键(Super键)">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/features/" rel="tag">features</a>, <a href="http://www.quhuashuai.com/tag/linux/" rel="tag">linux</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2008/02/body-building-faq-for-man/" title="男生｜运动｜增肌｜减肥 FAQ (2008-02-01)">男生｜运动｜增肌｜减肥 FAQ</a> (9)</li>
	<li><a href="http://www.quhuashuai.com/2007/12/protect-your-teeth/" title="爱自己，从爱牙齿做起 (2007-12-31)">爱自己，从爱牙齿做起</a> (28)</li>
	<li><a href="http://www.quhuashuai.com/2008/03/how-to-do-personal-knowledge-management/" title="如何进行个人知识管理 (2008-03-29)">如何进行个人知识管理</a> (44)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/what-to-do-when-commute/" title="如何利用乘车的时间 (2008-10-05)">如何利用乘车的时间</a> (29)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/how-to-tackle-anti-study-mood/" title="如何克服暂时的厌学情绪 (2008-10-06)">如何克服暂时的厌学情绪</a> (18)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/write-dokuwiki-in-vim/" title="在vim中管理dokuwiki (2008-10-01)">在vim中管理dokuwiki</a> (4)</li>
	<li><a href="http://www.quhuashuai.com/2008/09/first-blog-in-recent-four-months/" title="四个月来的第一篇文章 (2008-09-08)">四个月来的第一篇文章</a> (24)</li>
	<li><a href="http://www.quhuashuai.com/2008/04/usa-online-casinos/" title="USA Online Casinos (2008-04-04)">USA Online Casinos</a> (0)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Gigapedia，想下载电子书的来这里！,</title>
		<link>http://www.quhuashuai.com/2009/04/download-books-on-gigapedia/</link>
		<comments>http://www.quhuashuai.com/2009/04/download-books-on-gigapedia/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 23:49:12 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[个人发展]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[书籍]]></category>
		<category><![CDATA[在线资源]]></category>
		<category><![CDATA[学习]]></category>
		<category><![CDATA[数学]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=323</guid>
		<description><![CDATA[  有很多的朋友在我之前的一篇文章下面留言，寻找电子书，当然基本上都是数学系的朋友了，我虽然已经回复并且发给很多朋友一些电子书了，不过一方面由于自己保存的电子书也是有限，另[...]]]></description>
			<content:encoded><![CDATA[<p>
有很多的朋友在我<a href="http://www.quhuashuai.com/2007/08/bibliography_for_math_student/">之前的一篇文章</a>下面留言，寻找电子书，当然基本上都是数学系的朋友了，我虽然已经回复并且发给很多朋友一些电子书了，不过一方面由于自己保存的电子书也是有限，另一方面几十MB的东西有时候无论发还是收都有点麻烦。
</p>
<p>
今天主要是为了推荐给大家这个网站:<a href="http://gigapedia.org"> gigapedia.org </a>。相信有了这个网站之后，在我博客里面留言的朋友会越来越少，不过大家能够找到的电子书会越来越多。gigapedia最初是<a href="http://jefftan.cn">Jeff同学</a>推荐给我的，现在也是我觉得最好的一个寻找并且下载电子书的地方了，对于在外留学可是又不舍得花钱买书的朋友，这里应该是个理想的去处，在我看来，数学方面的多数书籍，如果你在这里找不到电子版的话，基本上你就老老实实去买本书好了。
</p>
<p>还是应该简单的说一些使用的方法，首先，你需要做的就是注册一个帐号，之后你就可以享用这里无限的资源了。当你需要查找某本书的时候，使用页面右上角的搜索栏，需要注意的时候，把搜索栏选择为gigapedia，而不是默认的google，你可以选择搜索作者的名字或者书名，搜索的结果会将书名，作者以及封面都显示出来。点击你想要下载的书籍，（先不要着急，要找到下载的地址还需要一定的时间），新的页面里面会出现四个tab，分别是description, links, comments, tags, 我们可以在links这个标签下面找到下载链接，需要注意的是，很多时候会有两个甚至更多的链接，接下来你可以查看下上传时间以及comments里面的评论，选择最好的一个链接来下载。基本上这些书都是存放在rapidshare或者ifile这些网络硬盘的站点，我们可以作为免费用户进行下载，只是有一定限制而已，如果你每次只是找一本书的话一点问题都没有。不过相比而言，ifile要更好一些，因为两次下载之间没有时间限制，而rapidshare会需要你等待10几分钟之后才可以再次下载。</p>
<p>gigapedia当然并不仅仅是有数学方面的书籍，这里能找到的书籍简直无法想象，所以如果你的朋友也在找电子书的话，不妨推荐给他。现在看来，美国数学系用的研究生教材，在这里多数都可以找到，希望这个网站会出现在更多朋友的收藏夹里面。</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=323&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2009. |
<a href="http://www.quhuashuai.com/2009/04/download-books-on-gigapedia/">Permalink</a> |
<a href="http://www.quhuashuai.com/2009/04/download-books-on-gigapedia/#comments">11 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2009/04/download-books-on-gigapedia/&amp;title=Gigapedia，想下载电子书的来这里！,">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/features/" rel="tag">features</a>, <a href="http://www.quhuashuai.com/tag/%e4%b9%a6%e7%b1%8d/" rel="tag">书籍</a>, <a href="http://www.quhuashuai.com/tag/online-resource/" rel="tag">在线资源</a>, <a href="http://www.quhuashuai.com/tag/%e5%ad%a6%e4%b9%a0/" rel="tag">学习</a>, <a href="http://www.quhuashuai.com/tag/%e6%95%b0%e5%ad%a6/" rel="tag">数学</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/contact/" title="联系方式 (2007-09-09)">联系方式</a> (84)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/determine-your-study-time/" title="确定每天的学习时间 (2008-10-11)">确定每天的学习时间</a> (65)</li>
	<li><a href="http://www.quhuashuai.com/2008/02/body-building-faq-for-man/" title="男生｜运动｜增肌｜减肥 FAQ (2008-02-01)">男生｜运动｜增肌｜减肥 FAQ</a> (9)</li>
	<li><a href="http://www.quhuashuai.com/2007/12/protect-your-teeth/" title="爱自己，从爱牙齿做起 (2007-12-31)">爱自己，从爱牙齿做起</a> (28)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/is-it-necessary-to-reorganize-notes/" title="整理笔记的必要性？ (2008-10-07)">整理笔记的必要性？</a> (17)</li>
	<li><a href="http://www.quhuashuai.com/2008/01/7-bad-habits-in-study/" title="我的大学：学习中的八大坏习惯 (2008-01-16)">我的大学：学习中的八大坏习惯</a> (34)</li>
	<li><a href="http://www.quhuashuai.com/2008/01/how-to-use-youtube/" title="我的Youtube使用及精彩频道推荐 (2008-01-25)">我的Youtube使用及精彩频道推荐</a> (11)</li>
	<li><a href="http://www.quhuashuai.com/2007/08/start_my_own_blog/" title="开始自己的博客历程 (2007-08-14)">开始自己的博客历程</a> (2)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2009/04/download-books-on-gigapedia/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Autobild 汽车画报网</title>
		<link>http://www.quhuashuai.com/2008/11/autobild-enters-china-market/</link>
		<comments>http://www.quhuashuai.com/2008/11/autobild-enters-china-market/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 16:47:02 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[胡言乱语]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=306</guid>
		<description><![CDATA[Autobild汽车画报网是全球最大的汽车媒体AUTOBILD在中国投资创建的互联网媒体公司。第一次看到这个名字的时候当作autobid，后来了解后才知道bild是德语当中画报的意思。
第一次打开Autobild汽车[...]]]></description>
			<content:encoded><![CDATA[<p>Autobild汽车画报网是全球最大的汽车媒体AUTOBILD在中国投资创建的互联网媒体公司。第一次看到这个名字的时候当作autobid，后来了解后才知道bild是德语当中画报的意思。</p>
<p>第一次打开Autobild汽车画报网时遇到了一点小问题，发现是flashblock这个Firefox插件的原因，添加例外之后就好了。首页中的三维车模展示让人印象深刻：
<div align="center"><img src="http://www.quhuashuai.com/wp-content/uploads/2008/11/autobild.png" /></div>
<p>并且从性能，空间，舒适，外观以及安全等方面详细介绍了车辆的一系列参数；完全按照真车制作的这个视频，甚至可以让你很好的了解车内的状况；同时可以通过品牌，系列以及价格进行搜索，寻找自己感兴趣的车辆；在索引当中能够比较容易的横向比较这些车辆的参数，使用起来非常的方便。如果非要说这个三维展示有什么不好的话，就是flash的载入速度上面有些稍慢，可是想到这么详细的资料，也是可以接受的，而且如果有更多的车型能够加入到这个三维展示当中来就更好了。</p>
<p>作为一个用户，对于汽车网站的期望有这样几个方面：评测、导购、交流，而Autobild汽车画报网很好的将这三项内容提供给了用户。</p>
<p>关于评测方面，可以非常容易的在上方的导航栏中找到。Autobild的评测内容均以原创为主，同时评测的种类也是非常之多：初步的和深度的，新车和旧车，都有不少好的评测文章；如果你在某几款车辆中犹豫不决的，也可以看看这里的对比评测，相信能够帮你做出更好的选择。
<div align="center"></div>
<div align="center"><img style="max-width: 800px;" src="http://www.quhuashuai.com/wp-content/uploads/2008/11/autobild11.png" /></div>
<p>作为汽车的消费者来说，如何购车是个很大的问题。Autobild汽车画报网的导购专栏能够给你不小的帮助：如果你是初次买车，买车攻略相信是你所必须的了；如果你想了解新车性能的话，可以去看看热门推荐这个版块的内容；像我这种只有钱买二手车的人，也可以在这里学到不少的内容。
<div align="center"><img style="max-width: 800px;" src="http://www.quhuashuai.com/wp-content/uploads/2008/11/autobild21.png" /></div>
<p>最后一点就是车友之间的交流。如果你想认识更多的汽车爱好者的话，汽车画报网的社区毫无疑问是你应该去的地方，通过博客，我的车库等等功能，你能够更好的了解其他的车友，找到与你兴趣相同的朋友。</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=306&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/11/autobild-enters-china-market/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/11/autobild-enters-china-market/#comments">6 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/11/autobild-enters-china-market/&amp;title=Autobild 汽车画报网">del.icio.us</a>
<br/>
Post tags: <br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/11/autobild-enters-china-market/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>MATLAB 2008b下载地址</title>
		<link>http://www.quhuashuai.com/2008/11/matlab-2008b-download/</link>
		<comments>http://www.quhuashuai.com/2008/11/matlab-2008b-download/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 23:20:39 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[电脑应用]]></category>
		<category><![CDATA[matlab]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=297</guid>
		<description><![CDATA[Matlab 2008B发布已经有一个多月的时间了，现在thePirateBay上面也有了Linux和Windows系统下的安装文件。
具体的下载地址在这里：

Linux以及Mac的下载地址
Windows的下载地址
Verycd上面的Windows版本下载

[...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://www.quhuashuai.com/tag/matlab"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;"Matlab"&#30340;&#25991;&#31456;"  rel="external">Matlab</a> 2008B发布已经有一个多月的时间了，现在thePirateBay上面也有了<a href="http://www.quhuashuai.com/tag/linux"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;"Linux"&#30340;&#25991;&#31456;"  rel="external">Linux</a>和Windows系统下的安装文件。<br />
具体的下载地址在这里：</p>
<ul>
<li><a href="http://thepiratebay.org/torrent/4510366/Mathworks.Matlab.R2008b.UNIX.DVD.ISO-TBE">Linux以及Mac的下载地址</a></li>
<li><a href="http://thepiratebay.org/torrent/4488640/Mathworks.Matlab.R2008b.DVD.ISO-TBE">Windows的下载地址</a></li>
<li><a href="http://www.verycd.com/topics/430963/">Verycd上面的Windows版本下载</a></li>
</ul>
<p>
安装方法其实还是和以前一样，Windows的很容易，Linux下面就是解压，挂载，安装，破解就好了，如果不太熟悉安装方法的话，可以查看我以前写过的<a href="http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/">《Archlinux下安装Matlab 2008a》</a>和<a href="http://www.quhuashuai.com/2007/08/install_matlab_on_ubuntu/">《Ubuntu下matlab安装过程》</a>，一般只是在破解的方法上稍微有些区别，所以下载完成之后需要仔细阅读readme或者crack文件。Matlab2008b中有server license和standalone license，破解的方法稍有区别。
</p>
<p>
有人总会喜欢跟着最新版本走，可是并不是每个人都需要这些最新的功能，不过还是看看最新发布的Matlab的Latest Features:
</p>
<h3>Matlab中的新功能</h3>
<ul>
<li> Function Browser for finding functions, and automatic help for function arguments, in MATLAB</li>
<li> New algorithms for random number generation in MATLAB, including ability to create multiple independent streams</li>
<li> Support for netCDF and JPEG 2000 file formats in MATLAB </li>
<li> Ability to deploy Parallel Computing Toolbox applications using MATLAB Compiler that run with MATLAB Distributed Computing Server</li>
<li> New notebook interface in Symbolic Math Toolbox for managing and documenting symbolic computations, plus access to MuPAD symbolic engine and language directly from MATLAB</li>
<li> Nonlinear mixed-effects (NLME) models in Statistics Toolbox </li>
<li>Econometrics Toolbox, a new product for economic forecasting and risk management that incorporates the functionality of GARCH Toolbox </li>
</ul>
<h3>Simulink中的新功能</h3>
<ul>
<li> MATLAB based language in Simscape for authoring of physical modeling components </li>
<li> Fixed-point data types up to 128 bits for accelerated simulation, automatic code generation, Embedded MATLAB code, and Simulink Fixed Point
<li>
<li> Support for embedding Simulink function-call subsystems in Stateflow charts </li>
<li> Target-specific code generation for Embedded MATLAB code, and generation of encapsulated C++ class interfaces, in Real-Time Workshop Embedded Coder </li>
<li> CD and network boot options and real-time Ethernet I/O support in xPC Target </li>
<li> SimElectronics, a new product for modeling and simulating electronic and electromechanical systems  </li>
</ul>
<p>
另外如果有兴趣的话可以查看官方的这些介绍新功能的视频：<a href="http://www.mathworks.com/products/matlab/whatsnew.html#">地址在这里</a>。据称这个版本中还出现了一些Bug，这个我倒是不太清楚，不过现在的Matlab越来越大了！</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=297&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/11/matlab-2008b-download/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/11/matlab-2008b-download/#comments">7 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/11/matlab-2008b-download/&amp;title=MATLAB 2008b下载地址">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/matlab/" rel="tag">matlab</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2007/08/install_matlab_on_ubuntu/" title="Ubuntu下安装matlab过程 (2007-08-15)">Ubuntu下安装matlab过程</a> (9)</li>
	<li><a href="http://www.quhuashuai.com/2008/03/introduction-to-matlab2008a-and-download/" title="Matlab 2008a介绍以及下载地址 (2008-03-23)">Matlab 2008a介绍以及下载地址</a> (14)</li>
	<li><a href="http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/" title="Archlinux下安装Matlab 2008a (2008-09-11)">Archlinux下安装Matlab 2008a</a> (2)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/11/matlab-2008b-download/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Archlinux下启用Thinkpad功能键</title>
		<link>http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/</link>
		<comments>http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 01:39:41 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[电脑应用]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=294</guid>
		<description><![CDATA[不知道是Thinkpad的问题，还是Archlinux的问题，自从由Ubuntu换到了Archlinux之后，我的T43就没有成功搞定过Thinkpad的这些功能键，所以Fn这个键就成了个摆设，每次需要开启蓝牙或者关闭屏幕的时候[...]]]></description>
			<content:encoded><![CDATA[<p>
不知道是Thinkpad的问题，还是Archlinux的问题，自从由Ubuntu换到了Archlinux之后，我的T43就没有成功搞定过Thinkpad的这些功能键，所以Fn这个键就成了个摆设，每次需要开启蓝牙或者关闭屏幕的时候，我能做的事情就是敲一些命令，实在有点烦。今天在网上找了一些，确实是有解决办法的，而且并不复杂，我们需要做的事情就是修改/etc/acpi/handler.sh这个问题，在这里面配置下功能键对应的命令。
</p>
<p>
开始之前，先确定你已经在/etc/rc.conf里面加载了ibm_acpi这个Module。这是我们进行修改和配置的先决条件，接下里将原本的/etc/acpi/handler.sh备份一下，尽管来说很多时候并不是需要这么做，鉴于我们都是新手，防止出现意外还是备份一下比较安全。这些都搞定之后，把下面的这段代码保存为新的/etc/acpi/handler.sh。
</p>
<div class="hl-surround"><div class="hl-main">#!/bin/sh<br /># Default acpi script that takes an entry for all actions<br /><br /># NOTE: This is a 2.6-centric script.&nbsp; If you use 2.4.x, you'll have to<br />#&nbsp; &nbsp; &nbsp; &nbsp;modify it to not use /sys<br /><br />set $*<br /><br />case &quot;$1&quot; in<br />&nbsp;&nbsp; &nbsp;ibm/hotkey)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;case &quot;$2&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HKEY)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;case &quot;$4&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00001002) # Lock screen<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;xscreensaver-command -lock<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00001003) # swithing display off<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;	xset dpms force off<br />						;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00001004) # Suspend to RAM<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;/usr/sbin/pm-suspend<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00001005) # Switch Bluetooth<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if [ &quot;$(grep &quot;status.*enabled&quot; /proc/acpi/ibm/bluetooth)&quot; ]; then<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &quot;disable&quot; &gt; /proc/acpi/ibm/bluetooth<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &quot;enable&quot; &gt; /proc/acpi/ibm/bluetooth<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;fi<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00001007) # Toggle external display<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if [ &quot;$(xrandr -q | grep &quot;VGA connected&quot;)&quot; ]; then<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if [ &quot;$(xrandr -q | grep &quot;VGA connected [0-9]&quot;)&quot; ]; then<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;xrandr --output VGA --off<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;xrandr --output VGA --auto<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;fi<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;xrandr --output VGA --off<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;fi<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#00001008) # Toggle Trackpoint/Touchpad<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#&nbsp; &nbsp; ;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#00001009) # Eject from dock<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#&nbsp; &nbsp; ;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0000100c) # Hibernate<br />						/usr/sbin/pm-hibernate<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#00001014) # Toggle zoom<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#&nbsp; &nbsp; ;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#00001018) # ThinkVantage button<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#&nbsp; &nbsp; ;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp;button/lid)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;case &quot;$2&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;LID)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;case &quot;$3&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00000080) # Lid opened/closed<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;grep open /proc/acpi/button/lid/LID/state || hibernate -F /etc/hibernate/ususpend-ram.conf<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp;ac_adapter)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;case &quot;$2&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AC)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;case &quot;$4&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00000001) # AC plugged<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo -n performance &gt; /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00000000) # AC unplugged<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo -n ondemand &gt; /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp;video)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;case &quot;$2&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;LCD0)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;case &quot;$3&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00000086) # Brightness up<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;brightness +<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00000087) # Brightness down<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;brightness -<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;;;<br />esac</div></div>
<p>
在保存好之后，其实你可以根据自己的需要修改一些对应的命令，进而调整一些功能键。在我的这个配置下面，Fn+F2是使用xscreensaver锁定屏幕；Fn+F3是关闭显示屏幕；Fn+F4是挂起，这里我使用的是pm-suspend；Fn+F5是切换蓝牙的开关；Fn+F7是启动外接显示器或者投影仪之类的；Fn+F12是休眠。基本上就是这样，同时还启用了调整屏幕亮度，打开上面小灯等功能。至少在我的T43上面这些功能都没有问题。
</p>
<p>
这些都搞定之后你只需要sudo /etc/rc.d/acpi restart，重启启动acpi就好了，现在赶紧来试试看吧，那些你熟悉的功能键是不是都找回来了？
</p>
<p><i>本文主要参考<a href="http://bbs.archlinux.org/viewtopic.php?id=45710">Arch Linux Forum</a></i></p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=294&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/#comments">2 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/&amp;title=Archlinux下启用Thinkpad功能键">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/linux/" rel="tag">linux</a>, <a href="http://www.quhuashuai.com/tag/ubuntu/" rel="tag">ubuntu</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2007/08/install_matlab_on_ubuntu/" title="Ubuntu下安装matlab过程 (2007-08-15)">Ubuntu下安装matlab过程</a> (9)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/" title="Archlinux中配置Okular下缺失的英文字体 (2008-10-09)">Archlinux中配置Okular下缺失的英文字体</a> (2)</li>
	<li><a href="http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/" title="Archlinux下给T43添加Win键(Super键) (2009-04-17)">Archlinux下给T43添加Win键(Super键)</a> (15)</li>
	<li><a href="http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/" title="Archlinux下安装Matlab 2008a (2008-09-11)">Archlinux下安装Matlab 2008a</a> (2)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>确定每天的学习时间</title>
		<link>http://www.quhuashuai.com/2008/10/determine-your-study-time/</link>
		<comments>http://www.quhuashuai.com/2008/10/determine-your-study-time/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 10:00:44 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[个人发展]]></category>
		<category><![CDATA[如何]]></category>
		<category><![CDATA[学习]]></category>
		<category><![CDATA[实践]]></category>
		<category><![CDATA[建议]]></category>
		<category><![CDATA[时间]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=273</guid>
		<description><![CDATA[前两天在《如何克服短暂的厌学情绪》里提到了一些学习过程中如何休息的内容，在去年的一篇文章《如何管理你的学习时间》里面讲了管理学习时间的问题，今天有个关于“如何选择学习时[...]]]></description>
			<content:encoded><![CDATA[<p>
前两天在<a href="http://www.quhuashuai.com/2008/10/how-to-tackle-anti-study-mood/">《如何克服短暂的厌学情绪》</a>里提到了一些<a href="http://www.quhuashuai.com/tag/&#23398;&#20064;"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;&#8220;&#23398;&#20064;&#8221;&#30340;&#25991;&#31456;"  rel="external">学习</a>过程中如何休息的内容，在去年的一篇文章<a href="http://www.quhuashuai.com/2007/09/manage_your_study_time/">《如何管理你的学习时间》</a>里面讲了管理学习时间的问题，今天有个关于“如何选择学习时间”的想法。对于选择学习时间，我想说的意思就是是在每天在固定的某些时间学习，还是说想学习的时候就开始坐下来学习。当然我谈论这个是在说自己是学生的基础之上了。
</p>
<p>
这个想法是在自己总结最近一个月的学习时产生的。拿我自己来说，每天到了办公室之后，除了上课的时间，就是坐在那里看看书，做做作业，与此同时可能和其他人聊聊天或者在网上看看新闻都有可能。晚上到了家之后也是，电脑打开，然后在一旁开始看书写作业。基本情况就是这样，但是在这样的节奏当中我发现了一些问题，所以我在想究竟怎么样才是好的呢？大概分为这样两类情况，大家看看我的想法。
</p>
<h4>没有特定的学习时间</h4>
<p>
这也是我自己一直的做法，可是说学习和休息是随意交叉的，也可以说没有休息时间，甚至可以说一直是在休息。这样的学习方式让我发现了有些问题：
</p>
<ul>
<li><b>在某种程度上降低了学习效率。</b>。两者的交叉混乱反而使得学习的时候效率不高，因为没有完全集中精力，因为在学习的同时，可能还有一些分散注意力的事情在干扰我们。同时因为不知道什么时候该停下来休息，就会使我们觉得没有个deadline来加强自己的紧迫感。</li>
<li><b>无法保证自己的休息时间。</b>在这种状态下，通常我们不知道什么时候该去休息，而是不停地纠结在某个问题上，从而破坏了休息时间。就算休息也是觉得累了不想看了，就会休息下，没有什么规律的。这样也导致了我这一周只去了一次健身，本来的打算是至少三次的。</li>
<li><b>可能总的学习时间会比较长。</b>感觉上是这样的，会给自己一种每天都在学习的感觉。但是我们考虑的不应该是总的学习时间，而是有效的学习时间，或是学习的效果如何，但是这个指标似乎还不好衡量，有待我的实践情况。</li>
</ul>
<h4>给自己规定某个时间段为学习时间。</h4>
<p>
从我的设想上来看，这样应该好一些。我们可以在每天早上根据当天的作业任务，课程安排来确定下自己的学习时间，将某些时间段作为学习时间，并且同时制定好自己的休息时间。好处也是显而易见的：
</p>
<ul>
<li><b>可以集中精力在学习上面。</b>确定好了学习时间之后，那么在这些时间段内学习就是唯一的事情，我们可以避免其他任何可能的干扰，选择合适的地方，比如图书馆。在一个小时或者两个小时的时间里完全投入到学习中去。</li>
<li><b>更有动力来提高效率。</b>在我个人来讲，如果我知道我在这个学习时间段结束之后，会有休息的时间，我可以去健身，可以上网放松下，我会更加没有杂念的投入到学习中去。不知道你们会不会也这么想？</li>
<li><b>保证了学习时间和休息时间。</b>两者都是提前确定好的，到了时间就做该做的事情，这样保证了两个时间都会被利用到，而我们需要做的只是根据当前的课业负担调整自己的时间分配好了。在这里面，保证休息时间是很重要的，毕竟我们的<a href="http://www.quhuashuai.com/tag/&#29983;&#27963;"  class="alinks_links" onclick="return alinks_click(this);" title="&#20854;&#20182;&#20851;&#20110;&#8220;&#29983;&#27963;&#8221;&#30340;&#25991;&#31456;"  rel="external">生活</a>并不全是学习。</li>
</ul>
<p>
这么相比下来，似乎我已经把后者当作比较好的方式了，不过也只是我自己的一个思考。我准备尝试一下后面的这样方式，提前确定好自己每天的学习时间，也同时安排好休息时间，甚至学习内容和休息内容，看看是否能收到更好的效果。我想很多朋友可能早就在这样做了，估计是我自己比较笨比较落后，从来没有去考虑过这样的问题，如果大家有什么好的<a href="http://www.quhuashuai.com/tag/&#24314;&#35758;"  class="alinks_links" onclick="return alinks_click(this);" title="&#20854;&#20182;&#20851;&#20110;&#8221;&#24314;&#35758;&#8220;&#30340;&#25991;&#31456;"  rel="external">建议</a>，多多告诉我，多多帮助我！</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=273&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/10/determine-your-study-time/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/10/determine-your-study-time/#comments">65 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/10/determine-your-study-time/&amp;title=确定每天的学习时间">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/%e5%a6%82%e4%bd%95/" rel="tag">如何</a>, <a href="http://www.quhuashuai.com/tag/%e5%ad%a6%e4%b9%a0/" rel="tag">学习</a>, <a href="http://www.quhuashuai.com/tag/%e5%ae%9e%e8%b7%b5/" rel="tag">实践</a>, <a href="http://www.quhuashuai.com/tag/%e5%bb%ba%e8%ae%ae/" rel="tag">建议</a>, <a href="http://www.quhuashuai.com/tag/%e6%97%b6%e9%97%b4/" rel="tag">时间</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2007/12/mit-sls-lectures-browser/" title="麻省理工学院的SLS课程浏览器 (2007-12-16)">麻省理工学院的SLS课程浏览器</a> (11)</li>
	<li><a href="http://www.quhuashuai.com/2008/04/umass-offer-online-course-in-china/" title="马萨诸塞大学(UMass)获准在中国提供在线课程 (2008-04-10)">马萨诸塞大学(UMass)获准在中国提供在线课程</a> (7)</li>
	<li><a href="http://www.quhuashuai.com/2007/09/boost_your_energy_in_10_minutes/" title="让你瞬间精力充沛的8个办法 (2007-09-30)">让你瞬间精力充沛的8个办法</a> (10)</li>
	<li><a href="http://www.quhuashuai.com/contact/" title="联系方式 (2007-09-09)">联系方式</a> (84)</li>
	<li><a href="http://www.quhuashuai.com/2007/12/yale-open-courses/" title="耶鲁大学推出开放课程材料! (2007-12-14)">耶鲁大学推出开放课程材料!</a> (33)</li>
	<li><a href="http://www.quhuashuai.com/2007/08/bibliography_for_math_student/" title="美国数学本科生，研究生基础课程参考书目 (2007-08-16)">美国数学本科生，研究生基础课程参考书目</a> (64)</li>
	<li><a href="http://www.quhuashuai.com/2007/12/protect-your-teeth/" title="爱自己，从爱牙齿做起 (2007-12-31)">爱自己，从爱牙齿做起</a> (28)</li>
	<li><a href="http://www.quhuashuai.com/2008/02/tips-on-cold-water-shower/" title="洗冷水澡的注意事项 (2008-02-21)">洗冷水澡的注意事项</a> (12)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/10/determine-your-study-time/feed/</wfw:commentRss>
		<slash:comments>65</slash:comments>
		</item>
		<item>
		<title>Archlinux中配置Okular下缺失的英文字体</title>
		<link>http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/</link>
		<comments>http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 10:30:13 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[电脑应用]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[分享]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=256</guid>
		<description><![CDATA[在解决okular下面部分英文字体缺失之前，一直在用xpdf或者Acroread看pdf文档。可是在这个的同时我已经纳闷了很久，这个okular的英文字体到底是怎么个机制来查找的，试图修改过xpdfrc，没有任何[...]]]></description>
			<content:encoded><![CDATA[<p>在解决okular下面部分英文字体缺失之前，一直在用xpdf或者Acroread看pdf文档。可是在这个的同时我已经纳闷了很久，这个okular的英文字体到底是怎么个机制来查找的，试图修改过xpdfrc，没有任何效果，在我尝试了很久之后终于解决了问题。</p>
<p>
先把问题说说看，不知道大家遇到过没有。《Math Into Latex》这个文档我在用Latex写笔记的时候总会开着，难免忘记了一些什么符号，不过Okular下面的字体惨不忍睹，很多字母重合在一起，先上个图大家看看：
</p>
<p><img src="http://pic.yupoo.com/huashuai/33147651506d/medium.jpg" alt="配置前的Okular字体" /></p>
<p>
简单说下我的系统，Archlinux，FVWM，字体用了Lucida和STHeiti稍作美化，所以修改了$HOME下的.fonts.conf文件，所以问题也就出在这里。在我解决问题之后，我把$HOME/.fonts.conf删除后，发现okular会到系统的/usr/share/fonts/TTF下寻找字体，显示的效果是这样的：
</p>
<p><img src="http://pic.yupoo.com/huashuai/95488651506e/medium.jpg" alt="没有任何配置的Okular字体" /></p>
<h4>解决办法：</h4>
<p>
如果你在Okular的菜单中找到File &#8211; Properties，然后在Fonts标签下就会看到缺失的字体名称，在这个Math_Into_Latex.pdf文件中缺失的便是一系列Galliard字体，包括Galliard-Bold, Galliard-BoldItalic, Galliard-Italic, 以及Galliar-Roman。首先要解决问题的话必须下载这些字体，我在某个英文站点找到了下载，大家也可以根据自己的情况下载对应的字体。</p>
<p>
第二件事情便是把这些字体放在适当的文件夹下，一般来说放在$HOME/.fonts/下面就可以，至少我是这样的。在你登录之后，这些字体是可以使用的。
</p>
<p>接下来需要做的便是在$HOME/.fonts.conf里面添加类似下面的内容：</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"><span style="color: Olive;">&lt;</span><span style="color: Green;">match</span><span style="color: Gray;"> </span><span style="color: #00008b;">target</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">pattern</span><span style="color: #8b0000;">&quot;</span><span style="color: Gray;"> </span><span style="color: #00008b;">name</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">family</span><span style="color: #8b0000;">&quot;</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp;&nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">test</span><span style="color: Gray;">&nbsp;</span><span style="color: #00008b;">name</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">family</span><span style="color: #8b0000;">&quot;</span><span style="color: Gray;"> </span><span style="color: #00008b;">qual</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">any</span><span style="color: #8b0000;">&quot;</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">string</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">Galliard</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">string</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp;&nbsp; </span><span style="color: Olive;">&lt;/</span><span style="color: Green;">test</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp;&nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">edit</span><span style="color: Gray;">&nbsp;</span><span style="color: #00008b;">mode</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">assign</span><span style="color: #8b0000;">&quot;</span><span style="color: Gray;"> </span><span style="color: #00008b;">name</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">family</span><span style="color: #8b0000;">&quot;</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">string</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">Galliard BT</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">string</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp;&nbsp; </span><span style="color: Olive;">&lt;/</span><span style="color: Green;">edit</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp;</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">match</span><span style="color: Olive;">&gt;</span></li></ol></div>
<p>
这样Okular在启动之后, 遇到Galliard类的字体，便会自动配对了，否则不一定会找到哪个字体。问题解决之后，再上图看看效果，这次在File &#8211; Properties当中看到的这些Galliard字体都是准确使用的对应字体了。
</p>
<p><img src="http://pic.yupoo.com/huashuai/95509651506d/medium.jpg" alt="配置后的Okular字体" /></p>
<p>
对于<a href="http://www.quhuashuai.com/tag/linux"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;"Linux"&#30340;&#25991;&#31456;"  rel="external">Linux</a>，我确实是菜鸟一个，在慢慢<a href="http://www.quhuashuai.com/tag/&#23398;&#20064;"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;&#8220;&#23398;&#20064;&#8221;&#30340;&#25991;&#31456;"  rel="external">学习</a>，都说用<a href="http://www.quhuashuai.com/tag/linux/" class="st_tag internal_tag" rel="tag" title="标签 linux 下的日志">linux</a>的人喜欢折腾，我这也算自己折腾出个东西，分享给大家。我觉得如果对于fontconfig很了解的，<br />
应该很快就能解决这个问题，我嘛，就需要很久来尝试了。不管怎么说，这至少也是个原创，呵呵！</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=256&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/#comments">2 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/&amp;title=Archlinux中配置Okular下缺失的英文字体">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/linux/" rel="tag">linux</a>, <a href="http://www.quhuashuai.com/tag/%e5%88%86%e4%ba%ab/" rel="tag">分享</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/contact/" title="联系方式 (2007-09-09)">联系方式</a> (84)</li>
	<li><a href="http://www.quhuashuai.com/2008/09/first-blog-in-recent-four-months/" title="四个月来的第一篇文章 (2008-09-08)">四个月来的第一篇文章</a> (24)</li>
	<li><a href="http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/" title="Archlinux下给T43添加Win键(Super键) (2009-04-17)">Archlinux下给T43添加Win键(Super键)</a> (15)</li>
	<li><a href="http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/" title="Archlinux下安装Matlab 2008a (2008-09-11)">Archlinux下安装Matlab 2008a</a> (2)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/" title="Archlinux下启用Thinkpad功能键 (2008-10-15)">Archlinux下启用Thinkpad功能键</a> (2)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>整理笔记的必要性？</title>
		<link>http://www.quhuashuai.com/2008/10/is-it-necessary-to-reorganize-notes/</link>
		<comments>http://www.quhuashuai.com/2008/10/is-it-necessary-to-reorganize-notes/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 00:27:01 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[个人发展]]></category>
		<category><![CDATA[学习]]></category>
		<category><![CDATA[笔记]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=250</guid>
		<description><![CDATA[其实关于笔记的话题，应该写过一些了，包括做笔记的工具-《15款工具帮你更好的做笔记》，包括做笔记的方法-《也谈如何做笔记》。这次不是关于做笔记，而是关于整理笔记的问题，希望听[...]]]></description>
			<content:encoded><![CDATA[<p>
其实关于笔记的话题，应该写过一些了，包括做笔记的工具-<a href="http://www.quhuashuai.com/2007/12/15-tools-for-note-taking/">《15款工具帮你更好的做笔记》</a>，包括做笔记的方法-<a href="http://www.quhuashuai.com/2007/09/note_taking/">《也谈如何做笔记》</a>。这次不是关于做笔记，而是关于整理笔记的问题，希望听听大家怎么看。
</p>
<p>
其实我知道这种问题本来是因人而异的，所以我只是想说说自己的想法。不知道大家一般在课后会不会整理课上的笔记，至少我在以前很长的时间里面从来不去整理笔记，但是对我个人而言，我越来越觉得应该而且必须在课后开始整理笔记了。当然主要原因是因为课程越来越难，课上的内容我自己是没有办法在课上完全理解，更谈不上什么消化这些知识了。所以对我个人而言，重新整理笔记绝对是必要的：
</p>
<ul>
<li><b>能够让自己重新复习课上内容。</b>对于现在的课程，自己也渐渐的感觉到有些吃力，所以不得不在课后进行复习，而在课后当天马上进行复习毫无疑问是最好的。因此重新整理笔记就变成了督促自己复习一遍的最好的办法。尽量在下课之后，或者在晚上回家之后，拿出今天的笔记，对比课本的内容，整理笔记的同时思考可能遇到的一些问题。</li>
<li><b>整理笔记能够更好的听课。</b>之所以这么说是因为，课上记笔记毕竟是或多或少的影响听课的，尤其是遇到某些语速极快的教授时。所以在能够看清的基础之上记下尽可能多的内容，无论是黑板上出现的，还是从教授嘴里出现的。课后把这些有些混乱的笔记内容，整理清晰，无论是对复习还是对准备考试，都是非常有帮助的。</li>
<li><b>帮助你更好的<a href="http://www.quhuashuai.com/tag/&#23398;&#20064;"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;&#8220;&#23398;&#20064;&#8221;&#30340;&#25991;&#31456;"  rel="external">学习</a>课本内容。</b>很多时候我们在课上所学到的仅仅是课本内容的一部分，教授通常会简略的跳过课本上的某些内容，选择性的在Lecture讲述某些概念定理。在这种情况之下，课后自学变得非常重要，而重新整理笔记就会让你意识到哪些内容是讲到的，哪些内容是需要自己重新学习的。</li>
<li><b>整理笔记让你意识到自己的问题。</b>可能很多问题在课上的时候你认为自己听明白了，所以笔记上没有详细记录，你也没有在课上向老师提问。但是在你整理笔记的时候，你应该思考每个在笔记中出现的问题，如果你发现自己并不是那么明白这个部分的话，那么你就应该好好利用老师的答疑时间或者下节课时提出自己的疑问了。 </li>
<li><b>很多时候你不得不去整理笔记。</b>很多人会把课堂上的笔记写的很好，我自己也是这样，尽量写的清楚。可是事实上在你课后复习的时候，难免要添加某些内容，也许是来自课本，也许是来自reference，笔记上原本有限的空间会被写的有些杂乱。因为整理笔记变成了不得不做的事情。</li>
</ul>
<p>至于整理笔记的工具，我多数情况下选择纸和笔，当然有些时候会选择Latex，如果非常需要保存下来的话。其实有的时候我在考虑，如果自己足够熟练使用Latex的话，也许直接使用Latex整理笔记会是非常好的选择，希望有一天能够这样吧！</p>
<p>总之很多很多原因，使得整理笔记变成了我每天必做的一件事情，至少在我现在来看效果还是不错的，时间虽然是要消耗一些，但至少重写笔记的过程中我还在思考，不是简单的抄过来抄过去。至少在我个人看来对于学数学来说，这么去做还是非常必要的，毕竟需要思考的时间还是很多的。我不知道工科或者文科会不会也是这样，所以希望听听大家的意见。</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=250&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/10/is-it-necessary-to-reorganize-notes/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/10/is-it-necessary-to-reorganize-notes/#comments">17 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/10/is-it-necessary-to-reorganize-notes/&amp;title=整理笔记的必要性？">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/%e5%ad%a6%e4%b9%a0/" rel="tag">学习</a>, <a href="http://www.quhuashuai.com/tag/%e7%ac%94%e8%ae%b0/" rel="tag">笔记</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2007/12/mit-sls-lectures-browser/" title="麻省理工学院的SLS课程浏览器 (2007-12-16)">麻省理工学院的SLS课程浏览器</a> (11)</li>
	<li><a href="http://www.quhuashuai.com/2008/04/umass-offer-online-course-in-china/" title="马萨诸塞大学(UMass)获准在中国提供在线课程 (2008-04-10)">马萨诸塞大学(UMass)获准在中国提供在线课程</a> (7)</li>
	<li><a href="http://www.quhuashuai.com/contact/" title="联系方式 (2007-09-09)">联系方式</a> (84)</li>
	<li><a href="http://www.quhuashuai.com/2007/12/yale-open-courses/" title="耶鲁大学推出开放课程材料! (2007-12-14)">耶鲁大学推出开放课程材料!</a> (33)</li>
	<li><a href="http://www.quhuashuai.com/2007/08/bibliography_for_math_student/" title="美国数学本科生，研究生基础课程参考书目 (2007-08-16)">美国数学本科生，研究生基础课程参考书目</a> (64)</li>
	<li><a href="http://www.quhuashuai.com/2008/01/ultimate-student-resource-list/" title="终极学生资源列表 (2008-01-24)">终极学生资源列表</a> (18)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/determine-your-study-time/" title="确定每天的学习时间 (2008-10-11)">确定每天的学习时间</a> (65)</li>
	<li><a href="http://www.quhuashuai.com/2008/01/7-bad-habits-in-study/" title="我的大学：学习中的八大坏习惯 (2008-01-16)">我的大学：学习中的八大坏习惯</a> (34)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/10/is-it-necessary-to-reorganize-notes/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>如何克服暂时的厌学情绪</title>
		<link>http://www.quhuashuai.com/2008/10/how-to-tackle-anti-study-mood/</link>
		<comments>http://www.quhuashuai.com/2008/10/how-to-tackle-anti-study-mood/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 22:08:54 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[个人发展]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[如何]]></category>
		<category><![CDATA[学习]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=235</guid>
		<description><![CDATA[晚上在看书的时候莫名的看不进去，这种情况以前也时常遇到，通常都是短暂的厌学，看什么都看不进去，不知道是脑袋里面还是心里面一阵躁动（哈哈，没有什么特殊原因啦！），总之注意[...]]]></description>
			<content:encoded><![CDATA[<p>
晚上在看书的时候莫名的看不进去，这种情况以前也时常遇到，通常都是短暂的厌学，看什么都看不进去，不知道是脑袋里面还是心里面一阵躁动（哈哈，没有什么特殊原因啦！），总之注意力无法集中到读书中来。今天就停下来开始琢磨这个问题。有的时候是因为有些特殊的事情一直在脑中纠缠，这种时候要不你就想明白这些事情，或者干脆选择忘掉；不过有的时候就是象今天这样，很莫名其妙的看不下去，不知道大家平时都会怎样应对这样的情况？</p>
<p>
我把自己平时用到的一些方式大概想了想，对我自己来说还是比较有用的。通常都是在家里或者宿舍的时候会遇到这种问题，在学校仿佛少一些吧！需要一提的是，下面这些事情我通常就是按照这样的顺序来做，如果第一条无效，进行第二条，以此类推。无论前面效果如何，最后一条百分之百管用，不过不能直接跳到最后一条哦！</p>
<ul>
<li><b>尝试坚持读书或者<a href="http://www.quhuashuai.com/tag/&#23398;&#20064;"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;&#8220;&#23398;&#20064;&#8221;&#30340;&#25991;&#31456;"  rel="external">学习</a>一会。</b>通常这个手段在开始读书或者学习的时候比较奏效，如果你想去看书，却发现很难静下来，那么就逼着自己坐下来看一会。我自己通常在5-10分钟之后就进入状态，不会想站起来了。如果是在学习了一段时间之后，那么这个手段可能并没有那么好的效果，至少对于我来说。</li>
<li><b>喝杯冰水，让自己冷静下来。</b>这是我最经常做的，通常在家里看书或者学习的时候，我都会接一杯冰水放在旁边，一定要有冰块的！通常在头脑发热，或者心里烦躁的时候，冰水就会有它的功效了。这种方法呢，一般来说还是比较奏效的。其实还有一种类似的手段，就是<b>尽量让自己在稍微冷的环境下学习</b>，记得自己在本科的时候上自习通常都是去全校最大最冷的那个教室，主要原因就是在这种略微寒冷的情况下，人可以保持清醒，另外这种教室通常比较安静，因为人少嘛！不过，注意防止感冒。</li>
<li><b>做些体育运动，简单的锻炼。</b>这个是我今天晚上用的办法，因为手边的冰水喝完了，就干脆在地上做了30个俯卧撑。我平时简单的锻炼就是说俯卧撑，可能有人认为说锻炼之后心跳加速不是更难冷静下来吗？可是我发觉在20-30个俯卧撑之后好像脑中马上清醒了，精力也能够马上集中起来，也许这个运动的数量级正好合适。大家可以选择自己方便的运动手段，我一直觉得俯卧撑比较好，有点地方就可以做了。</li>
<li><b>利用音乐或者短片来放松情绪，暂时忘记学习。</b>这个估计是很多朋友都会用的办法，尽量找一些柔和一些的音乐，比如Bandari之类的轻音乐。虽然我相信很多朋友会选择重金属，摇滚一类的音乐，这个本身就是因人而异的东西，何况还有很多人会边听音乐边学习呢，至少我以前是。现在？现在可不行了，会喜欢相对安静一些的环境。除了音乐之外一些轻松搞笑的短片也不错，尽量还是避免连续剧电影这一类，通常一看就停不下来了。</li>
<li><b>想一些比较有激励作用的事情。</b>记得自己上新东方的时候，特意把那本《新东方精神》保留下来，准备作为激励自己的材料阅读来着。当然后来也确实读过几次，不过还真没有在出现厌学的时候用过这个办法。只是说因为自己看过这些东西之后，会有一种很振奋的感觉，想要努力，想要向上，现在还记得那时看完《新东方精神》的感觉，呵呵！就像你见到一牛人之后，就会想说我也想变成那样，所以我要努力。当然了，能够自我激励便是最好的，否则你可以试试看这个办法。</li>
<li><b>换个学习内容，让自己的思维转换到别的事情上。</b>这也是一个很平常的手段，甚至在我们很小的时候就知道。只是在我学习的过程中发现，有的时候很难实现，原因也很简单：比如数学系的学生，他从概率换到实变，换到偏微分，终究还是在数学里面，对于大脑没有什么很明显的作用嘛！于是让我说，不如在这个写写博客，哈哈，数字和文字之间转换一下还是不错的。</li>
<li><b>干脆给自己放假，想怎么玩怎么玩。</b>这就是最后一条啦，屡试不爽，相信对你也一定奏效了！我只是想说，尽量还是不要这样的好，偶尔使用一下必杀就可以了，否则难免伤到自己啊！</li>
</ul>
<p>不知道大家平时遇到这个问题都怎么办呢？如果你也有应对这个问题的技巧，不妨分享一下！这样我下次也可以尝试一下了。</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=235&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/10/how-to-tackle-anti-study-mood/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/10/how-to-tackle-anti-study-mood/#comments">18 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/10/how-to-tackle-anti-study-mood/&amp;title=如何克服暂时的厌学情绪">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/features/" rel="tag">features</a>, <a href="http://www.quhuashuai.com/tag/%e5%a6%82%e4%bd%95/" rel="tag">如何</a>, <a href="http://www.quhuashuai.com/tag/%e5%ad%a6%e4%b9%a0/" rel="tag">学习</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2007/12/mit-sls-lectures-browser/" title="麻省理工学院的SLS课程浏览器 (2007-12-16)">麻省理工学院的SLS课程浏览器</a> (11)</li>
	<li><a href="http://www.quhuashuai.com/2008/04/umass-offer-online-course-in-china/" title="马萨诸塞大学(UMass)获准在中国提供在线课程 (2008-04-10)">马萨诸塞大学(UMass)获准在中国提供在线课程</a> (7)</li>
	<li><a href="http://www.quhuashuai.com/contact/" title="联系方式 (2007-09-09)">联系方式</a> (84)</li>
	<li><a href="http://www.quhuashuai.com/2007/12/yale-open-courses/" title="耶鲁大学推出开放课程材料! (2007-12-14)">耶鲁大学推出开放课程材料!</a> (33)</li>
	<li><a href="http://www.quhuashuai.com/2007/08/bibliography_for_math_student/" title="美国数学本科生，研究生基础课程参考书目 (2007-08-16)">美国数学本科生，研究生基础课程参考书目</a> (64)</li>
	<li><a href="http://www.quhuashuai.com/2008/01/ultimate-student-resource-list/" title="终极学生资源列表 (2008-01-24)">终极学生资源列表</a> (18)</li>
	<li><a href="http://www.quhuashuai.com/2008/02/body-building-faq-for-man/" title="男生｜运动｜增肌｜减肥 FAQ (2008-02-01)">男生｜运动｜增肌｜减肥 FAQ</a> (9)</li>
	<li><a href="http://www.quhuashuai.com/2007/12/protect-your-teeth/" title="爱自己，从爱牙齿做起 (2007-12-31)">爱自己，从爱牙齿做起</a> (28)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/10/how-to-tackle-anti-study-mood/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>如何利用乘车的时间</title>
		<link>http://www.quhuashuai.com/2008/10/what-to-do-when-commute/</link>
		<comments>http://www.quhuashuai.com/2008/10/what-to-do-when-commute/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 14:21:09 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[个人发展]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[如何]]></category>
		<category><![CDATA[学习]]></category>
		<category><![CDATA[时间]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=216</guid>
		<description><![CDATA[今天坐在这里半天，发现自己的效率很低，于是开始想写点什么。到了美国这边之后，因为还没有买车，所以每天都是坐校车往返，等车加上坐车的时间每天肯定超过一个小时。于是自己也想[...]]]></description>
			<content:encoded><![CDATA[<p>今天坐在这里半天，发现自己的效率很低，于是开始想写点什么。到了美国这边之后，因为还没有买车，所以每天都是坐校车往返，等车加上坐车的时间每天肯定超过一个小时。于是自己也想了很久怎么去利用这一个小时的时间，毕竟只是坐在那里发呆是一件很傻的事情。其实无论你是坐车，开车，还是走路上学上班，总会有一些时间是耽误在路上的，所以好好想想这件事情还是有必要的。随便列出几条自己平时在做的事情，抛砖引玉啦，大家如果有什么好的想法，我可以<a href="http://www.quhuashuai.com/tag/&#23398;&#20064;"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;&#8220;&#23398;&#20064;&#8221;&#30340;&#25991;&#31456;"  rel="external">学习</a>一下！
</p>
<ul>
<li><b>闭上眼睛，多睡一会。</b>这绝对是一件非常实际的事情。随着冬天的到来，好像更容易赖床，被迫起来之后，毕竟不是一件很爽的事情，何况像我这种12点多睡觉，6点起床的……如果你真的很困，车上的20多分钟绝对能起到效果。当然了，回家的路上也是一样，在学校呆了超过12小时之后，我已经多次在回家的校车上睡了过去。至少这样短暂的休息之后，能够让你在晚上的三四个小时效率有所提升。总觉得这种短期睡眠的效果非常之后，就像别人说午睡不要超过30分钟一样。一旦你觉得有些疲劳，稍微休息一会的效果往往极好。</li>
<li><b>通过广播，podcast或者有声读物来了解新闻，扩展思维。</b>很多人都会在路上带着mp3，我在这边校车上看到的老外也都是，至于听什么我就不知道了。我个人一般都是听广播或者podcast，这都靠我的Nokia N800，真的很好用。广播的话，我觉得现在的手机和mp3应该都支持了。不过说起来，我在国内的时候听广播很少，除了偶尔听听CRI。现在到了这边广播对于我来说，已经毕竟<a href="http://www.quhuashuai.com/tag/&#29983;&#27963;"  class="alinks_links" onclick="return alinks_click(this);" title="&#20854;&#20182;&#20851;&#20110;&#8220;&#29983;&#27963;&#8221;&#30340;&#25991;&#31456;"  rel="external">生活</a>中必须的：第一，可以练习下听力，经常听到采访中各种各样的口音，这倒是其次，平时聊天效果来得更好；第二，了解这边发生的事情，自己城市附近的，美国这边的事情，如果你没有时间或者没有条件看电视，又不想上网看新闻的话，广播绝对是个不错的选择。podcast我一般是早上起床，打开N800，洗漱吃饭的过程之中，让它自己更新就好了，然后想听随时听。其实买个新的ipod nano或者itouch也不错，只是我用不着啦。</li>
<li><b>考虑一天的计划，总结一天的生活。</b>每天都能好好计划以及总结一下是非常有必要的事情！如果你有比较好的习惯，相信你基本上每天都在做这件事情，就像<a href="http://www.quhuashuai.com/tag/gtd"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;&#8220;GTD&#8221;&#30340;&#25991;&#31456;"  rel="external">GTD</a>当中也会有类似的要求。你可以在早上的时候计划一下今天的日程。如果你已经制定好了的话，可以再次查看一下自己今天的日程，免得忘记什么事情，还可以对日程稍作修改；如果是在晚上回去的路上，当然是用来总结下今天的工作学习，看看还有哪些未完成的事情，并且考虑下晚上的学习或者放松。</li>
<li><b>构思一篇博客文章。</b>这是自己突然想起来的一件事情，如果你正好有些想法想写点东西的话，不妨拿出纸笔（这些东西一定是随身携带的嘛！），甚至打开电脑也可以。把自己的思路和要点记录下来，等自己有空的时候再整理一下。这种习惯非常有必要，无论是乘车还是其他时候，脑中突然出现的想法，无论是做research的，还是音乐家艺术家，这种突然的灵感往往是能产生精品的。</li>
<li><b>读书或者看论文。</b>我有的时候会在车上看书，通常是在很紧张的情况下，但多数情况下不会这么去做，而且早上我在车上见到的看书的人明显很少，当然是和晚上回来的时候相比。这算是我一个多月以来统计的结果，当然也有少数牛人早上在车上研究paper。说起来的话，无论是书，还是打印几页纸随身带着，有空的时候拿出来读读非常不错。晚上回来的时候，其实也就下午6点来钟，我有的时候会看看今天上课的笔记，利用车上的时间再想想里面的问题，而且这个时候在车上看书的人明显也多一些。</li>
<li><b>考虑下一会买什么菜，做什么饭。</b>自从需要自己每天买菜做饭开始，这两件事情就成了我不得不考虑的事情了。与其回到家里花时间想吃什么好，还不如在路上就考虑清楚，回家马上动手。想想这件事情，至少在你需要买菜的时候可以及时去买菜；否则当你到家之后，看着空空的冰箱，摸着咕咕的肚子，唉，生活何其悲惨啊……还好我没有这样过，毕竟有常备面条一类的东西。</li>
<li><b>利用这些时间认识新朋友，和别人交流。</b>这点真的很重要，多认识一个朋友，多和别人交流一点，能多获得太多的消息，尤其是在这边，个人的话还是要相对封闭一点。只是自己在车上的交流还是与中国人比较多啦，因为认识了之后碰上就会闲聊。其实你也可以和老外聊聊，如果你愿意的话，呵呵！local的新闻，天气的变化，选举的情况，超市的特价，总之你能获得的东西太多了，这种聊天非常有必要！</li>
</ul>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=216&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/10/what-to-do-when-commute/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/10/what-to-do-when-commute/#comments">29 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/10/what-to-do-when-commute/&amp;title=如何利用乘车的时间">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/features/" rel="tag">features</a>, <a href="http://www.quhuashuai.com/tag/%e5%a6%82%e4%bd%95/" rel="tag">如何</a>, <a href="http://www.quhuashuai.com/tag/%e5%ad%a6%e4%b9%a0/" rel="tag">学习</a>, <a href="http://www.quhuashuai.com/tag/%e6%97%b6%e9%97%b4/" rel="tag">时间</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2007/12/mit-sls-lectures-browser/" title="麻省理工学院的SLS课程浏览器 (2007-12-16)">麻省理工学院的SLS课程浏览器</a> (11)</li>
	<li><a href="http://www.quhuashuai.com/2008/04/umass-offer-online-course-in-china/" title="马萨诸塞大学(UMass)获准在中国提供在线课程 (2008-04-10)">马萨诸塞大学(UMass)获准在中国提供在线课程</a> (7)</li>
	<li><a href="http://www.quhuashuai.com/contact/" title="联系方式 (2007-09-09)">联系方式</a> (84)</li>
	<li><a href="http://www.quhuashuai.com/2007/12/yale-open-courses/" title="耶鲁大学推出开放课程材料! (2007-12-14)">耶鲁大学推出开放课程材料!</a> (33)</li>
	<li><a href="http://www.quhuashuai.com/2007/08/bibliography_for_math_student/" title="美国数学本科生，研究生基础课程参考书目 (2007-08-16)">美国数学本科生，研究生基础课程参考书目</a> (64)</li>
	<li><a href="http://www.quhuashuai.com/2008/01/ultimate-student-resource-list/" title="终极学生资源列表 (2008-01-24)">终极学生资源列表</a> (18)</li>
	<li><a href="http://www.quhuashuai.com/2008/02/body-building-faq-for-man/" title="男生｜运动｜增肌｜减肥 FAQ (2008-02-01)">男生｜运动｜增肌｜减肥 FAQ</a> (9)</li>
	<li><a href="http://www.quhuashuai.com/2007/12/protect-your-teeth/" title="爱自己，从爱牙齿做起 (2007-12-31)">爱自己，从爱牙齿做起</a> (28)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/10/what-to-do-when-commute/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>在vim中管理dokuwiki</title>
		<link>http://www.quhuashuai.com/2008/10/write-dokuwiki-in-vim/</link>
		<comments>http://www.quhuashuai.com/2008/10/write-dokuwiki-in-vim/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 10:41:43 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[电脑应用]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[wiki]]></category>
		<category><![CDATA[知识管理]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=196</guid>
		<description><![CDATA[原来在《如何进行个人知识管理》里面提到过使用dokuwiki，这也是自己最近开始做的一件事情，在空间上架了一个wiki，然后准备把平时各方面收集的资料，以及个人的一些经验慢慢的组织起来[...]]]></description>
			<content:encoded><![CDATA[<p>原来在<a href="http://www.quhuashuai.com/2008/03/how-to-do-personal-knowledge-management/">《如何进行个人知识管理》</a>里面提到过使用<a href="http://wiki.splitbrain.org/wiki:dokuwiki">dokuwiki</a>，这也是自己最近开始做的一件事情，在空间上架了一个<a href="http://www.quhuashuai.com/tag/wiki/" class="st_tag internal_tag" rel="tag" title="标签 wiki 下的日志">wiki</a>，然后准备把平时各方面收集的资料，以及个人的一些经验慢慢的组织起来。今天想介绍给大家的就是<a href="http://www.chimeric.de/projects/dokuwiki/dokuvimki">dokuvimki</a>这个vim的插件。因为新版本的<a href="http://wiki.splitbrain.org/wiki:dokuwiki">dokuwiki</a>提供了试用的xml-rpc接口，这样远程编辑就变成了可能。</p>
<p>
这里是最新版本的<a href="http://www.chimeric.de/_media/projects/dokuwiki/dokuvimki/dokuvimki-2008-05-20.tgz">dokuvimki下载地址</a>。如果你平时也是用vim，也是尝试dokuwiki，那么你应该赶紧来试试看。你所需要做的就是把插件解压到~/.vim/目录下面，然后在你的~/.vimrc文件中加入以下的设置，这样在你编辑dokuwiki的时候，vim就会自动检测，将文件类型设定为dokuwiki。</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">fun IsDokuWiki()</li>
<li>&nbsp; if match(getline(1,20),'^ \=\(=\{2,6}\).\+\1 *$') &gt;= 0</li>
<li>&nbsp;&nbsp; &nbsp;set textwidth=0</li>
<li>&nbsp;&nbsp; &nbsp;set wrap</li>
<li>&nbsp;&nbsp; &nbsp;set linebreak</li>
<li>&nbsp;&nbsp; &nbsp;set filetype=dokuwiki</li>
<li>&nbsp; endif</li>
<li>endfun</li>
<li>&nbsp;</li>
<li>&quot; 检查当前Buffer是否为dokuwiki</li>
<li>autocmd BufWinEnter *.txt call IsDokuWiki()</li>
<li>&nbsp;</li>
<li>syntax on</li></ol></div>
<p>另外，还有一些关于你的dokuwiki的用户名，地址之类的设定，也是加入到~/.vimrc中：</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">&quot; 登录dokuwiki的用户名</li>
<li>let g:DokuVimKi_USER = 'username'</li>
<li>&nbsp;</li>
<li>&quot; 登录密码</li>
<li>let g:DokuVimKi_PASS = 'password'</li>
<li>&nbsp;</li>
<li>&quot; 远程wiki的地址(不需要最后的&quot;/&quot;)</li>
<li>let g:DokuVimKi_URL&nbsp; = 'https://yourwikidomain.org'</li>
<li>&nbsp;</li>
<li>&quot; 是否在打开vim的时候连接远程wiki</li>
<li>let g:DokuVimKi_AUTOCONNECT = 'no'</li>
<li>&nbsp;</li>
<li>&quot; dokuwiki页面树显示宽度</li>
<li>let g:DokuVimKi_TREEWIDTH = '40'</li>
<li>&nbsp;</li>
<li>&quot; 页面树窗口中文件列的宽度</li>
<li>let g:DokuVimKi_FOLDCOLWIDTH = '10'</li></ol></div>
<p>这样的话就算基本上设置好了。这个插件提供了几个命令，便于你编辑以及管理dokuwiki:</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">:DWEdit &lt;pagename&gt; 编译页面，如果页面不存在的话就会建立该页面。</li>
<li>:DWSend &lt;summary&gt;&nbsp; 发送当前buffer中的页面到远程wiki</li>
<li>:DWList &lt;pattern&gt;&nbsp; &nbsp;列出当前的所有页面。</li>
<li>:DWAuth&nbsp; 编辑之前验证身份，基本你刚才设定的登录信息</li></ol></div>
<p>当然还有其他的一些命令，关于页面修改记录，页面树以及反向链接等等，如果有兴趣的大家可以自己去看看。另外就是插件本身还有一个dokuwiki语法的快捷键，在~/.vim/plugin/dokuvimki.vim当中可以找到相关的部分，大家可以根据自己的喜好或者需要修改。</p>
<p>另外，经过作者的更新，现在的版本对于中文支持的非常不错，不过要在utf8环境下面，大家可以试验以下，如果有问题的话不妨直接向作者反馈！</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=196&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/10/write-dokuwiki-in-vim/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/10/write-dokuwiki-in-vim/#comments">4 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/10/write-dokuwiki-in-vim/&amp;title=在vim中管理dokuwiki">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/features/" rel="tag">features</a>, <a href="http://www.quhuashuai.com/tag/vim/" rel="tag">vim</a>, <a href="http://www.quhuashuai.com/tag/wiki/" rel="tag">wiki</a>, <a href="http://www.quhuashuai.com/tag/%e7%9f%a5%e8%af%86%e7%ae%a1%e7%90%86/" rel="tag">知识管理</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2008/02/body-building-faq-for-man/" title="男生｜运动｜增肌｜减肥 FAQ (2008-02-01)">男生｜运动｜增肌｜减肥 FAQ</a> (9)</li>
	<li><a href="http://www.quhuashuai.com/2007/12/protect-your-teeth/" title="爱自己，从爱牙齿做起 (2007-12-31)">爱自己，从爱牙齿做起</a> (28)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/what-to-do-when-commute/" title="如何利用乘车的时间 (2008-10-05)">如何利用乘车的时间</a> (29)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/how-to-tackle-anti-study-mood/" title="如何克服暂时的厌学情绪 (2008-10-06)">如何克服暂时的厌学情绪</a> (18)</li>
	<li><a href="http://www.quhuashuai.com/2008/09/first-blog-in-recent-four-months/" title="四个月来的第一篇文章 (2008-09-08)">四个月来的第一篇文章</a> (24)</li>
	<li><a href="http://www.quhuashuai.com/wiki/" title="个人WIKI (2007-11-17)">个人WIKI</a> (0)</li>
	<li><a href="http://www.quhuashuai.com/2008/04/usa-online-casinos/" title="USA Online Casinos (2008-04-04)">USA Online Casinos</a> (0)</li>
	<li><a href="http://www.quhuashuai.com/2009/04/download-books-on-gigapedia/" title="Gigapedia，想下载电子书的来这里！, (2009-04-12)">Gigapedia，想下载电子书的来这里！,</a> (11)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/10/write-dokuwiki-in-vim/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Archlinux下安装Matlab 2008a</title>
		<link>http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/</link>
		<comments>http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 20:02:41 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[电脑应用]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[matlab]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=190</guid>
		<description><![CDATA[前些日子刚刚从Ubuntu过渡到了Archlinux，自己其实就是瞎凑热闹，别人都说Archlinux比较火，我就也凑过来看看，而且自从Matlab 2008a发布之后还没有尝试过，尽管自己曾经介绍过。现在已经有了Mac[...]]]></description>
			<content:encoded><![CDATA[<p>前些日子刚刚从Ubuntu过渡到了Archlinux，自己其实就是瞎凑热闹，别人都说Archlinux比较火，我就也凑过来看看，而且自从<a href="http://www.quhuashuai.com/tag/matlab"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;"Matlab"&#30340;&#25991;&#31456;"  rel="external">Matlab</a> 2008a发布之后还没有尝试过，尽管<a href="http://www.quhuashuai.com/2008/03/introduction-to-matlab2008a-and-download/">自己曾经介绍过</a>。现在已经有了Mac和<a href="http://www.quhuashuai.com/tag/linux"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;"Linux"&#30340;&#25991;&#31456;"  rel="external">Linux</a>下的2008a的下载，<a href="http://thepiratebay.org/torrent/4361148/Matlab_7.6_2008a_(intel_only)___crack">地址就在这里</a>，有兴趣的可以自己去试试看。</p>
<p>
整个安装过程还是比较简单的，基本上和我在<a href="http://www.quhuashuai.com/2007/08/install_matlab_on_ubuntu/<br />
	">《Ubuntu下安装matlab过程》</a>中提到的一样，在这里稍微重复一下：
</p>
<ol>
<li>挂载iso文件：sudo mount -t iso9660 (iso文件的路径) /media/cdrom -o loop。在Archlinux下面可能你需要加载一下loop,也就是sudo modprobe loop。因为这个是DVD，所以没有再umount以及换盘的必要了。</li>
<li>建立Matlab安装目录：sudo mkdir /opt/<a href="http://www.quhuashuai.com/tag/matlab/" class="st_tag internal_tag" rel="tag" title="标签 matlab 下的日志">matlab</a>。这样就可以了，<a href="http://www.quhuashuai.com/tag/matlab/" class="st_tag internal_tag" rel="tag" title="标签 matlab 下的日志">matlab</a> 2008a的破解有些不同，所以这里并不需要拷贝任何的license文件到安装目录下。</li>
<li>终端下运行sudo /media/cdrom/install。使用绝对路径，这样不会出现问题。</li>
<li>安装过程中会提示让你选择注册的方式，一共有两种，在光盘下的crack文件夹下有详细说明，以及license文件，我这里选择的是稍后注册。</li>
<li>安装完成之后，运行sudo /opt/<a href="http://www.quhuashuai.com/tag/matlab/" class="st_tag internal_tag" rel="tag" title="标签 matlab 下的日志">matlab</a>/install_matlab进行一些相关设置，以及启动文件的连接之类工作，一路默认下来就可以了。</li>
<li>当你首次运行<a href="http://www.quhuashuai.com/tag/matlab/" class="st_tag internal_tag" rel="tag" title="标签 matlab 下的日志">matlab</a>的时候，会让你选择license文件所在的目录，这个时候如果你是普通用户运行的话，会无法完成注册，所以记得用root账户来运行<a href="http://www.quhuashuai.com/tag/matlab/" class="st_tag internal_tag" rel="tag" title="标签 matlab 下的日志">matlab</a>，后面的工作就是按照你的注册方式，选择对应的license文件。</li>
</ol>
<p>一般来说，在此之后你就可以顺利的运行<a href="http://www.quhuashuai.com/tag/matlab/" class="st_tag internal_tag" rel="tag" title="标签 matlab 下的日志">matlab</a> 2008a了。不过你很有可能象我一样遇到Java的问题，因为<a href="http://www.quhuashuai.com/tag/matlab/" class="st_tag internal_tag" rel="tag" title="标签 matlab 下的日志">matlab</a>使用自己的Java设置，所以尽管你系统里的其他Java程序没有问题，<a href="http://www.quhuashuai.com/tag/matlab/" class="st_tag internal_tag" rel="tag" title="标签 matlab 下的日志">matlab</a>不会理你是怎么设置的，所以启动<a href="http://www.quhuashuai.com/tag/matlab/" class="st_tag internal_tag" rel="tag" title="标签 matlab 下的日志">matlab</a>之后会出现java一类的错误。这样你就需要到/opt/<a href="http://www.quhuashuai.com/tag/matlab/" class="st_tag internal_tag" rel="tag" title="标签 matlab 下的日志">matlab</a>/sys/java/jre/glnx86/目录下：首先删除掉原本的jre1.6.0，然后将系统的link过来，执行起来就是：</p>
<p><code><br />
cd /opt/<a href="http://www.quhuashuai.com/tag/matlab/" class="st_tag internal_tag" rel="tag" title="标签 matlab 下的日志">matlab</a>/sys/java/jre/glnx86<br />
sudo mv jre1.6.0/ jre1.6.0-bakcup （稍作备份）<br />
sudo ln -s /opt/java/jre/ jre1.6.0 （我的java是装在/opt下)<br />
</code></p>
<p>
另外还有一个就是可能出现的字体问题，解决方法也很简单，这个基本上一次就可以解决所有的java程序字体，到/opt/java/jre/lib/fonts下建立fallback目录，再到fallback目录下面把你想要使用的中文字体link过来就好了。</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=190&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/#comments">2 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/&amp;title=Archlinux下安装Matlab 2008a">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/linux/" rel="tag">linux</a>, <a href="http://www.quhuashuai.com/tag/matlab/" rel="tag">matlab</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2007/08/install_matlab_on_ubuntu/" title="Ubuntu下安装matlab过程 (2007-08-15)">Ubuntu下安装matlab过程</a> (9)</li>
	<li><a href="http://www.quhuashuai.com/2008/11/matlab-2008b-download/" title="MATLAB 2008b下载地址 (2008-11-20)">MATLAB 2008b下载地址</a> (7)</li>
	<li><a href="http://www.quhuashuai.com/2008/03/introduction-to-matlab2008a-and-download/" title="Matlab 2008a介绍以及下载地址 (2008-03-23)">Matlab 2008a介绍以及下载地址</a> (14)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/" title="Archlinux中配置Okular下缺失的英文字体 (2008-10-09)">Archlinux中配置Okular下缺失的英文字体</a> (2)</li>
	<li><a href="http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/" title="Archlinux下给T43添加Win键(Super键) (2009-04-17)">Archlinux下给T43添加Win键(Super键)</a> (15)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/" title="Archlinux下启用Thinkpad功能键 (2008-10-15)">Archlinux下启用Thinkpad功能键</a> (2)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>四个月来的第一篇文章</title>
		<link>http://www.quhuashuai.com/2008/09/first-blog-in-recent-four-months/</link>
		<comments>http://www.quhuashuai.com/2008/09/first-blog-in-recent-four-months/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 00:18:13 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[胡言乱语]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[分享]]></category>
		<category><![CDATA[学习]]></category>
		<category><![CDATA[数学]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=181</guid>
		<description><![CDATA[接近四个月的时间没有在博客上写过东西了，自己也从瑞典转战来到了美国，在美国这边已经开始正式上课了。既然一切已经安定了，自己觉得是时候回来继续博客了。如果说四个月的离开是[...]]]></description>
			<content:encoded><![CDATA[<p>
接近四个月的时间没有在博客上写过东西了，自己也从瑞典转战来到了美国，在美国这边已经开始正式上课了。既然一切已经安定了，自己觉得是时候回来继续博客了。如果说四个月的离开是因为“博客墙”的原因，那么我想自己还没有完全的走出来，因为昨晚自己还在想回来了写些什么呢，可是却始终没有答案。
</p>
<p>
因为我是那种会思考却很少想明白，更难说明白的人，笑来老师的想明白系列我算是看的深有感触。博客给了我一个表达的机会，一个废话的机会，我喜欢把自己想的东西表达出来，因为不喜欢说，又不善于写，所以就找到了这样一个方式。
</p>
<p>
转眼之间，距离自己的第一篇文章<a href="http://www.quhuashuai.com/2007/08/start_my_own_blog/">《开始自己的博客例程》</a>已经一年多了，很不幸的让它在荒芜中度过了一岁生日。一年的时间，自己一共写了140多篇文章，留言也有了1000多条，更重要的是认识了不少的朋友，可惜在我自己消失的这段时间，也没有和这些朋友联系，不过很开心的是经常可以看到他们的文章，只是也四个月没有留言过了。
</p>
<p>
回过头来说写些什么的问题，这已经不是我第一次问自己了，我不敢说自己想明白了，但是现在的想法是：写自己感兴趣的东西，无论是什么，博客如果是写给别人看的，那就真的太累了。写作本应该是一件快乐的事情，当你想写想分享的时候，就写出来，不过不知道那些专门的作家是不是很快乐。“快乐博客”的口号好像很傻，还是不要提出来，自己心里知道就好了。
</p>
<p>
以前的时候，因为会有很多的时间，读硕士毕竟不会太紧张，压力也没有那么大，所以有时间每天看很多的新闻，阅读很多的RSS，也就会有很多的想法，想到什么看到什么就写出来了。现在可好，时间还是比较充裕，不过都留给了该死的书本，面对着qualify的压力，面对probability考试15个通过3个的比例，自己真的不敢放松了。于是除了上课的时间，自己多数是在办公室的桌子上，抱着一个大部头，狂写笔记，傻傻思考。为了避免身体垮下来，从今天开始我已经主动到学校的Gym跑步游泳了。</p>
<p>
博客也不错，能让我暂时静下来，写点东西，思考点数学之外的事情。除此之外，还帮助了不少人，最近到我这里求电子书的人好多，只要哪天不要打击盗版把我抓了就好~ 另外<a href="http://www.quhuashuai.com/tag/&#23398;&#20064;"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;&#8220;&#23398;&#20064;&#8221;&#30340;&#25991;&#31456;"  rel="external">学习</a>中的问题还是很多，到了这个时候还在学习，还没想明白怎么学习，唉，以后少谈游戏，多谈学习吧!</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=181&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/09/first-blog-in-recent-four-months/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/09/first-blog-in-recent-four-months/#comments">24 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/09/first-blog-in-recent-four-months/&amp;title=四个月来的第一篇文章">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/features/" rel="tag">features</a>, <a href="http://www.quhuashuai.com/tag/%e5%88%86%e4%ba%ab/" rel="tag">分享</a>, <a href="http://www.quhuashuai.com/tag/%e5%ad%a6%e4%b9%a0/" rel="tag">学习</a>, <a href="http://www.quhuashuai.com/tag/%e6%95%b0%e5%ad%a6/" rel="tag">数学</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2007/12/mit-sls-lectures-browser/" title="麻省理工学院的SLS课程浏览器 (2007-12-16)">麻省理工学院的SLS课程浏览器</a> (11)</li>
	<li><a href="http://www.quhuashuai.com/2008/04/umass-offer-online-course-in-china/" title="马萨诸塞大学(UMass)获准在中国提供在线课程 (2008-04-10)">马萨诸塞大学(UMass)获准在中国提供在线课程</a> (7)</li>
	<li><a href="http://www.quhuashuai.com/2007/12/yale-open-courses/" title="耶鲁大学推出开放课程材料! (2007-12-14)">耶鲁大学推出开放课程材料!</a> (33)</li>
	<li><a href="http://www.quhuashuai.com/2008/01/ultimate-student-resource-list/" title="终极学生资源列表 (2008-01-24)">终极学生资源列表</a> (18)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/determine-your-study-time/" title="确定每天的学习时间 (2008-10-11)">确定每天的学习时间</a> (65)</li>
	<li><a href="http://www.quhuashuai.com/2008/02/body-building-faq-for-man/" title="男生｜运动｜增肌｜减肥 FAQ (2008-02-01)">男生｜运动｜增肌｜减肥 FAQ</a> (9)</li>
	<li><a href="http://www.quhuashuai.com/2007/12/protect-your-teeth/" title="爱自己，从爱牙齿做起 (2007-12-31)">爱自己，从爱牙齿做起</a> (28)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/is-it-necessary-to-reorganize-notes/" title="整理笔记的必要性？ (2008-10-07)">整理笔记的必要性？</a> (17)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/09/first-blog-in-recent-four-months/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>MSN彩虹行动</title>
		<link>http://www.quhuashuai.com/2008/05/msn-rainbow/</link>
		<comments>http://www.quhuashuai.com/2008/05/msn-rainbow/#comments</comments>
		<pubDate>Fri, 16 May 2008 16:14:57 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[胡言乱语]]></category>
		<category><![CDATA[地震]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=179</guid>
		<description><![CDATA[昨天才知道MSN彩虹行动，是由MSN中国和广州丰田发起的捐款活动，为地震灾区重建彩虹希望小学。这个活动的形式其实非常简单，只是需要国内的MSN用户挂上彩虹签名就行了。

彩虹活动倡议如[...]]]></description>
			<content:encoded><![CDATA[<p>昨天才知道<a href="http://info.msn.com.cn/caihong/rainbow.html">MSN彩虹行动</a>，是由MSN中国和广州丰田发起的捐款活动，为地震灾区重建彩虹希望小学。这个活动的形式其实非常简单，只是需要国内的MSN用户挂上彩虹签名就行了。</p>
<blockquote><p>
彩虹活动倡议如下：（你挂签名我们捐钱）</p>
<p>1.一个MSN中国用户挂彩虹签名，为灾区送出一份温暖，MSN中国将捐出10分爱心款,广州丰田也将捐出10分爱心款。</p>
<p>2.捐款将捐赠给希望小学工程，专门用于四川地震灾区学校的重建。</p>
<p>3.重建的学校将命名为“彩虹小学”，帮助灾区的孩子们重返校园，继续<a href="http://www.quhuashuai.com/tag/&#23398;&#20064;"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;&#8220;&#23398;&#20064;&#8221;&#30340;&#25991;&#31456;"  rel="external">学习</a>。
</p></blockquote>
<p>所以我们大家需要做的就是在自己的MSN名字前面加上(R)即可，需要注意的便是括号应该为英文半角的()，活动的参与方式在<a href="http://info.msn.com.cn/star/24388.shtml">《心系震区 MSN发起彩虹签名行动》</a>中有比较详细的介绍。</p>
<p>Windows下使用MSN的朋友可以按照文中的方式一步一步添加彩虹签名，相信在Mac以及<a href="http://www.quhuashuai.com/tag/linux"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;"Linux"&#30340;&#25991;&#31456;"  rel="external">Linux</a>下使用MSN的朋友应该很容易搞定这件事情。现在Hugh自己已经添加上了，不过好像自己的MSN好友当中添加的不多，所以决定通过博客宣传一下。</p>
<p>自己用amsn下面添加之后截了个图，<br />
<img src="http://www.quhuashuai.com/images/rainbow.jpg" alt="MSN彩虹行动" align="middle"/></p>
<p>按照MSN中国现在的统计数据，仅仅有80万人参与到了这次彩虹行动当中，所以目前募集到的款项一共16万人民币左右，这个数据是不定时更新的。</p>
<p>如果你还没有行动起来，赶紧打开自己的MSN，添加彩虹签名吧，为灾区的朋友送出一份爱心。</p>
<p>今天还看到“<a href="http://www.tudou.com/programs/view/FHrARuJW3M0/">惠州三中捐款事件</a>”，其实就算确实捐款了，为了保存资料或者宣传需要，也不能这样吧，当然还有那个央视那个火炬手捐款的新闻，这种时候怎么能这样呢！</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=179&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/05/msn-rainbow/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/05/msn-rainbow/#comments">4 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/05/msn-rainbow/&amp;title=MSN彩虹行动">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/%e5%9c%b0%e9%9c%87/" rel="tag">地震</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2008/05/what-should-we-do-after-the-earthquake/" title="地震过后，我们能做些什么？ (2008-05-14)">地震过后，我们能做些什么？</a> (3)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/05/msn-rainbow/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>地震过后，我们能做些什么？</title>
		<link>http://www.quhuashuai.com/2008/05/what-should-we-do-after-the-earthquake/</link>
		<comments>http://www.quhuashuai.com/2008/05/what-should-we-do-after-the-earthquake/#comments</comments>
		<pubDate>Wed, 14 May 2008 09:46:11 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[胡言乱语]]></category>
		<category><![CDATA[地震]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=178</guid>
		<description><![CDATA[汶川发生地震，已经是两天之前的事情，这仿佛是我这个年龄的人经历过最大的自然灾害了。第一天第一时刻，在校内发文询问了朋友，那个时候还没有什么灾区的信息；第二天已经被各种媒[...]]]></description>
			<content:encoded><![CDATA[<p>汶川发生地震，已经是两天之前的事情，这仿佛是我这个年龄的人经历过最大的自然灾害了。第一天第一时刻，在校内发文询问了朋友，那个时候还没有什么灾区的信息；第二天已经被各种媒体的图片和视频所包围了，已经难过的不知道该说什么了。</p>
<p>看到很多朋友都写了和地震相关的文章，让更多的朋友了解知道正确真实的捐款方式，是我们每一个blogger应该做的事情，虽然自己不愿意相信有人在这种时候发国难财，骗财骗物，但是为了更好的帮助到灾区的朋友，应该再次选择官方的捐款渠道：</p>
<ul>
<li><a href="http://news.xinhuanet.com/politics/2008-05/13/content_8158260.htm">中国红十字会总会救灾专用账号和热线</a></li>
<li><a href="http://news.xinhuanet.com/politics/2008-05/14/content_8165649.htm">中华慈善总会关于紧急开展抗震救援行动公告</a></li>
<li><a href="http://www.taobao.com/cn/theme/site/scdz_080512.php">“中国红十字总会李连杰壹基金” 快速捐款通道</a></li>
</ul>
<p>因为在瑞典的缘故，自己手边还没有可用的国内卡，所以一直在等待瑞典这边的华人组织有组织捐款活动，目前Kista中国学者联谊会在组织斯德哥尔摩的捐款活动。这里是Kista学者联谊会目前的公告：</p>
<blockquote><p>
瑞典华人紧急赈灾帐号 PLUSGIRO 402239-8， 请注明&#8221;姓名+s512&#8243;！大家赶紧行动起来!</p>
<p>国内发生了大地震，伤亡惨重，死者过万，还有数万生死未卜。灾民急需帮助，灾后重建更是任重道远。大家有钱出钱、有力出力.</p>
<p>现在从瑞典捐款不太方便（现在可以通过国内银行转账，也可以捐钱给瑞典红十字会），所以我们联系中国驻瑞使馆帮我们留学生开一个公共捐款帐号。</p>
<p>请互相转告。</p>
<p>Kista 中国学生学者联谊
</p></blockquote>
<p>献血捐物也是很好的方式。对于献血活动，各大高校应该都有在组织相应的献血活动，记得在北京的时候每个月有三天红十字会都会来采血的，如果你身体没有问题的话，就赶紧行动，400cc的血没有什么影响的。捐物的话应该也有相应的方式，大家可以通过联系红十字会获取相应的信息。</p>
<p>在灾难面前能够行动起来，献出自己的爱心便是值得称赞的，但是总会有很多不和谐的内容出现。有人在争论地震预报的问题，有人在争论追讨责任的问题，有人在讨论名人捐款的数额，还有人在散播谣言，真的不明白为什么会这样，为什么还有人在这种时候还在做这样的事情。</p>
<p>写到这里，听见新闻里说遇难的人数已经14866人了</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=178&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/05/what-should-we-do-after-the-earthquake/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/05/what-should-we-do-after-the-earthquake/#comments">3 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/05/what-should-we-do-after-the-earthquake/&amp;title=地震过后，我们能做些什么？">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/%e5%9c%b0%e9%9c%87/" rel="tag">地震</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2008/05/msn-rainbow/" title="MSN彩虹行动 (2008-05-16)">MSN彩虹行动</a> (4)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/05/what-should-we-do-after-the-earthquake/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
