<?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 Yak Shaving</title>
	<atom:link href="http://www.asteriosk.gr/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.asteriosk.gr/blog</link>
	<description>A technical blog &#38; notepad by</description>
	<lastBuildDate>Fri, 12 Mar 2010 08:02:43 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on PTY allocation request failed on channel 0 by Dongsheng</title>
		<link>http://www.asteriosk.gr/blog/2009/02/20/pty-allocation-request-failed-on-channel-0/comment-page-1/#comment-248</link>
		<dc:creator>Dongsheng</dc:creator>
		<pubDate>Fri, 12 Mar 2010 08:02:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=196#comment-248</guid>
		<description>Thanks a lot!

fixed my problem :-)</description>
		<content:encoded><![CDATA[<p>Thanks a lot!</p>
<p>fixed my problem :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing MacTex and TeXlipse on Mac OS X by Jesus</title>
		<link>http://www.asteriosk.gr/blog/2009/02/25/installing-mactex-and-texlipse-on-mac-os-x/comment-page-1/#comment-247</link>
		<dc:creator>Jesus</dc:creator>
		<pubDate>Wed, 10 Mar 2010 10:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=231#comment-247</guid>
		<description>Hey guy! I was looking in Google how to install TeXclipse in Mac (not exactly what you have explained in the post, but more about MacTex) and I appeared in your webpage, quite funny... xD Update it more often man, don&#039;t give up!!!</description>
		<content:encoded><![CDATA[<p>Hey guy! I was looking in Google how to install TeXclipse in Mac (not exactly what you have explained in the post, but more about MacTex) and I appeared in your webpage, quite funny&#8230; xD Update it more often man, don&#8217;t give up!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding -pthread to eclipse, for using posix threads by alex</title>
		<link>http://www.asteriosk.gr/blog/2009/02/15/adding-pthread-to-eclipse-for-using-posix-threads/comment-page-1/#comment-246</link>
		<dc:creator>alex</dc:creator>
		<pubDate>Fri, 05 Mar 2010 19:26:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=70#comment-246</guid>
		<description>thanks a lot..</description>
		<content:encoded><![CDATA[<p>thanks a lot..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Merging multiple Lucene indexes by Asterios Katsifodimos</title>
		<link>http://www.asteriosk.gr/blog/2009/03/31/merging-multiple-lucene-indexes/comment-page-1/#comment-245</link>
		<dc:creator>Asterios Katsifodimos</dc:creator>
		<pubDate>Tue, 23 Feb 2010 13:04:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=312#comment-245</guid>
		<description>Cool, thanks a lot Javier! I will try to run it myself and post the updated code!</description>
		<content:encoded><![CDATA[<p>Cool, thanks a lot Javier! I will try to run it myself and post the updated code!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Merging multiple Lucene indexes by Javier Teso</title>
		<link>http://www.asteriosk.gr/blog/2009/03/31/merging-multiple-lucene-indexes/comment-page-1/#comment-244</link>
		<dc:creator>Javier Teso</dc:creator>
		<pubDate>Tue, 23 Feb 2010 03:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=312#comment-244</guid>
		<description>Sorry the number of lines were missing... 

LINE 55
IndexWriter writer = new IndexWriter( INDEX_DIR,
new StandardAnalyzer(),
true,
IndexWriter.MaxFieldLength.UNLIMITED);

LINE 65
indexes[i] = FSDirectory.open(new File(INDEXES_DIR.getAbsolutePath()+ “/” + INDEXES_DIR.list()[i]));

LINE 70
writer.addIndexesNoOptimize(indexes);</description>
		<content:encoded><![CDATA[<p>Sorry the number of lines were missing&#8230; </p>
<p>LINE 55<br />
IndexWriter writer = new IndexWriter( INDEX_DIR,<br />
new StandardAnalyzer(),<br />
true,<br />
IndexWriter.MaxFieldLength.UNLIMITED);</p>
<p>LINE 65<br />
indexes[i] = FSDirectory.open(new File(INDEXES_DIR.getAbsolutePath()+ “/” + INDEXES_DIR.list()[i]));</p>
<p>LINE 70<br />
writer.addIndexesNoOptimize(indexes);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Merging multiple Lucene indexes by Javier Teso</title>
		<link>http://www.asteriosk.gr/blog/2009/03/31/merging-multiple-lucene-indexes/comment-page-1/#comment-243</link>
		<dc:creator>Javier Teso</dc:creator>
		<pubDate>Tue, 23 Feb 2010 03:39:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=312#comment-243</guid>
		<description>Yes, a few things have changed in lucene 3.0. You will have to replace the following lines:


IndexWriter writer = new IndexWriter(  INDEX_DIR,
                                                                     new StandardAnalyzer(),
                                                                      true,
                                                                      IndexWriter.MaxFieldLength.UNLIMITED);


indexes[i] = FSDirectory.open(new File(INDEXES_DIR.getAbsolutePath()+ &quot;/&quot; + INDEXES_DIR.list()[i]));


writer.addIndexesNoOptimize(indexes); 

I think that is all, it works perfect, thanks for sharing your code!!</description>
		<content:encoded><![CDATA[<p>Yes, a few things have changed in lucene 3.0. You will have to replace the following lines:</p>
<p>IndexWriter writer = new IndexWriter(  INDEX_DIR,<br />
                                                                     new StandardAnalyzer(),<br />
                                                                      true,<br />
                                                                      IndexWriter.MaxFieldLength.UNLIMITED);</p>
<p>indexes[i] = FSDirectory.open(new File(INDEXES_DIR.getAbsolutePath()+ &#8220;/&#8221; + INDEXES_DIR.list()[i]));</p>
<p>writer.addIndexesNoOptimize(indexes); </p>
<p>I think that is all, it works perfect, thanks for sharing your code!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding -pthread to eclipse, for using posix threads by aaron</title>
		<link>http://www.asteriosk.gr/blog/2009/02/15/adding-pthread-to-eclipse-for-using-posix-threads/comment-page-1/#comment-242</link>
		<dc:creator>aaron</dc:creator>
		<pubDate>Tue, 23 Feb 2010 00:26:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=70#comment-242</guid>
		<description>Thank you.</description>
		<content:encoded><![CDATA[<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PTY allocation request failed on channel 0 by Nepto</title>
		<link>http://www.asteriosk.gr/blog/2009/02/20/pty-allocation-request-failed-on-channel-0/comment-page-1/#comment-241</link>
		<dc:creator>Nepto</dc:creator>
		<pubDate>Fri, 19 Feb 2010 22:25:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=196#comment-241</guid>
		<description>Thank you. You just saved my ass ;-)</description>
		<content:encoded><![CDATA[<p>Thank you. You just saved my ass ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PTY allocation request failed on channel 0 by dude</title>
		<link>http://www.asteriosk.gr/blog/2009/02/20/pty-allocation-request-failed-on-channel-0/comment-page-1/#comment-240</link>
		<dc:creator>dude</dc:creator>
		<pubDate>Thu, 18 Feb 2010 21:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=196#comment-240</guid>
		<description>thanks a bunch, my vps provider doesn&#039;t support archlinux so I&#039;m glad to have found this fix! cheers</description>
		<content:encoded><![CDATA[<p>thanks a bunch, my vps provider doesn&#8217;t support archlinux so I&#8217;m glad to have found this fix! cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PTY allocation request failed on channel 0 by Craig Nakamoto</title>
		<link>http://www.asteriosk.gr/blog/2009/02/20/pty-allocation-request-failed-on-channel-0/comment-page-1/#comment-239</link>
		<dc:creator>Craig Nakamoto</dc:creator>
		<pubDate>Sun, 07 Feb 2010 02:03:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=196#comment-239</guid>
		<description>Thanks, this worked for me too on an older server running CentOS 4.2.</description>
		<content:encoded><![CDATA[<p>Thanks, this worked for me too on an older server running CentOS 4.2.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
