<?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>phill84.org &#187; linux</title>
	<atom:link href="http://phill84.org/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://phill84.org</link>
	<description>System.out.print</description>
	<lastBuildDate>Sat, 26 Mar 2011 10:21:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Add dropbox cli as a daemon on ArchLinux</title>
		<link>http://phill84.org/2011/03/add-dropbox-cli-as-a-daemon-on-archlinux/</link>
		<comments>http://phill84.org/2011/03/add-dropbox-cli-as-a-daemon-on-archlinux/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 10:21:26 +0000</pubDate>
		<dc:creator>phill84</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ArchLinux]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[daemon]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[service]]></category>

		<guid isPermaLink="false">http://phill84.org/?p=6264</guid>
		<description><![CDATA[Dropbox can be used as a free cloud backup solution but in order to do so, dropbox has to be added as a service/daemon, simply save the following script as dropboxd in /etc/rc.d/ Now add dropboxd to the daemon list &#8230; <a href="http://phill84.org/2011/03/add-dropbox-cli-as-a-daemon-on-archlinux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Dropbox can be used as a free cloud backup solution but in order to do so, dropbox has to be added as a service/daemon, simply save the following script as dropboxd in /etc/rc.d/</p>
<pre class="brush: bash; title: ; notranslate">#!/bin/bash

. /etc/rc.conf
. /etc/rc.d/functions

USER=YOUR_USER_NAME
DROPBOXD=/home/$USER/.dropbox-dist/dropboxd
PID=$(pidof -o %PPID $DROPBOXD)
case &quot;$1&quot; in
  start)
    stat_busy &quot;Starting dropboxd&quot;
    [ -z &quot;$PID&quot; ] &amp;&amp; sudo -u $USER $DROPBOXD &amp;
    if [ $? -gt 0 ]; then
      stat_fail
    else
      add_daemon dropboxd
      stat_done
    fi
    ;;
  stop)
    stat_busy &quot;Stopping dropboxd&quot;
    [ ! -z &quot;$PID&quot; ]  &amp;&amp; kill $PID &amp;&gt; /dev/null
    if [ $? -gt 0 ]; then
      stat_fail
    else
      rm_daemon dropboxd
      stat_done
    fi
    ;;
  restart)
    $0 stop
    sleep 1
    $0 start
    ;;
  *)
    echo &quot;usage: $0 {start|stop|restart}&quot;
esac
exit 0</pre>
<p>Now add dropboxd to the daemon list in /etc/rc.conf and voila!</p>
]]></content:encoded>
			<wfw:commentRss>http://phill84.org/2011/03/add-dropbox-cli-as-a-daemon-on-archlinux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Moved to LEMP on ArchLinux</title>
		<link>http://phill84.org/2011/03/moved-to-lemp-on-archlinux/</link>
		<comments>http://phill84.org/2011/03/moved-to-lemp-on-archlinux/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 23:48:59 +0000</pubDate>
		<dc:creator>phill84</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[ArchLinux]]></category>
		<category><![CDATA[LEMP]]></category>

		<guid isPermaLink="false">http://phill84.org/?p=6263</guid>
		<description><![CDATA[Everything went well and I didn&#8217;t know that configuring permlinks for wordpress in nginx is so easy now. just use try_files $uri $uri/ /index.php?q=$uri&$args; and no need to add any rewrite rules!]]></description>
			<content:encoded><![CDATA[<p>Everything went well and I didn&#8217;t know that configuring permlinks for wordpress in nginx is so easy now. just use<br />
<code>try_files $uri $uri/ /index.php?q=$uri&$args;</code><br />
and no need to add any rewrite rules!</p>
]]></content:encoded>
			<wfw:commentRss>http://phill84.org/2011/03/moved-to-lemp-on-archlinux/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>iptables port forwarding for emule</title>
		<link>http://phill84.org/2010/01/iptables-port-forwarding-for-emule/</link>
		<comments>http://phill84.org/2010/01/iptables-port-forwarding-for-emule/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 21:20:56 +0000</pubDate>
		<dc:creator>phill84</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[emule]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[port forwarding]]></category>

		<guid isPermaLink="false">http://phill84.org/2010/01/iptables-port-forwarding-for-emule/</guid>
		<description><![CDATA[Suppose you wanna have HighID and open KAD network connection for eMule on a computer in a LAN, and the gateway is running iptables. Just add the rules below to your existing iptables rules and you are done.]]></description>
			<content:encoded><![CDATA[<p>Suppose you wanna have HighID and open KAD network connection for eMule on a computer in a LAN, and the gateway is running iptables. Just add the rules below to your existing iptables rules and you are done.</p>
<pre class="brush: bash; title: ; notranslate">
# this example is based on the assumption that
# eth0 is WAN interface and eth1 is LAN interface,
# 192.168.0.2 is the ip address of a computer in LAN,
# 4262 is the tcp port for ed2k network,
# 4272 is the udp port for kad network.

-A PREROUTING -i eth0 -p tcp -m tcp --dport 4262 -j DNAT --to-destination 192.168.0.2:4262
-A PREROUTING -i eth0 -p udp -m udp --dport 4272 -j DNAT --to-destination 192.168.0.2:4272

-A FORWARD -d 192.168.0.2/32 -i eth0 -o eth1 -p tcp --dport 4262 -j ACCEPT
-A FORWARD -d 192.168.0.2/32 -i eth0 -o eth1 -p udp --dport 4272 -j ACCEPT
</pre>
]]></content:encoded>
			<wfw:commentRss>http://phill84.org/2010/01/iptables-port-forwarding-for-emule/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>rtorrent with magnet link support</title>
		<link>http://phill84.org/2009/12/rtorrent-with-magnet-link-support/</link>
		<comments>http://phill84.org/2009/12/rtorrent-with-magnet-link-support/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 07:23:03 +0000</pubDate>
		<dc:creator>phill84</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[deb]]></category>
		<category><![CDATA[i386]]></category>
		<category><![CDATA[magnet]]></category>
		<category><![CDATA[rtorrent]]></category>

		<guid isPermaLink="false">http://phill84.org/2009/12/rtorrent-with-magnet-link-support/</guid>
		<description><![CDATA[Yesterday I wanted to download a file but could find only magnet link. Since rtorrent doesn&#8217;t support magnet link yet officially, I did some research on google and came cross this great tutorial on how to patch the source from svn &#8230; <a href="http://phill84.org/2009/12/rtorrent-with-magnet-link-support/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday I wanted to download a file but could find only magnet link. Since rtorrent doesn&#8217;t support magnet link yet officially, I did some research on google and came cross <a href="http://www.howtoforge.com/how-to-compile-rtorrent-from-svn-in-ubuntu-9.10-karmic-koala-debian-5-lenny-with-magnet-link-support">this great tutorial</a> on how to patch the source from svn and get magnet link support. So here they are, deb packages for libtorrent and rtorrent. These packages were built for my debian squeeze, so I&#8217;m not sure if they also work on ubuntu, but if you want you can try.</p>
<p>Note: There is a file embedded within this post, please visit this post to download the file. Note: There is a file embedded within this post, please visit this post to download the file.</p>
]]></content:encoded>
			<wfw:commentRss>http://phill84.org/2009/12/rtorrent-with-magnet-link-support/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Syncing twitter to digu using python / 用python同步twitter到嘀咕</title>
		<link>http://phill84.org/2009/10/syncing-twitter-to-digu-using-python-%e7%94%a8python%e5%90%8c%e6%ad%a5twitter%e5%88%b0%e5%98%80%e5%92%95/</link>
		<comments>http://phill84.org/2009/10/syncing-twitter-to-digu-using-python-%e7%94%a8python%e5%90%8c%e6%ad%a5twitter%e5%88%b0%e5%98%80%e5%92%95/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 19:04:19 +0000</pubDate>
		<dc:creator>phill84</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[digu]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[同步]]></category>
		<category><![CDATA[嘀咕]]></category>

		<guid isPermaLink="false">http://phill84.org/2009/10/syncing-twitter-to-digu-using-python-%e7%94%a8python%e5%90%8c%e6%ad%a5twitter%e5%88%b0%e5%98%80%e5%92%95/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<pre class="brush: python; title: ; notranslate">#!/usr/bin/env python
import base64
import simplejson as json
import os
import sys
import urllib
import urllib2

global twitter_username
global digu_username
global digu_password
twitter_username = 'username'
digu_username = 'username'
digu_password = 'password'

def post_to_digu(msg):
	url = 'http://api.minicloud.com.cn/statuses/update.json'
	data = urllib.urlencode(msg)
	req = urllib2.Request(url, data)
	req.add_header(&quot;Authorization&quot;, &quot;Basic %s&quot; % base64.encodestring('%s:%s' % (digu_username, digu_password))[:-1])
	handle = urllib2.urlopen(req)

def main():
	path = sys.path[0]
	if (sys.platform[:3] == 'win'):
		path += '\\'
	else:
		path += '/'
	id_file = path + 'last_id'
	last_id = 0
	if os.path.exists(id_file):
		f = open(id_file, 'r')
	        last_id = int(f.read())
        	f.close()
	else:
		f = open(id_file, 'w')
		f.write('0')
		f.close()
	url = 'http://twitter.com/statuses/user_timeline/' + twitter_username + '.json?last_id='
	updates = json.load(urllib.urlopen(url+str(last_id)))
	new_last_id = None
	n = 0
	for update in updates:
		text = update['text']
		id = update['id']
		if (text[0] != '@') and (id &amp;gt; last_id):
			if (new_last_id &amp;lt; id):
				new_last_id = id
			text = urllib.quote(text.encode('utf-8'))
			msg = {'content': text}
                        stack.append(msg)
        while (stack)
                post_to_digu(stack.pop())
	if (new_last_id != None):
		f = open(id_file, 'w')
		f.write(str(new_last_id))

if __name__ == &quot;__main__&quot;:
    main()</pre>
]]></content:encoded>
			<wfw:commentRss>http://phill84.org/2009/10/syncing-twitter-to-digu-using-python-%e7%94%a8python%e5%90%8c%e6%ad%a5twitter%e5%88%b0%e5%98%80%e5%92%95/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>eva 0.4.921 svn79</title>
		<link>http://phill84.org/2009/09/eva-0-4-921-svn79/</link>
		<comments>http://phill84.org/2009/09/eva-0-4-921-svn79/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 21:09:58 +0000</pubDate>
		<dc:creator>phill84</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[0.4.921]]></category>
		<category><![CDATA[79]]></category>
		<category><![CDATA[deb]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[eva]]></category>
		<category><![CDATA[evaq]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://phill84.org/2009/09/eva-0-4-921-svn79/</guid>
		<description><![CDATA[從 jaunty 的 repository 裡面安裝的 eva 登錄就崩潰了, 自己從 svn 拉回來編譯了一個, 只編譯了 x86 的因為現在沒有 x64 的機器, 目前發現隱身可見的用戶發來消息的時候會崩潰&#8230; 有興趣的同學可以裝上試試 順便 fuck 麻花騰, qq for linux 就這麼停了]]></description>
			<content:encoded><![CDATA[<p>從 jaunty 的 repository 裡面安裝的 eva 登錄就崩潰了, 自己從 svn 拉回來編譯了一個, 只編譯了 x86 的因為現在沒有 x64 的機器, 目前發現隱身可見的用戶發來消息的時候會崩潰&#8230; 有興趣的同學可以裝上試試</p>
<p>順便 fuck 麻花騰, qq for linux 就這麼停了</p>
Note: There is a file embedded within this post, please visit this post to download the file.
]]></content:encoded>
			<wfw:commentRss>http://phill84.org/2009/09/eva-0-4-921-svn79/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KDE 4.3.1</title>
		<link>http://phill84.org/2009/09/kde-4-3-1/</link>
		<comments>http://phill84.org/2009/09/kde-4-3-1/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 05:47:42 +0000</pubDate>
		<dc:creator>phill84</dc:creator>
				<category><![CDATA[blah]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[kde4]]></category>
		<category><![CDATA[kubuntu]]></category>

		<guid isPermaLink="false">http://phill84.org/2009/09/kde-4-3-1/</guid>
		<description><![CDATA[好吧 終於我也投奔到kde了]]></description>
			<content:encoded><![CDATA[<p>好吧 終於我也投奔到kde了</p>
<p><a href="http://phill84.org/wp-content/uploads/2009/09/snapshot1.png"><img class="alignnone size-medium wp-image-607 colorbox-609" title="snapshot1" src="http://phill84.org/wp-content/uploads/2009/09/snapshot1-450x270.png" alt="snapshot1 450x270 KDE 4.3.1" width="450" height="270" /></a></p>
<p><a href="http://phill84.org/wp-content/uploads/2009/09/snapshot2.png"><img class="alignnone size-medium wp-image-608 colorbox-609" title="snapshot2" src="http://phill84.org/wp-content/uploads/2009/09/snapshot2-450x270.png" alt="snapshot2 450x270 KDE 4.3.1" width="450" height="270" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://phill84.org/2009/09/kde-4-3-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sysinfo plugin for xchat2 on linux</title>
		<link>http://phill84.org/2009/08/sysinfo-plugin-for-xchat2-on-linux/</link>
		<comments>http://phill84.org/2009/08/sysinfo-plugin-for-xchat2-on-linux/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 19:23:59 +0000</pubDate>
		<dc:creator>phill84</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[sysinfo]]></category>
		<category><![CDATA[xchat]]></category>

		<guid isPermaLink="false">http://phill84.org/2009/08/sysinfo-plugin-for-xchat2-on-linux/</guid>
		<description><![CDATA[It&#8217;s my first time writing something in perl, the code is not very efficient and for now it can only display info of cpu, memory, bandwidth and uptime.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s my first time writing something in perl, the code is not very efficient and for now it can only display info of cpu, memory, bandwidth and uptime.</p>
<pre class="brush: perl; title: ; notranslate"># Configuration
$eth = &quot;eth0&quot;;

# Script
Xchat::register(&quot;Sysinfo&quot;, &quot;0.1&quot;, &quot;System Information Displayer&quot;);
Xchat::print(&quot;Sysinfo 0.1 Loaded.&quot;);
Xchat::hook_command(&quot;uptime&quot;, &quot;uptime&quot;);
Xchat::hook_command(&quot;os&quot;, &quot;os&quot;);
Xchat::hook_command(&quot;bw&quot;, &quot;bw&quot;);
Xchat::hook_command(&quot;cpu&quot;, &quot;cpu&quot;);
Xchat::hook_command(&quot;mem&quot;, &quot;mem&quot;);

sub uptime {
	$uptime = `cat /proc/uptime | awk '{printf \$1}'`;
	$_day = 60 * 60 * 24;
	$_hour = 60 * 60;
	$_minute = 60;
	$day = int($uptime/$_day);
	$uptime %= $_day;
	$hour = int($uptime/$_hour);
	$uptime %= $_hour;
	$minute = int($uptime/$_minute);
	$uptime %= $_minute;
	$second = int($uptime);
	$uptime = &quot;&quot;;
	if($day != 0) {
		$uptime .= $day;
		if($day == 1) {
			$uptime .= &quot; day &quot;;
		} else {
			$uptime .= &quot; days &quot;;
		}
	}
	if($hour != 0) {
		$uptime .= $hour;
		if($hour == 1) {
			$uptime .= &quot; hour &quot;;
		} else {
			$uptime .= &quot; hours &quot;;
		}
	}
	if($minute != 0) {
		$uptime .= $minute;
		if($minute == 1) {
			$uptime .= &quot; minute &quot;;
		} else {
			$uptime .= &quot; minutes &quot;;
		}
	}
	$uptime .= $second;
	if($second == 1) {
		$uptime .= &quot; second&quot;;
	} else {
		$uptime .= &quot; seconds&quot;;
	}
	Xchat::command(&quot;SAY &#92;&#48;02[UPTIME]&#92;&#48;02 $uptime&quot;);
	Xchat::EAT_ALL;
}

sub os {
	$_kernel_release = `uname -r`;
	$_operating_system = `uname -o`;
	chomp($_kernel_release);
	chomp($_operating_system);
	$os = $_operating_system . &quot; &quot; . $_kernel_release;
	Xchat::command(&quot;SAY &#92;&#48;02[OS]&#92;&#48;02 $os&quot;);
	Xchat::EAT_ALL;
}

sub bw {
	$old = `cat /proc/net/dev | grep $eth | cut -d &quot;:&quot; -f 2 | tr -s &quot; &quot;| cut -d &quot; &quot; -f 1,9`;
	sleep(1);
	$new = `cat /proc/net/dev | grep $eth | cut -d &quot;:&quot; -f 2 | tr -s &quot; &quot;| cut -d &quot; &quot; -f 1,9`;
	@ary_old = split(/\s/, $old);
	@ary_new = split(/\s/, $new);
	$down = $ary_new[0] - $ary_old[0];
	$up = $ary_new[1] - $ary_old[1];
	$bw = &quot;&quot;;
	if($down &lt; 1000) {
		$bw .= $down . &quot; B/s Down &quot;;
	} else {
		$bw .= sprintf(&quot;%.02f&quot;, $down / 1000) . &quot; KB/s Down &quot;;
	}
	if($up &lt; 1000) {
		$bw .= $up . &quot; B/s Up&quot;;
	} else {
		$bw .= sprintf(&quot;%.02f&quot;, $up / 1000) . &quot; KB/s Up&quot;;
	}
	Xchat::command(&quot;SAY &#92;&#48;02[BW]&#92;&#48;02 $bw&quot;);
	Xchat::EAT_ALL;
}

sub cpu {
	$model_name = `cat /proc/cpuinfo | grep &quot;model name&quot; | tail -1 | cut -d &quot;:&quot; -f 2 | tr -s &quot; &quot;`;
	$number_cores = `cat /proc/cpuinfo | grep &quot;model name&quot; -c`;
	$freq = `cat /proc/cpuinfo | grep &quot;cpu MHz&quot; | tail -1 | cut -d &quot;:&quot; -f 2 | tr -s &quot; &quot;`;
	$idle = `vmstat | tail -1 | awk '{printf \$15}'`;
	$load = 100 - $idle;
	chomp($model_name);
	chomp($number_cores);
	chomp($freq);
	$cpuinfo = $number_cores . &quot; CPU&quot;;
	if($number_cores &gt; 1) {
		$cpuinfo .= &quot;'s&quot;;
	}
	$cpuinfo .= &quot; -&quot; . $model_name;
	$cpuinfo .= &quot; @ &quot; . int($freq) . &quot; MHz&quot; . &quot; (&quot; . $load . &quot;% Load)&quot;;
	Xchat::command(&quot;SAY &#92;&#48;02[CPU]&#92;&#48;02 $cpuinfo&quot;);
	Xchat:EAT_ALL;
}

sub mem {
	$mem_total = `free -m | grep Mem | awk '{printf \$2}'`;
	$mem_used = `free -m | grep - | awk '{printf \$3}'`;
	$swap_total = `free -m| grep Swap | awk '{printf \$2}'`;
	$swap_used = `free -m| grep Swap | awk '{printf \$3}'`;
	$meminfo = &quot;&#92;&#48;02[MEM]&#92;&#48;02 &quot; . $mem_used . &quot;/&quot; . $mem_total . &quot; MB &#92;&#48;02[SWAP]&#92;&#48;02 &quot; . $swap_used . &quot;/&quot; . $swap_total . &quot; MB&quot;;
	Xchat::command(&quot;SAY $meminfo&quot;);
	Xchat::EAT_ALL;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://phill84.org/2009/08/sysinfo-plugin-for-xchat2-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get rid of unwanted output from bash command</title>
		<link>http://phill84.org/2009/08/get-rid-of-unwanted-output-from-bash-command/</link>
		<comments>http://phill84.org/2009/08/get-rid-of-unwanted-output-from-bash-command/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 08:32:45 +0000</pubDate>
		<dc:creator>phill84</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[null]]></category>
		<category><![CDATA[output]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://phill84.org/2009/08/get-rid-of-unwanted-output-from-bash-command/</guid>
		<description><![CDATA[I used to redirect the output to /dev/null, but sometimes it&#8217;s not good enough. It&#8217;s much better to just turn off stdout and stderr.]]></description>
			<content:encoded><![CDATA[<p>I used to redirect the output to /dev/null, but sometimes it&#8217;s not good enough. It&#8217;s much better to just turn off stdout and stderr.</p>
<pre class="brush: bash; title: ; notranslate">$ command 1&gt;&amp;- 2&gt;&amp;- &amp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://phill84.org/2009/08/get-rid-of-unwanted-output-from-bash-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>換成文泉驛微米黑了</title>
		<link>http://phill84.org/2009/05/%e6%8f%9b%e6%88%90%e6%96%87%e6%b3%89%e9%a9%9b%e5%be%ae%e7%b1%b3%e9%bb%91%e4%ba%86/</link>
		<comments>http://phill84.org/2009/05/%e6%8f%9b%e6%88%90%e6%96%87%e6%b3%89%e9%a9%9b%e5%be%ae%e7%b1%b3%e9%bb%91%e4%ba%86/#comments</comments>
		<pubDate>Mon, 11 May 2009 20:04:51 +0000</pubDate>
		<dc:creator>phill84</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[microhei]]></category>
		<category><![CDATA[wqy]]></category>
		<category><![CDATA[微米黑]]></category>
		<category><![CDATA[文泉驛]]></category>

		<guid isPermaLink="false">http://phill84.org/2009/05/%e6%8f%9b%e6%88%90%e6%96%87%e6%b3%89%e9%a9%9b%e5%be%ae%e7%b1%b3%e9%bb%91%e4%ba%86/</guid>
		<description><![CDATA[效果比正黑好得不是一點點 一點都沒有虛邊的感覺]]></description>
			<content:encoded><![CDATA[<p>效果比正黑好得不是一點點<br />
一點都沒有虛邊的感覺<br />
<a href="http://phill84.org/wp-content/uploads/2009/05/screenshot.png"><img class="alignnone size-medium wp-image-584 colorbox-585" title="screenshot" src="http://phill84.org/wp-content/uploads/2009/05/screenshot-450x281.png" alt="screenshot 450x281 換成文泉驛微米黑了" width="450" height="281" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://phill84.org/2009/05/%e6%8f%9b%e6%88%90%e6%96%87%e6%b3%89%e9%a9%9b%e5%be%ae%e7%b1%b3%e9%bb%91%e4%ba%86/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

