<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Nine Rivers</title>
	<atom:link href="http://9rivers.linkka.com/comments/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>Mon, 20 Jun 2011 09:37:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on PiCloud 基于Python的云计算平台 by python.cn(news, jobs)</title>
		<link>http://9rivers.linkka.com/2010/03/06/picloud-bring-python-on-cloud/comment-page-1/#comment-513</link>
		<dc:creator>python.cn(news, jobs)</dc:creator>
		<pubDate>Mon, 20 Jun 2011 09:37:31 +0000</pubDate>
		<guid isPermaLink="false">http://9rivers.linkka.com/?p=361#comment-513</guid>
		<description>已推荐到：http://simple-is-better.com/news/392</description>
		<content:encoded><![CDATA[<p>已推荐到：http://simple-is-better.com/news/392</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Subversion+websvn on Debian by Rob</title>
		<link>http://9rivers.linkka.com/2010/04/08/setup-subversion-on-debian/comment-page-1/#comment-510</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Thu, 10 Mar 2011 15:43:07 +0000</pubDate>
		<guid isPermaLink="false">http://9rivers.linkka.com/?p=435#comment-510</guid>
		<description>Good tutorials on subversion and websvn installs on centOS

subversion: http://www.duchnik.com/tutorials/vc/installing-and-configuring-svn-on-centos

websvn: http://www.duchnik.com/tutorials/vc/setting-up-and-configuring-websvn</description>
		<content:encoded><![CDATA[<p>Good tutorials on subversion and websvn installs on centOS</p>
<p>subversion: <a href="http://www.duchnik.com/tutorials/vc/installing-and-configuring-svn-on-centos" rel="nofollow">http://www.duchnik.com/tutorials/vc/installing-and-configuring-svn-on-centos</a></p>
<p>websvn: <a href="http://www.duchnik.com/tutorials/vc/setting-up-and-configuring-websvn" rel="nofollow">http://www.duchnik.com/tutorials/vc/setting-up-and-configuring-websvn</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get random numbers under BASH and DOS by 9rivers</title>
		<link>http://9rivers.linkka.com/2010/03/01/get-random-numbers-under-bash-and-dos/comment-page-1/#comment-508</link>
		<dc:creator>9rivers</dc:creator>
		<pubDate>Fri, 18 Feb 2011 11:45:25 +0000</pubDate>
		<guid isPermaLink="false">http://9rivers.linkka.com/?p=357#comment-508</guid>
		<description>Aha! random, you are in trouble with the so-called &quot;delayed variable expansion&quot; in DOS batch. This has been discussed here: http://blogs.msdn.com/b/oldnewthing/archive/2006/08/23/714650.aspx . 

In your case, in order to get 100 DIFFERENT random numbers, you have to enable the delayed variable expansion for your DOS console. Do this &quot;cmd /v&quot; to start it, or add this &quot;setlocal enabledelayexpansion&quot; in your batch file. Then, another important thing is to change the &quot;%&quot; symbol to &quot;!&quot; for the variables you want them to be expanded on the fly. E.g. try
&quot;FOR /L %%a IN (0,1,100) DO @echo !RANDOM!&quot; in your file, you&#039;ll get 100 DIFFERENT random numbers!</description>
		<content:encoded><![CDATA[<p>Aha! random, you are in trouble with the so-called &#8220;delayed variable expansion&#8221; in DOS batch. This has been discussed here: <a href="http://blogs.msdn.com/b/oldnewthing/archive/2006/08/23/714650.aspx" rel="nofollow">http://blogs.msdn.com/b/oldnewthing/archive/2006/08/23/714650.aspx</a> . </p>
<p>In your case, in order to get 100 DIFFERENT random numbers, you have to enable the delayed variable expansion for your DOS console. Do this &#8220;cmd /v&#8221; to start it, or add this &#8220;setlocal enabledelayexpansion&#8221; in your batch file. Then, another important thing is to change the &#8220;%&#8221; symbol to &#8220;!&#8221; for the variables you want them to be expanded on the fly. E.g. try<br />
&#8220;FOR /L %%a IN (0,1,100) DO @echo !RANDOM!&#8221; in your file, you&#8217;ll get 100 DIFFERENT random numbers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hide the command console window while running a GUI/Command line program on Windows by 9rivers</title>
		<link>http://9rivers.linkka.com/2010/07/29/hide-the-command-console-window-while-running-a-guicommand-line-program-on-windows/comment-page-1/#comment-507</link>
		<dc:creator>9rivers</dc:creator>
		<pubDate>Fri, 18 Feb 2011 10:18:22 +0000</pubDate>
		<guid isPermaLink="false">http://9rivers.linkka.com/?p=504#comment-507</guid>
		<description>Thank you for sharing, Victor!Your solution is indeed easier!
I think the &quot;.pyw&quot; file extension plays the magic. It is intentionally used by python for the console-less applications. For more discussion on this, please see here http://www.velocityreviews.com/forums/t344026-how-to-run-python-in-windows-w-o-popping-a-dos-box.html .</description>
		<content:encoded><![CDATA[<p>Thank you for sharing, Victor!Your solution is indeed easier!<br />
I think the &#8220;.pyw&#8221; file extension plays the magic. It is intentionally used by python for the console-less applications. For more discussion on this, please see here <a href="http://www.velocityreviews.com/forums/t344026-how-to-run-python-in-windows-w-o-popping-a-dos-box.html" rel="nofollow">http://www.velocityreviews.com/forums/t344026-how-to-run-python-in-windows-w-o-popping-a-dos-box.html</a> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hide the command console window while running a GUI/Command line program on Windows by Victor</title>
		<link>http://9rivers.linkka.com/2010/07/29/hide-the-command-console-window-while-running-a-guicommand-line-program-on-windows/comment-page-1/#comment-506</link>
		<dc:creator>Victor</dc:creator>
		<pubDate>Fri, 18 Feb 2011 09:59:38 +0000</pubDate>
		<guid isPermaLink="false">http://9rivers.linkka.com/?p=504#comment-506</guid>
		<description>I&#039;ve also struggled with the console window. Looking at IDLE start script i found the way to start Eric without an open console window:
@echo off
rem Start Eric5 with command line parameters
set CURRDIR=%~dp0
start &quot;%CURRDIR%\pythonw.exe&quot; &quot;%CURRDIR%\Lib\site-packages\eric5\eric5.pyw&quot; %1 %2 %3 %4 %5 %6 %7 %8 %9</description>
		<content:encoded><![CDATA[<p>I&#8217;ve also struggled with the console window. Looking at IDLE start script i found the way to start Eric without an open console window:<br />
@echo off<br />
rem Start Eric5 with command line parameters<br />
set CURRDIR=%~dp0<br />
start &#8220;%CURRDIR%\pythonw.exe&#8221; &#8220;%CURRDIR%\Lib\site-packages\eric5\eric5.pyw&#8221; %1 %2 %3 %4 %5 %6 %7 %8 %9</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get random numbers under BASH and DOS by random</title>
		<link>http://9rivers.linkka.com/2010/03/01/get-random-numbers-under-bash-and-dos/comment-page-1/#comment-505</link>
		<dc:creator>random</dc:creator>
		<pubDate>Thu, 10 Feb 2011 19:58:35 +0000</pubDate>
		<guid isPermaLink="false">http://9rivers.linkka.com/?p=357#comment-505</guid>
		<description>What about use %RANDOM% inside FOR in ms-DOS
ex:
FOR /L %%a IN (0,1,100) DO @echo %RANDOM%
I would generate 100 DIFFERENT random numbers but the line above generates 100 times the same number!!! What&#039;s up?</description>
		<content:encoded><![CDATA[<p>What about use %RANDOM% inside FOR in ms-DOS<br />
ex:<br />
FOR /L %%a IN (0,1,100) DO @echo %RANDOM%<br />
I would generate 100 DIFFERENT random numbers but the line above generates 100 times the same number!!! What&#8217;s up?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Python and pizza.py by 9rivers</title>
		<link>http://9rivers.linkka.com/2009/10/27/python-and-pizza-py/comment-page-1/#comment-494</link>
		<dc:creator>9rivers</dc:creator>
		<pubDate>Thu, 21 Oct 2010 14:08:14 +0000</pubDate>
		<guid isPermaLink="false">http://9rivers.linkka.com/?p=273#comment-494</guid>
		<description>Hi, Guanfeng Liu,

What I mentioned in this post should work on Windows. In fact I just did the job on Windows XP. And there is really no much difference to use Pizza on Windows or Linux. I suggest you start from the examples in the Pizza package. Should you have more specific problem, you are welcome to discuss here.</description>
		<content:encoded><![CDATA[<p>Hi, Guanfeng Liu,</p>
<p>What I mentioned in this post should work on Windows. In fact I just did the job on Windows XP. And there is really no much difference to use Pizza on Windows or Linux. I suggest you start from the examples in the Pizza package. Should you have more specific problem, you are welcome to discuss here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Python and pizza.py by Guanfeng Liu</title>
		<link>http://9rivers.linkka.com/2009/10/27/python-and-pizza-py/comment-page-1/#comment-493</link>
		<dc:creator>Guanfeng Liu</dc:creator>
		<pubDate>Thu, 14 Oct 2010 00:48:41 +0000</pubDate>
		<guid isPermaLink="false">http://9rivers.linkka.com/?p=273#comment-493</guid>
		<description>Hello Ting
     I am a graduate student, I am interested in the post-processing tool package ,I wish to learn more thing about it,I has a question, the post-processing tool packing just use under the linux platform ?if it does not,I want to know how to use under the window XP platform . Thank you !</description>
		<content:encoded><![CDATA[<p>Hello Ting<br />
     I am a graduate student, I am interested in the post-processing tool package ,I wish to learn more thing about it,I has a question, the post-processing tool packing just use under the linux platform ?if it does not,I want to know how to use under the window XP platform . Thank you !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Where to download xulrunner-1.8.1.3 (or older version)? by 9rivers</title>
		<link>http://9rivers.linkka.com/2010/04/06/where-to-download-xulrunner-1-8-1-3-or-older-version/comment-page-1/#comment-469</link>
		<dc:creator>9rivers</dc:creator>
		<pubDate>Mon, 30 Aug 2010 16:32:20 +0000</pubDate>
		<guid isPermaLink="false">http://9rivers.linkka.com/?p=410#comment-469</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Where to download xulrunner-1.8.1.3 (or older version)? by BG</title>
		<link>http://9rivers.linkka.com/2010/04/06/where-to-download-xulrunner-1-8-1-3-or-older-version/comment-page-1/#comment-468</link>
		<dc:creator>BG</dc:creator>
		<pubDate>Mon, 30 Aug 2010 15:49:02 +0000</pubDate>
		<guid isPermaLink="false">http://9rivers.linkka.com/?p=410#comment-468</guid>
		<description>Direct link:

http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.8.1.3/contrib/linux-i686/xulrunner-1.8.1.3.en-US.linux-i686-20080128.tar.gz</description>
		<content:encoded><![CDATA[<p>Direct link:</p>
<p><a href="http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.8.1.3/contrib/linux-i686/xulrunner-1.8.1.3.en-US.linux-i686-20080128.tar.gz" rel="nofollow">http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.8.1.3/contrib/linux-i686/xulrunner-1.8.1.3.en-US.linux-i686-20080128.tar.gz</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

