<?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>Nine Rivers &#187; Articles in English</title>
	<atom:link href="http://9rivers.linkka.com/category/articles-in-english/feed/" rel="self" type="application/rss+xml" />
	<link>http://9rivers.linkka.com</link>
	<description>Molecular modeling in Materials Sciences Web development Programming IT</description>
	<lastBuildDate>Fri, 02 Dec 2011 06:20:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Remember the path of last login</title>
		<link>http://9rivers.linkka.com/2011/12/02/remember-the-path-last-login/</link>
		<comments>http://9rivers.linkka.com/2011/12/02/remember-the-path-last-login/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 06:16:59 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Articles in English]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=670</guid>
		<description><![CDATA[create ~/.bash_logout with the following contents: 12t=`readlink -f \`pwd\`` ln -sfn $t ~/lastdir Each time when you log off, the current dir is remembered and a symlink is created in ~/ . It&#8217;s convenient for the next time:) NOTE: 1. &#8220;readlink -f&#8221; to ensure you ALWAYS get the really full path (or you will have [...]]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2011/12/02/remember-the-path-last-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu wubi.exe installation</title>
		<link>http://9rivers.linkka.com/2011/11/16/ubuntu-wubi-exe-installation/</link>
		<comments>http://9rivers.linkka.com/2011/11/16/ubuntu-wubi-exe-installation/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 18:26:17 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Articles in English]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=646</guid>
		<description><![CDATA[The Ubuntu CD contents look like these: There is an executable named &#8220;wubi.exe&#8221;, which allows you installing Ubuntu alongside with an existing Windows system (dual-boot). However, many people experienced &#8220;no response&#8221;  problem after double clicking the wubi.exe. Some say this is because some of your drives contains non-English labels. However, this is not always the [...]]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2011/11/16/ubuntu-wubi-exe-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Python modules as non-root user on HPC cluster</title>
		<link>http://9rivers.linkka.com/2011/11/10/install-python-modules-as-non-root-user-on-hpc-cluster/</link>
		<comments>http://9rivers.linkka.com/2011/11/10/install-python-modules-as-non-root-user-on-hpc-cluster/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 01:41:33 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Modeling & Simulation]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[mdanalysis]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=632</guid>
		<description><![CDATA[The key steps 1. Create a folder named &#8220;~/python-packages&#8221;, then create a path &#8220;~/python-packages/lib/python2.6/site-packages/&#8221; with 1mkdir -p python-packages/lib/python2.6/site-packages/ The above path containing the version number of Python should be adjust accordingly base on the actual Python version you are using. This step sets up a directory structure that is needed by python modules. 2. Next, [...]]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2011/11/10/install-python-modules-as-non-root-user-on-hpc-cluster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple windows with gnuplot</title>
		<link>http://9rivers.linkka.com/2011/11/08/multiple-windows-with-gnuplot/</link>
		<comments>http://9rivers.linkka.com/2011/11/08/multiple-windows-with-gnuplot/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 11:19:57 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Articles in English]]></category>
		<category><![CDATA[Modeling & Simulation]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[gnuplot]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=617</guid>
		<description><![CDATA[To create more than one window in a gnuplot script could be necessary if you have many data series to plot. The following code snippet shows how: 12345678set term wxt 0 set grid xtics ytics plot 'prop_stat.txt' u 1:2 ti &#34;rg&#34; w l, \ 'prop_stat.txt' u 1:3 ti &#34;rg^2&#34; w l, \ 'prop_stat.txt' u 1:4 [...]]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2011/11/08/multiple-windows-with-gnuplot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excluding syntax for folder synchronization in Unreal Commander</title>
		<link>http://9rivers.linkka.com/2011/10/11/excluding-syntax-for-folder-synchronization-in-unreal-commander/</link>
		<comments>http://9rivers.linkka.com/2011/10/11/excluding-syntax-for-folder-synchronization-in-unreal-commander/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 16:52:05 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[软件应用]]></category>
		<category><![CDATA[unreal commander]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=606</guid>
		<description><![CDATA[Unreal Commander is one of the best file manager software which is free of charge. When you want to synchronize two directories with considering only the specified file types, you will need to define filter string. &#8220;*.*&#8221; means to compare all files; &#8220;*.txt&#8221; means to compare also the text file. However, how can you compare [...]]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2011/10/11/excluding-syntax-for-folder-synchronization-in-unreal-commander/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selection of GUI toolkits</title>
		<link>http://9rivers.linkka.com/2011/09/28/selection-of-gui-toolkits/</link>
		<comments>http://9rivers.linkka.com/2011/09/28/selection-of-gui-toolkits/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 10:16:14 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Articles in English]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=603</guid>
		<description><![CDATA[To select a toolkit for GUI programming is something like to select a bottle of wine. Only you know your favorites.  Here are mine. 1. For a program need various feature, like networking, fancy looking, I choose QT. It is cross-platform and can do almost anything for you, except for going to the cinema with [...]]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2011/09/28/selection-of-gui-toolkits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What do you see after Osama Bin Laden&#8217;s death</title>
		<link>http://9rivers.linkka.com/2011/05/02/what-do-you-see-after-osama-bin-ladens-death/</link>
		<comments>http://9rivers.linkka.com/2011/05/02/what-do-you-see-after-osama-bin-ladens-death/#comments</comments>
		<pubDate>Mon, 02 May 2011 10:33:28 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Articles in English]]></category>
		<category><![CDATA[Random thoughts]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=599</guid>
		<description><![CDATA[He, the most wanted one, was killed by US army yesterday. It&#8217;s said &#8216;Justice was finally done&#8217;. I saw American people celebrated on squares and in stadiums, releasing their joy of killing an enemy or the fulfilled justice. However, this made me think of a cycle of revenge. Now Americans killed their man. Now it [...]]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2011/05/02/what-do-you-see-after-osama-bin-ladens-death/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wii video format</title>
		<link>http://9rivers.linkka.com/2011/02/19/wii-video-format/</link>
		<comments>http://9rivers.linkka.com/2011/02/19/wii-video-format/#comments</comments>
		<pubDate>Sat, 19 Feb 2011 13:45:51 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[wii]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=594</guid>
		<description><![CDATA[There are different information flying around on the internet about the supported video format. Even on the official Nintendo  website, the information is not fully clear. The reason I guess is related to the updating of the system. I&#8217;ll let you know the truth, after my own experiments. My system is wii 4.3E, the latest [...]]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2011/02/19/wii-video-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python initial script for Qtiplot</title>
		<link>http://9rivers.linkka.com/2010/11/23/python-initial-script-for-qtiplot/</link>
		<comments>http://9rivers.linkka.com/2010/11/23/python-initial-script-for-qtiplot/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 14:25:58 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[软件应用]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Qtiplot]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=585</guid>
		<description><![CDATA[OK, even after reading the handbook a few times, it is not very clear which python file is the initial script for Qtiplot. It is important to know if you want to extend Qtiplot with python. After checking all the default python files in the Qtiplot installation path, I found qtiplotrc.py should be the one, [...]]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2010/11/23/python-initial-script-for-qtiplot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>History expansion in depth</title>
		<link>http://9rivers.linkka.com/2010/10/21/history-expansion-in-depth/</link>
		<comments>http://9rivers.linkka.com/2010/10/21/history-expansion-in-depth/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 13:53:40 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=576</guid>
		<description><![CDATA[History Expansion History expansions introduce words from the history list into the input stream, making it easy to repeat commands, insert the arguments to a previous command into the current input line, or fix errors in previous commands quickly. History expansion takes place in two parts. The first is to determine which line from the [...]]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2010/10/21/history-expansion-in-depth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

