<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Gaston的日志</title>
	<atom:link href="http://www.gastonwu.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.gastonwu.com</link>
	<description>举得起放得下叫举重，举得起放不下叫负重</description>
	<lastBuildDate>Fri, 23 Dec 2011 13:52:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>sublime-text-2 ubuntu netbook下显示menu的方法</title>
		<link>http://www.gastonwu.com/?p=64</link>
		<comments>http://www.gastonwu.com/?p=64#comments</comments>
		<pubDate>Fri, 23 Dec 2011 13:52:34 +0000</pubDate>
		<dc:creator>gaston</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://www.gastonwu.com/?p=64</guid>
		<description><![CDATA[sublime-text-2在linux下是个很帅的编辑器 但是ubuntu netbook默认安装启动后，不会显示菜单，需要特殊指定，方法如下： env UBUNTU_MENUPROXY= sublime-text-2 为了以后方便可以加入alias. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212; 另附ubuntu下使用apt的安装方法： sudo add-apt-repository ppa:webupd8team/sublime-text-2 sudo apt-get update sudo apt-get install sublime-text-2]]></description>
			<content:encoded><![CDATA[<p>sublime-text-2在linux下是个很帅的编辑器<br />
但是ubuntu netbook默认安装启动后，不会显示菜单，需要特殊指定，方法如下：</p>
<p>env UBUNTU_MENUPROXY= sublime-text-2</p>
<p>为了以后方便可以加入alias.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
另附ubuntu下使用apt的安装方法：</p>
<pre>
sudo add-apt-repository ppa:webupd8team/sublime-text-2
sudo apt-get update
sudo apt-get install sublime-text-2
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.gastonwu.com/?feed=rss2&amp;p=64</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux screen 分屏</title>
		<link>http://www.gastonwu.com/?p=60</link>
		<comments>http://www.gastonwu.com/?p=60#comments</comments>
		<pubDate>Mon, 18 Oct 2010 08:56:55 +0000</pubDate>
		<dc:creator>gaston</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.gastonwu.com/?p=60</guid>
		<description><![CDATA[1>让screen分屏: ctl-a-S 2>切换screen分屏: ctl-a-TAB]]></description>
			<content:encoded><![CDATA[<p>1>让screen分屏:    ctl-a-S<br />
2>切换screen分屏: ctl-a-TAB</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gastonwu.com/?feed=rss2&amp;p=60</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>c signal</title>
		<link>http://www.gastonwu.com/?p=58</link>
		<comments>http://www.gastonwu.com/?p=58#comments</comments>
		<pubDate>Sat, 25 Sep 2010 15:19:46 +0000</pubDate>
		<dc:creator>gaston</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.gastonwu.com/?p=58</guid>
		<description><![CDATA[#include &#60;signal.h&#62; #include &#60;unistd.h&#62; #include &#60;stdio.h&#62; &#160; void sig_usr&#40;int&#41;; &#160; &#160; int main&#40;void&#41; &#123; if&#40;signal&#40;SIGUSR1,sig_usr&#41; == SIG_ERR&#41; printf&#40;&#34;can't catch sigusr1\n&#34;&#41;; if&#40;signal&#40;SIGUSR2,sig_usr&#41; == SIG_ERR&#41; printf&#40;&#34;can't catch sigusr2\n&#34;&#41;; for&#40;;;&#41; pause&#40;&#41;; &#160; &#160; &#125; &#160; void sig_usr&#40;int signo&#41; &#123; if&#40;signo == SIGUSR1&#41; &#123; printf&#40;&#34;::siguser1\n&#34;&#41;; &#125; else if&#40;signo == SIGUSR2&#41; &#123; printf&#40;&#34;::siguser2\n&#34;&#41;; &#125; else &#123; printf&#40;&#34;::rece sig %d\n&#34;,signo&#41;; &#125; [...]]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include &lt;signal.h&gt;</span>
<span style="color: #339933;">#include &lt;unistd.h&gt;</span>
<span style="color: #339933;">#include &lt;stdio.h&gt;</span>
&nbsp;
<span style="color: #993333;">void</span> sig_usr<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
<span style="color: #993333;">int</span> main<span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>signal<span style="color: #009900;">&#40;</span>SIGUSR1<span style="color: #339933;">,</span>sig_usr<span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> SIG_ERR<span style="color: #009900;">&#41;</span>
                <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;can't catch sigusr1<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>signal<span style="color: #009900;">&#40;</span>SIGUSR2<span style="color: #339933;">,</span>sig_usr<span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> SIG_ERR<span style="color: #009900;">&#41;</span>
                <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;can't catch sigusr2<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">;;</span><span style="color: #009900;">&#41;</span>
                pause<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #993333;">void</span> sig_usr<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> signo<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>signo <span style="color: #339933;">==</span> SIGUSR1<span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
                <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;::siguser1<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>signo <span style="color: #339933;">==</span> SIGUSR2<span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
                <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;::siguser2<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #b1b100;">else</span>
        <span style="color: #009900;">&#123;</span>
                <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;::rece sig %d<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span>signo<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #b1b100;">return</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">/</span>siguser1 <span style="color: #339933;">&amp;</span>
<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#93;</span> <span style="color: #0000dd;">2652</span>
kill <span style="color: #339933;">-</span>USR1 <span style="color: #0000dd;">2652</span>
kill <span style="color: #339933;">-</span>USR2 <span style="color: #0000dd;">2652</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.gastonwu.com/?feed=rss2&amp;p=58</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>mediawiki语法加亮插件GeSHi</title>
		<link>http://www.gastonwu.com/?p=50</link>
		<comments>http://www.gastonwu.com/?p=50#comments</comments>
		<pubDate>Mon, 20 Sep 2010 04:52:08 +0000</pubDate>
		<dc:creator>gaston</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[mediawiki 插件 plugin GeSHi]]></category>

		<guid isPermaLink="false">http://www.gastonwu.com/?p=50</guid>
		<description><![CDATA[使用语法如： &#60;syntaxhighlight lang=”php”&#62; &#60;?php echo “hello”; ?&#62; &#60;/syntaxhighlight&#62; 安装方法，参照这就可以了: http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi#Installation 大概过了下，这个类也可以php单独来call: GeSHi的项目主页:http://sourceforge.net/projects/geshi 未来也许有的着 顺手也给wordpress也装了个wp-syntax，上面样子有点丑:(]]></description>
			<content:encoded><![CDATA[<p><strong>使用语法如：</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;syntaxhighlight lang=”php”&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">echo</span> “hello”<span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/syntaxhighlight&gt;</pre></div></div>

<p><strong>安装方法，参照这就可以了:</strong></p>
<p>http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi#Installation</p>
<p><strong>大概过了下，这个类也可以php单独来call:</strong></p>
<p>GeSHi的项目主页:http://sourceforge.net/projects/geshi 未来也许有的着</p>
<p>顺手也给wordpress也装了个<a href='http://wordpress.org/extend/plugins/wp-syntax/' target='_blank'>wp-syntax</a>，上面样子有点丑:(</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gastonwu.com/?feed=rss2&amp;p=50</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ignore white space in vimdiff</title>
		<link>http://www.gastonwu.com/?p=48</link>
		<comments>http://www.gastonwu.com/?p=48#comments</comments>
		<pubDate>Sat, 18 Sep 2010 03:56:36 +0000</pubDate>
		<dc:creator>gaston</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://www.gastonwu.com/?p=48</guid>
		<description><![CDATA[forward: http://vim.wikia.com/wiki/Ignore_white_space_in_vimdiff 1&#62; set diffopt+=iwhite 2&#62; vimdiff -c 'set diffopt+=iwhite']]></description>
			<content:encoded><![CDATA[<pre>
<pre>forward: http://vim.wikia.com/wiki/Ignore_white_space_in_vimdiff

1&gt;
set diffopt+=iwhite
</pre>
<p>2&gt;<br />
vimdiff -c 'set diffopt+=iwhite'</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.gastonwu.com/?feed=rss2&amp;p=48</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>以前坚定的2个认识,现在推翻了</title>
		<link>http://www.gastonwu.com/?p=46</link>
		<comments>http://www.gastonwu.com/?p=46#comments</comments>
		<pubDate>Mon, 13 Sep 2010 06:01:54 +0000</pubDate>
		<dc:creator>gaston</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://www.gastonwu.com/?p=46</guid>
		<description><![CDATA[与同事观察一个下线的项目数据发现 2个意外: 1&#62;Mysql中一个2千万的主表，没有使用分表，仍然跑的稳定 2&#62;Mysql使用的是innodb， 该ibdata一个16G文件，系统是linux 32位，仍跑的挺好，没有传闻说的那样32位系统，file size超过2G就慢很多 有机会还是要多灌些数据跑跑边界值.]]></description>
			<content:encoded><![CDATA[<p>与同事观察一个下线的项目数据发现 2个意外:<br />
1&gt;Mysql中一个2千万的主表，没有使用分表，仍然跑的稳定<br />
2&gt;Mysql使用的是innodb， 该ibdata一个16G文件，系统是linux 32位，仍跑的挺好，没有传闻说的那样32位系统，file size超过2G就慢很多</p>
<p>有机会还是要多灌些数据跑跑边界值.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gastonwu.com/?feed=rss2&amp;p=46</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>show full processlist</title>
		<link>http://www.gastonwu.com/?p=43</link>
		<comments>http://www.gastonwu.com/?p=43#comments</comments>
		<pubDate>Fri, 10 Sep 2010 04:05:05 +0000</pubDate>
		<dc:creator>gaston</dc:creator>
				<category><![CDATA[MYSql]]></category>

		<guid isPermaLink="false">http://www.gastonwu.com/?p=43</guid>
		<description><![CDATA[用show processlist很多年，一直恨于不能看全运行中的sql&#8230; 今日发现，原来还可以show full processlist 哈哈.. 这样就可以全部在列表中显示全部sql了.]]></description>
			<content:encoded><![CDATA[<p>用show processlist很多年，一直恨于不能看全运行中的sql&#8230;</p>
<p>今日发现，原来还可以show full processlist 哈哈..</p>
<p>这样就可以全部在列表中显示全部sql了.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gastonwu.com/?feed=rss2&amp;p=43</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10年最佳开源之一Tiki Wiki CMS Groupware－－感觉还不太够</title>
		<link>http://www.gastonwu.com/?p=33</link>
		<comments>http://www.gastonwu.com/?p=33#comments</comments>
		<pubDate>Sat, 28 Aug 2010 06:33:41 +0000</pubDate>
		<dc:creator>gaston</dc:creator>
				<category><![CDATA[Product & Tool]]></category>

		<guid isPermaLink="false">http://www.gastonwu.com/?p=33</guid>
		<description><![CDATA[在某网站上看到，这款Tiki Wiki CMS Groupware 乍一看名字，因该还不错..心想是不是期望的那款 进入Tiki Wiki CMS Groupware站点(http://info.tikiwiki.org/tiki-index.php)看这个feature list Wikis (like in Wikipedia) Forums (like in phpBB) Blogs (like in WordPress) Articles (like in Yahoo News) Image Gallery (like in Flickr) Map Server (like in Google Maps) Link Directory (like in DMOZ) Multilingual (like in Babel Fish) Bug Tracker (like in Bugzilla) RSS Feeds [...]]]></description>
			<content:encoded><![CDATA[<p>在某网站上看到，这款Tiki Wiki CMS Groupware</p>
<p>乍一看名字，因该还不错..心想是不是期望的那款</p>
<p>进入Tiki Wiki CMS Groupware站点(<a href="http://info.tikiwiki.org/tiki-index.php">http://info.tikiwiki.org/tiki-index.php</a>)看这个feature list</p>
<p style="padding-left: 30px;">Wikis (like in Wikipedia)<br />
Forums (like in phpBB)<br />
Blogs (like in WordPress)<br />
Articles (like in Yahoo News)<br />
Image Gallery (like in Flickr)<br />
Map Server (like in Google Maps)<br />
Link Directory (like in DMOZ)<br />
Multilingual (like in Babel Fish)<br />
Bug Tracker (like in Bugzilla)<br />
RSS Feeds (like in Digg)<br />
Free Open Source software (LGPL)</p>
<p>便down下install后，试用过wiki/forum/blog，结果还是比较失望的..</p>
<p style="padding-left: 30px;">功能点是有，但不够纯正</p>
<p style="padding-left: 30px;">除非对功能／页面都非常的不介意</p>
<p>截屏上来<br />

<a href='http://www.gastonwu.com/?attachment_id=38' title='tiki-forum-article'><img width="150" height="146" src="http://www.gastonwu.com/wp-content/uploads/2010/08/tiki-forum-article.png" class="attachment-thumbnail" alt="tiki-forum-article" title="tiki-forum-article" /></a>
<a href='http://www.gastonwu.com/?attachment_id=37' title='tiki-forum'><img width="150" height="35" src="http://www.gastonwu.com/wp-content/uploads/2010/08/tiki-forum.png" class="attachment-thumbnail" alt="tiki-forum" title="tiki-forum" /></a>
<a href='http://www.gastonwu.com/?attachment_id=36' title='tiki-index'><img width="150" height="71" src="http://www.gastonwu.com/wp-content/uploads/2010/08/tiki-index.png" class="attachment-thumbnail" alt="tiki-index" title="tiki-index" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gastonwu.com/?feed=rss2&amp;p=33</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>卡布其诺cappuccino及使用其开发的product -都相当不错!</title>
		<link>http://www.gastonwu.com/?p=23</link>
		<comments>http://www.gastonwu.com/?p=23#comments</comments>
		<pubDate>Sat, 28 Aug 2010 04:10:42 +0000</pubDate>
		<dc:creator>gaston</dc:creator>
				<category><![CDATA[Product & Tool]]></category>

		<guid isPermaLink="false">http://www.gastonwu.com/?p=23</guid>
		<description><![CDATA[﻿从javaeye上看到新闻 摩托罗拉收购开源Web框架Cappuccino 进去瞄了下，发现这里讲的Demo工具都还蛮不错的，是我喜欢的型. 原型图工具 http://gomockingbird.com/mockingbird/ slides ppt工具 http://280slides.com更多使用其开发的产品请 点击这里more]]></description>
			<content:encoded><![CDATA[<p>﻿从javaeye上看到新闻 <a href="http://www.javaeye.com/news/17459">摩托罗拉收购开源Web框架Cappuccino</a></p>
<p>进去瞄了下，发现这里讲的Demo工具都还蛮不错的，是我喜欢的型.</p>
<ol>
<li>原型图工具 <a href="http://gomockingbird.com/mockingbird/" target="_blank">http://gomockingbird.com/mockingbird/</a><img src="http://gomockingbird.com/media/images/main-screenshot.png" alt="" /></li>
<li>slides ppt工具 <a href="http://280slides.com" target="_blank">http://280slides.com</a><img src="http://280slides.com/images/homeContentBG.jpg" alt="" />更多使用其开发的产品请 <a href="http://cappuccino.org/learn/demos/" target="_blank">点击这里more</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.gastonwu.com/?feed=rss2&amp;p=23</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CI 我来了</title>
		<link>http://www.gastonwu.com/?p=16</link>
		<comments>http://www.gastonwu.com/?p=16#comments</comments>
		<pubDate>Tue, 24 Aug 2010 17:01:04 +0000</pubDate>
		<dc:creator>gaston</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.gastonwu.com/?p=16</guid>
		<description><![CDATA[最近打算弄一个小网站玩玩.. 觉得还是拿一个流行的php framework&#8230;不打算自已写或无框架去run. 最终选定使用ci.. 主要理由是： 尽量简单：包括代码结构，安装，扩展。主要是不想未来debug累死 有脚本生成的，也都尽量不考虑，生成了太多文件，不知道他到底做了什么。也是为了接入svn方便. 下载ci,简单配置后就可以run了 关于url rewirte 1>参考这里: http://codeigniter.org.cn/user_guide/general/urls.html 2>取不到GET值时，参考这里 http://www.ctochina.net/forum/show/15 用了GET提交表单,但发现CI给出错误显示. 提示为: The page you requested was not found. 后来查了资料才发现,CI默认过滤了$_GET.但可以通过配置来实现. 1) 在config.php 中，将'uri_protocol' 设置为 'PATH_INFO'. $config['uri_protocol'] = "PATH_INFO"; 2) 在config.php 中，将'enable_query_strings' 设置为 TRUE. $config['enable_query_strings'] = TRUE; OK,现在可以通过 $this->input->get('参数名');]]></description>
			<content:encoded><![CDATA[<p>最近打算弄一个小网站玩玩..</p>
<p>觉得还是拿一个流行的php framework&#8230;不打算自已写或无框架去run.<br />
最终选定使用ci..<br />
主要理由是：<br />
    尽量简单：包括代码结构，安装，扩展。主要是不想未来debug累死<br />
    有脚本生成的，也都尽量不考虑，生成了太多文件，不知道他到底做了什么。也是为了接入svn方便.</p>
<p>下载ci,简单配置后就可以run了<br />
关于url rewirte<br />
1>参考这里:</p>
<p>http://codeigniter.org.cn/user_guide/general/urls.html</p>
<p>2>取不到GET值时，参考这里</p>
<p>http://www.ctochina.net/forum/show/15</p>
<p><code><br />
用了GET提交表单,但发现CI给出错误显示.<br />
提示为:</p>
<p>The page you requested was not found.</p>
<p>后来查了资料才发现,CI默认过滤了$_GET.但可以通过配置来实现.</p>
<p>1) 在config.php 中，将'uri_protocol' 设置为 'PATH_INFO'.</p>
<p>$config['uri_protocol']	= "PATH_INFO";</p>
<p>2) 在config.php 中，将'enable_query_strings' 设置为 TRUE.</p>
<p>$config['enable_query_strings'] = TRUE;</p>
<p>OK,现在可以通过</p>
<p>$this->input->get('参数名');<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gastonwu.com/?feed=rss2&amp;p=16</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

