<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.5" -->
<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/"
	>

<channel>
	<title>Rainux's Weblog</title>
	<link>http://www.rainux.org</link>
	<description>一个无趣的人类，不喜欢电影，不懂得时尚，不擅长社交</description>
	<pubDate>Wed, 18 Jun 2008 14:10:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.5</generator>
	<language>en</language>
			<item>
		<title>解决 ssh 创建连接极慢的问题</title>
		<link>http://www.rainux.org/2008/06/18/229</link>
		<comments>http://www.rainux.org/2008/06/18/229#comments</comments>
		<pubDate>Wed, 18 Jun 2008 14:08:56 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Software 软件</dc:subject>
	<dc:subject>GNU/Linux</dc:subject><dc:subject>GNU/Linux</dc:subject><dc:subject>Software 软件</dc:subject><dc:subject>ssh</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/06/18/229</guid>
		<description><![CDATA[做 Web 开发的工作经常需要 ssh 或者 scp 连接一堆远程主机，同样是 Linux 主机，其中一些创建 ssh 连接速度特别慢，连接建立之后执行操作速度却很正常，看来应该不是网络原因。

Google 了一下，这位老兄也遇到类似的问题，看完他描述的问题才知道可以用 ssh -v 来查看详细的连接建立过程，马上用一台建立连接很慢的主机试了一下，在一大堆输出信息中发现在这里停留最久:

debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure.  Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure.  Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure.  Minor [...]]]></description>
			<content:encoded><![CDATA[<p>做 Web 开发的工作经常需要 ssh 或者 scp 连接一堆远程主机，同样是 Linux 主机，其中一些创建 ssh 连接速度特别慢，连接建立之后执行操作速度却很正常，看来应该不是网络原因。</p>

<p>Google 了一下，<a href="http://www.beowulf.org/archive/2002-August/007894.html">这位老兄</a>也遇到类似的问题，看完他描述的问题才知道可以用 ssh -v 来查看详细的连接建立过程，马上用一台建立连接很慢的主机试了一下，在一大堆输出信息中发现在这里停留最久:</p>

<pre><code>debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure.  Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure.  Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure.  Minor code may provide more information


debug1: Next authentication method: publickey
</code></pre>

<p>原来是因为尝试了个没有意义而且会失败的 gssapi-with-mic 认证方式浪费了时间，打开 /etc/ssh/ssh_config 把里面的 GSSAPIAuthentication yes 改成 no 关掉它，即可让 ssh 直接尝试美妙的 publickey 认证方式。</p>

<p>禁用 GSSAPIAuthentication 前后建立 ssh 连接时间的对比:</p>

<pre><code>rainux@mutalisk:~$ time ssh root@i-will-not-tell-you.com exit

real    0m18.488s
user    0m0.004s
sys     0m0.008s
rainux@mutalisk:~$ time ssh root@i-will-not-tell-you.com exit

real    0m3.531s
user    0m0.016s
sys     0m0.000s
</code></pre>
Tags: <a href="http://www.rainux.org/tag/gnu%2Flinux/" rel="tag">GNU/Linux</a>, <a href="http://www.rainux.org/tag/software_%E8%BD%AF%E4%BB%B6/" rel="tag">Software 软件</a>, <a href="http://www.rainux.org/tag/ssh/" rel="tag">ssh</a><br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/06/18/229/feed/</wfw:commentRss>
		</item>
		<item>
		<title>六月真是个好时节啊</title>
		<link>http://www.rainux.org/2008/06/05/228</link>
		<comments>http://www.rainux.org/2008/06/05/228#comments</comments>
		<pubDate>Thu, 05 Jun 2008 02:44:46 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Software 软件</dc:subject>
	<dc:subject>Web Development 织网</dc:subject><dc:subject>Software 软件</dc:subject><dc:subject>Web Development 织网</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/06/05/228</guid>
		<description><![CDATA[Ruby 1.8.7 和 Rails 2.1.0 前两天相继发布。Firefox 3.0 昨天进入 rc2 阶段，并且将在六月中旬发布 3.0 正式版。开发了十五年的 Wine 终于进入 1.0 的 rc 阶段，并且即将发布 1.0 正式版。

看来是时候更新 SCV Selector 了，可惜预想了很久的 rep 版本识别还是没有时间去研究……
Tags: Software 软件, Web Development 织网]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ruby-lang.org/en/news/2008/05/31/ruby-1-8-7-has-been-released/">Ruby 1.8.7</a> 和 <a href="http://blog.rubyonrails.org/2008/6/1/rails-2-1-time-zones-dirty-caching-gem-dependencies-caching-etc">Rails 2.1.0</a> 前两天相继发布。<a href="http://www.mozilla.com/en-US/firefox/3.0rc2/releasenotes/">Firefox 3.0 昨天进入 rc2 阶段</a>，并且将在六月中旬发布 3.0 正式版。开发了十五年的 <a href="http://wiki.winehq.org/WineReleasePlan">Wine 终于进入 1.0 的 rc 阶段</a>，并且即将发布 1.0 正式版。</p>

<p>看来是时候更新 SCV Selector 了，可惜预想了很久的 rep 版本识别还是没有时间去研究……</p>
Tags: <a href="http://www.rainux.org/tag/software_%E8%BD%AF%E4%BB%B6/" rel="tag">Software 软件</a>, <a href="http://www.rainux.org/tag/web_development_%E7%BB%87%E7%BD%91/" rel="tag">Web Development 织网</a><br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/06/05/228/feed/</wfw:commentRss>
		</item>
		<item>
		<title>在 Debian lenny amd64 里安装 Iceweasel/Firefox 的 Flash 播放器插件</title>
		<link>http://www.rainux.org/2008/06/04/227</link>
		<comments>http://www.rainux.org/2008/06/04/227#comments</comments>
		<pubDate>Wed, 04 Jun 2008 07:25:38 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Software 软件</dc:subject>
	<dc:subject>GNU/Linux</dc:subject><dc:subject>GNU/Linux</dc:subject><dc:subject>Software 软件</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/06/04/227</guid>
		<description><![CDATA[最近需要测试 Flash 内容，搜到了这个很简单的办法，原文是针对 etch 的，对于 lenny 来说更简单，官方仓库里已经有 nspluginwrapper 了，直接 apt 安装即可。

aptitude install nspluginwrapper


然后在自己的账户（非 root 账户）里下载 Adobe 的 flash player 并使用 nspluginwrapper 安装为 Iceweasel/Firefox 的插件即可。

wget http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_9_linux.tar.gz
tar -zxf install_flash_player_9_linux.tar.gz
mkdir ~/.mozilla/plugins/
mv install_flash_player_9_linux/libflashplayer.so ~/.mozilla/plugins/
nspluginwrapper -i ~/.mozilla/plugins/libflashplayer.so
# Start/restart iceweasel/firefox/whatever

Tags: GNU/Linux, Software 软件]]></description>
			<content:encoded><![CDATA[<p>最近需要测试 Flash 内容，搜到了这个<a href="http://www.fsckin.com/2007/09/20/how-to-install-adobe-flash-player-for-amd64-64-bit-on-debian-etch/">很简单的办法</a>，原文是针对 etch 的，对于 lenny 来说更简单，官方仓库里已经有 nspluginwrapper 了，直接 apt 安装即可。</p>

<pre><code>aptitude install nspluginwrapper
</code></pre>

<p>然后在自己的账户（非 root 账户）里下载 Adobe 的 flash player 并使用 nspluginwrapper 安装为 Iceweasel/Firefox 的插件即可。</p>

<pre><code>wget http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_9_linux.tar.gz
tar -zxf install_flash_player_9_linux.tar.gz
mkdir ~/.mozilla/plugins/
mv install_flash_player_9_linux/libflashplayer.so ~/.mozilla/plugins/
nspluginwrapper -i ~/.mozilla/plugins/libflashplayer.so
# Start/restart iceweasel/firefox/whatever
</code></pre>
Tags: <a href="http://www.rainux.org/tag/gnu%2Flinux/" rel="tag">GNU/Linux</a>, <a href="http://www.rainux.org/tag/software_%E8%BD%AF%E4%BB%B6/" rel="tag">Software 软件</a><br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/06/04/227/feed/</wfw:commentRss>
		</item>
		<item>
		<title>很爽的 Rails CHM Documentation 2.0.2</title>
		<link>http://www.rainux.org/2008/05/30/225</link>
		<comments>http://www.rainux.org/2008/05/30/225#comments</comments>
		<pubDate>Fri, 30 May 2008 07:49:52 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Ruby on Rails</dc:subject><dc:subject>Ruby on Rails</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/05/30/225</guid>
		<description><![CDATA[delynn 老兄终于发布了他的 Rails CHM Documentation 的 2.0.2 版，再也不用忍受 RailsBrain.com 那个 Rails API with the AJAX flavor 糟糕的目录结构了。

网上流传的所有 Rails 文档都是用 rdoc 从 Rails 源代码里的 RDoc 注释自动生成的，内容都完全一样。但只有这位 delynn 老兄的 Rails CHM Documentation 目录是手工整理的，按照 Module 分类，结构非常清晰。
Tags: Ruby on Rails]]></description>
			<content:encoded><![CDATA[<p><a href="http://delynnberry.com/">delynn</a> 老兄终于发布了他的 <a href="http://delynnberry.com/projects/rails-chm-documentation/">Rails CHM Documentation</a> 的 2.0.2 版，再也不用忍受 <a href="http://www.railsbrain.com/">RailsBrain.com</a> 那个 <a href="http://www.railsbrain.com/api/rails-2.0.2/doc/index.html">Rails API with the AJAX flavor</a> 糟糕的目录结构了。</p>

<p>网上流传的所有 Rails 文档都是用 rdoc 从 Rails 源代码里的 RDoc 注释自动生成的，内容都完全一样。但只有这位 delynn 老兄的 Rails CHM Documentation 目录是手工整理的，按照 Module 分类，结构非常清晰。</p>
Tags: <a href="http://www.rainux.org/tag/ruby_on_rails/" rel="tag">Ruby on Rails</a><br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/05/30/225/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-05-10</title>
		<link>http://www.rainux.org/2008/05/10/224</link>
		<comments>http://www.rainux.org/2008/05/10/224#comments</comments>
		<pubDate>Sat, 10 May 2008 00:43:44 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/05/10/224</guid>
		<description><![CDATA[
    
        Easy DragToGo :: Firefox Add-ons
        (tags: firefox extension)
    

Tags: No Tags]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="https://addons.mozilla.org/en-US/firefox/addon/6639">Easy DragToGo :: Firefox Add-ons</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/firefox">firefox</a> <a href="http://del.icio.us/rainux/extension">extension</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/05/10/224/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-05-09</title>
		<link>http://www.rainux.org/2008/05/09/223</link>
		<comments>http://www.rainux.org/2008/05/09/223#comments</comments>
		<pubDate>Fri, 09 May 2008 00:42:42 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/05/09/223</guid>
		<description><![CDATA[
    
        CookieSwap :: Firefox Add-ons
        (tags: firefox extensions)
    
    
        Password Exporter :: Firefox Add-ons
        (tags: firefox [...]]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="https://addons.mozilla.org/en-US/firefox/addon/3255">CookieSwap :: Firefox Add-ons</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/firefox">firefox</a> <a href="http://del.icio.us/rainux/extensions">extensions</a>)</div>
    </li>
    <li>
        <div class="delicious-link"><a href="https://addons.mozilla.org/en-US/firefox/addon/2848">Password Exporter :: Firefox Add-ons</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/firefox">firefox</a> <a href="http://del.icio.us/rainux/extensions">extensions</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/05/09/223/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-05-07</title>
		<link>http://www.rainux.org/2008/05/07/222</link>
		<comments>http://www.rainux.org/2008/05/07/222#comments</comments>
		<pubDate>Wed, 07 May 2008 00:50:24 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/05/07/222</guid>
		<description><![CDATA[
    
        Caliban Ruby Projects
        (tags: programming ruby tools)
    
    
        GTDInbox - GTD, Task Management and a Better Inbox for Gmail
    [...]]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://www.caliban.org/ruby/">Caliban Ruby Projects</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/programming">programming</a> <a href="http://del.icio.us/rainux/ruby">ruby</a> <a href="http://del.icio.us/rainux/tools">tools</a>)</div>
    </li>
    <li>
        <div class="delicious-link"><a href="http://gtdinbox.com/">GTDInbox - GTD, Task Management and a Better Inbox for Gmail</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/firefox">firefox</a> <a href="http://del.icio.us/rainux/extension">extension</a>)</div>
    </li>
    <li>
        <div class="delicious-link"><a href="https://addons.mozilla.org/en-US/firefox/addon/6076">Better Gmail 2 :: Firefox Add-ons</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/firefox">firefox</a> <a href="http://del.icio.us/rainux/extension">extension</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/05/07/222/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-04-28</title>
		<link>http://www.rainux.org/2008/04/28/221</link>
		<comments>http://www.rainux.org/2008/04/28/221#comments</comments>
		<pubDate>Mon, 28 Apr 2008 00:38:37 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/04/28/221</guid>
		<description><![CDATA[
    
        jRails - jQuery on Rails
        (tags: rails jquery javascript)
    

Tags: No Tags]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://ennerchi.com/projects/jrails">jRails - jQuery on Rails</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/rails">rails</a> <a href="http://del.icio.us/rainux/jquery">jquery</a> <a href="http://del.icio.us/rainux/javascript">javascript</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/04/28/221/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-04-27</title>
		<link>http://www.rainux.org/2008/04/27/220</link>
		<comments>http://www.rainux.org/2008/04/27/220#comments</comments>
		<pubDate>Sun, 27 Apr 2008 00:41:53 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/04/27/220</guid>
		<description><![CDATA[
    
        a fresh debian 4.0 etch, lighttpd, php, mysql, mod_geoip installation with maxmind database and visitors webstats, monitored by runit &#124; A Blackhat’s Diary
        (tags: debian lighttpd php mysql)
    
    
 [...]]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://www.seo-blackhat.com/article/a-fresh-debian-40-etch-lighttpd-php-mysql-mod_geoip-installation-with-maxmind-database-and-visitors-webstats-monitored-by-runit.html">a fresh debian 4.0 etch, lighttpd, php, mysql, mod_geoip installation with maxmind database and visitors webstats, monitored by runit | A Blackhat’s Diary</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/debian">debian</a> <a href="http://del.icio.us/rainux/lighttpd">lighttpd</a> <a href="http://del.icio.us/rainux/php">php</a> <a href="http://del.icio.us/rainux/mysql">mysql</a>)</div>
    </li>
    <li>
        <div class="delicious-link"><a href="http://jointheconversation.org/railsgit">Using Git to Manage and Deploy your Rails Apps | Join The Conversation</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/rails">rails</a> <a href="http://del.icio.us/rainux/development">development</a> <a href="http://del.icio.us/rainux/screencast">screencast</a> <a href="http://del.icio.us/rainux/git">git</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/04/27/220/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-04-21</title>
		<link>http://www.rainux.org/2008/04/21/219</link>
		<comments>http://www.rainux.org/2008/04/21/219#comments</comments>
		<pubDate>Mon, 21 Apr 2008 00:43:57 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/04/21/219</guid>
		<description><![CDATA[
    
        Free Mind » Blog Archive » RMMSeg: Ruby 实现中文分词
        (tags: ruby chinese)
    

Tags: No Tags]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://pluskid.lifegoo.com/?p=261">Free Mind » Blog Archive » RMMSeg: Ruby 实现中文分词</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/ruby">ruby</a> <a href="http://del.icio.us/rainux/chinese">chinese</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/04/21/219/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-04-18</title>
		<link>http://www.rainux.org/2008/04/18/218</link>
		<comments>http://www.rainux.org/2008/04/18/218#comments</comments>
		<pubDate>Fri, 18 Apr 2008 00:41:14 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/04/18/218</guid>
		<description><![CDATA[
    
        Home: Yet Another Multicolumn Layout &#124; An (X)HTML/CSS Framework
        (tags: css framework webdesign)
    

Tags: No Tags]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://www.yaml.de/en/home.html">Home: Yet Another Multicolumn Layout | An (X)HTML/CSS Framework</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/css">css</a> <a href="http://del.icio.us/rainux/framework">framework</a> <a href="http://del.icio.us/rainux/webdesign">webdesign</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/04/18/218/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-04-10</title>
		<link>http://www.rainux.org/2008/04/10/217</link>
		<comments>http://www.rainux.org/2008/04/10/217#comments</comments>
		<pubDate>Thu, 10 Apr 2008 00:44:05 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/04/10/217</guid>
		<description><![CDATA[
    
        10 JavaScript Effects to Boost Your Website’s Fanciness Factor &#124; Six Revisions
        (tags: javascript webdesign)
    

Tags: No Tags]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://sixrevisions.com/rapid-development/10_ajax_effects_website_fanciness/">10 JavaScript Effects to Boost Your Website’s Fanciness Factor | Six Revisions</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/javascript">javascript</a> <a href="http://del.icio.us/rainux/webdesign">webdesign</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/04/10/217/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-04-03</title>
		<link>http://www.rainux.org/2008/04/03/216</link>
		<comments>http://www.rainux.org/2008/04/03/216#comments</comments>
		<pubDate>Thu, 03 Apr 2008 00:51:39 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/04/03/216</guid>
		<description><![CDATA[
    
        Optimizing Performance in Lighttpd
        (tags: lighttpd optimization performance)
    

Tags: No Tags]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://www.debianhelp.co.uk/performancelighttpd.htm">Optimizing Performance in Lighttpd</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/lighttpd">lighttpd</a> <a href="http://del.icio.us/rainux/optimization">optimization</a> <a href="http://del.icio.us/rainux/performance">performance</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/04/03/216/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-03-31</title>
		<link>http://www.rainux.org/2008/03/31/215</link>
		<comments>http://www.rainux.org/2008/03/31/215#comments</comments>
		<pubDate>Mon, 31 Mar 2008 00:36:46 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/03/31/215</guid>
		<description><![CDATA[
    
        Railscasts - Free Ruby on Rails Screencasts
        (tags: rails screencast documentation tutorials)
    

Tags: No Tags]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://railscasts.com/">Railscasts - Free Ruby on Rails Screencasts</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/rails">rails</a> <a href="http://del.icio.us/rainux/screencast">screencast</a> <a href="http://del.icio.us/rainux/documentation">documentation</a> <a href="http://del.icio.us/rainux/tutorials">tutorials</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/03/31/215/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-03-03</title>
		<link>http://www.rainux.org/2008/03/03/213</link>
		<comments>http://www.rainux.org/2008/03/03/213#comments</comments>
		<pubDate>Mon, 03 Mar 2008 00:29:47 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/03/03/213</guid>
		<description><![CDATA[
    
        The rails.vim Tutorial
        (tags: rails vim)
    
    
        Ariejan.net / ActiveScaffold, Acts_as_taggable_on_steroids (activescaffold, rubyonrails)
        (tags: activescaffold [...]]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://ruby.about.com/od/railsvim/p/railsvim_tutor.htm">The rails.vim Tutorial</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/rails">rails</a> <a href="http://del.icio.us/rainux/vim">vim</a>)</div>
    </li>
    <li>
        <div class="delicious-link"><a href="http://ariejan.net/2007/06/11/activescaffold-acts_as_taggable_on_steroids/">Ariejan.net / ActiveScaffold, Acts_as_taggable_on_steroids (activescaffold, rubyonrails)</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/activescaffold">activescaffold</a> <a href="http://del.icio.us/rainux/rubyonrails">rubyonrails</a> <a href="http://del.icio.us/rainux/acts_as_taggable">acts_as_taggable</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/03/03/213/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-03-02</title>
		<link>http://www.rainux.org/2008/03/02/212</link>
		<comments>http://www.rainux.org/2008/03/02/212#comments</comments>
		<pubDate>Sun, 02 Mar 2008 00:32:06 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/03/02/212</guid>
		<description><![CDATA[
    
        FoxyProxy :: Firefox Add-ons
        (tags: firefox extension)
    

Tags: No Tags]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="https://addons.mozilla.org/en-US/firefox/addon/2464">FoxyProxy :: Firefox Add-ons</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/firefox">firefox</a> <a href="http://del.icio.us/rainux/extension">extension</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/03/02/212/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-02-29</title>
		<link>http://www.rainux.org/2008/02/29/211</link>
		<comments>http://www.rainux.org/2008/02/29/211#comments</comments>
		<pubDate>Fri, 29 Feb 2008 00:36:45 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/02/29/211</guid>
		<description><![CDATA[
    
        Tree Style Tab :: Firefox Add-ons
        (tags: firefox extension)
    

Tags: No Tags]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="https://addons.mozilla.org/en-US/firefox/addon/5890">Tree Style Tab :: Firefox Add-ons</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/firefox">firefox</a> <a href="http://del.icio.us/rainux/extension">extension</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/02/29/211/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-02-27</title>
		<link>http://www.rainux.org/2008/02/27/210</link>
		<comments>http://www.rainux.org/2008/02/27/210#comments</comments>
		<pubDate>Wed, 27 Feb 2008 00:26:37 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/02/27/210</guid>
		<description><![CDATA[
    
        Ruby on Rails Finite State Machine Plugin: acts_as_state_machine » rails symphonies
        (tags: rubyonrails acts_as_state_machine)
    

Tags: No Tags]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://rails.aizatto.com/2007/05/24/ruby-on-rails-finite-state-machine-plugin-acts_as_state_machine/">Ruby on Rails Finite State Machine Plugin: acts_as_state_machine » rails symphonies</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/rubyonrails">rubyonrails</a> <a href="http://del.icio.us/rainux/acts_as_state_machine">acts_as_state_machine</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/02/27/210/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-02-20</title>
		<link>http://www.rainux.org/2008/02/20/209</link>
		<comments>http://www.rainux.org/2008/02/20/209#comments</comments>
		<pubDate>Wed, 20 Feb 2008 00:35:30 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/02/20/209</guid>
		<description><![CDATA[
    
        RoR网站如何利用lighttpd的X-sendfile功能提升文件下载性能 - robbin的自言自语 - JavaEye技术网站
        (tags: rubyonrails lighttpd)
    
    
        JavaEye网站的RoR性能优化经验谈 - robbin的自言自语 - JavaEye技术网站
        (tags: [...]]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://robbin.javaeye.com/blog/154538">RoR网站如何利用lighttpd的X-sendfile功能提升文件下载性能 - robbin的自言自语 - JavaEye技术网站</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/rubyonrails">rubyonrails</a> <a href="http://del.icio.us/rainux/lighttpd">lighttpd</a>)</div>
    </li>
    <li>
        <div class="delicious-link"><a href="http://robbin.javaeye.com/blog/157731">JavaEye网站的RoR性能优化经验谈 - robbin的自言自语 - JavaEye技术网站</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/rubyonrails">rubyonrails</a> <a href="http://del.icio.us/rainux/lighttpd">lighttpd</a> <a href="http://del.icio.us/rainux/performance">performance</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/02/20/209/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-02-19</title>
		<link>http://www.rainux.org/2008/02/19/208</link>
		<comments>http://www.rainux.org/2008/02/19/208#comments</comments>
		<pubDate>Tue, 19 Feb 2008 00:33:05 +0000</pubDate>
		<dc:creator>Rainux</dc:creator>
		
	<dc:subject>Network 网络</dc:subject>
		<guid isPermaLink="false">http://www.rainux.org/2008/02/19/208</guid>
		<description><![CDATA[
    
        Ajaxload - Ajax loading gif generator
        (tags: ajax webdesign tools)
    

Tags: No Tags]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://www.ajaxload.info/">Ajaxload - Ajax loading gif generator</a></div>
        <div class="delicious-tags">(tags: <a href="http://del.icio.us/rainux/ajax">ajax</a> <a href="http://del.icio.us/rainux/webdesign">webdesign</a> <a href="http://del.icio.us/rainux/tools">tools</a>)</div>
    </li>
</ul>
Tags: No Tags<br />]]></content:encoded>
			<wfw:commentRss>http://www.rainux.org/2008/02/19/208/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
