<?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 on: Switching to Linux: A Windows developer&#8217;s view</title>
	<atom:link href="http://anteru.net/2009/09/14/604/feed/" rel="self" type="application/rss+xml" />
	<link>http://anteru.net/2009/09/14/604/</link>
	<description>Graphics, programming &#38; software engineering</description>
	<lastBuildDate>Mon, 08 Mar 2010 20:41:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Anteru</title>
		<link>http://anteru.net/2009/09/14/604/comment-page-5/#comment-14656</link>
		<dc:creator>Anteru</dc:creator>
		<pubDate>Thu, 31 Dec 2009 08:55:19 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/2009/09/14/604/#comment-14656</guid>
		<description>Yeah, another very nice memory allocator is &lt;a href=&quot;http://www.nedprod.com/programs/portable/nedmalloc/&quot; rel=&quot;nofollow&quot;&gt;nedmalloc&lt;/a&gt;, the latest versions are able to override the standard allocator. There&#039;s also a &lt;a href=&quot;http://code.google.com/p/microallocator/&quot; rel=&quot;nofollow&quot;&gt;micro-allocator&lt;/a&gt; especially tuned for lots of tiny allocations (which are typical for the STL), but I didn&#039;t use it yet.

Never tried STLport, I often hear that it&#039;s supposed to be faster than the Dinkumware STL, but I&#039;d really like to hear of some &quot;success stories&quot; :)</description>
		<content:encoded><![CDATA[<p>Yeah, another very nice memory allocator is <a href="http://www.nedprod.com/programs/portable/nedmalloc/" rel="nofollow">nedmalloc</a>, the latest versions are able to override the standard allocator. There&#8217;s also a <a href="http://code.google.com/p/microallocator/" rel="nofollow">micro-allocator</a> especially tuned for lots of tiny allocations (which are typical for the STL), but I didn&#8217;t use it yet.</p>
<p>Never tried STLport, I often hear that it&#8217;s supposed to be faster than the Dinkumware STL, but I&#8217;d really like to hear of some &#8220;success stories&#8221; <img src='http://anteru.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amanjit Gill</title>
		<link>http://anteru.net/2009/09/14/604/comment-page-5/#comment-14623</link>
		<dc:creator>Amanjit Gill</dc:creator>
		<pubDate>Wed, 30 Dec 2009 22:21:51 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/2009/09/14/604/#comment-14623</guid>
		<description>Hi, I had similar problems with C++ standary library and memory allocations. I simply used a custom allocator and doug leas dlmalloc (but which I think is not threadsafe?), this speeded things up considerably on win32, http://epsilon-delta.net/articles/vc7_stl.html#use-a-custom-allocator.

Initially I wrote a simple hashmap with c++ standard library, and my P3500 running debian (g++4.3, libstdc++) would outperform my quad core 4gb win xp machine (vc7.1 + standard library) :-/ whooops. 

stlport on win32 is also generally faster.</description>
		<content:encoded><![CDATA[<p>Hi, I had similar problems with C++ standary library and memory allocations. I simply used a custom allocator and doug leas dlmalloc (but which I think is not threadsafe?), this speeded things up considerably on win32, <a href="http://epsilon-delta.net/articles/vc7_stl.html#use-a-custom-allocator" rel="nofollow">http://epsilon-delta.net/articles/vc7_stl.html#use-a-custom-allocator</a>.</p>
<p>Initially I wrote a simple hashmap with c++ standard library, and my P3500 running debian (g++4.3, libstdc++) would outperform my quad core 4gb win xp machine (vc7.1 + standard library) :-/ whooops. </p>
<p>stlport on win32 is also generally faster.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: linux</title>
		<link>http://anteru.net/2009/09/14/604/comment-page-5/#comment-13077</link>
		<dc:creator>linux</dc:creator>
		<pubDate>Fri, 20 Nov 2009 00:52:15 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/2009/09/14/604/#comment-13077</guid>
		<description>&lt;strong&gt;linux...&lt;/strong&gt;

@ mfioretti- Special thanks for having the perseverance to post a comment when your connection was acting up. I also agree with your comment, to some extent, and I think it is probably still a bit more true than most of the other points I made, there a...</description>
		<content:encoded><![CDATA[<p><strong>linux&#8230;</strong></p>
<p>@ mfioretti- Special thanks for having the perseverance to post a comment when your connection was acting up. I also agree with your comment, to some extent, and I think it is probably still a bit more true than most of the other points I made, there a&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anteru</title>
		<link>http://anteru.net/2009/09/14/604/comment-page-4/#comment-12030</link>
		<dc:creator>Anteru</dc:creator>
		<pubDate>Thu, 15 Oct 2009 07:29:46 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/2009/09/14/604/#comment-12030</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-12027&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-12027&quot; rel=&quot;nofollow&quot;&gt;Stromblad&lt;/a&gt; :&lt;/strong&gt;
&lt;p&gt;why are you using an ubuntu based distro to compare speed? you should be using a less bloated distro such as arch gentoo or slack&lt;/p&gt;
&lt;/blockquote&gt;
Simply because I wanted to get running _quickly_ -- installing Wubi took ~20 minutes, and Ubuntu is also well supported by most apps (for instance, there are installers for CUDA etc.)</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-12027"><p>
<strong><a href="#comment-12027" rel="nofollow">Stromblad</a> :</strong></p>
<p>why are you using an ubuntu based distro to compare speed? you should be using a less bloated distro such as arch gentoo or slack</p>
</blockquote>
<p>Simply because I wanted to get running _quickly_ &#8212; installing Wubi took ~20 minutes, and Ubuntu is also well supported by most apps (for instance, there are installers for CUDA etc.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stromblad</title>
		<link>http://anteru.net/2009/09/14/604/comment-page-4/#comment-12027</link>
		<dc:creator>Stromblad</dc:creator>
		<pubDate>Thu, 15 Oct 2009 06:23:38 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/2009/09/14/604/#comment-12027</guid>
		<description>why are you using an ubuntu based distro to compare speed? you should be using a less bloated distro such as arch gentoo or slack</description>
		<content:encoded><![CDATA[<p>why are you using an ubuntu based distro to compare speed? you should be using a less bloated distro such as arch gentoo or slack</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George</title>
		<link>http://anteru.net/2009/09/14/604/comment-page-4/#comment-11752</link>
		<dc:creator>George</dc:creator>
		<pubDate>Sun, 04 Oct 2009 01:30:03 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/2009/09/14/604/#comment-11752</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-10914&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-10914&quot; rel=&quot;nofollow&quot;&gt;Eric Lawless&lt;/a&gt; :&lt;/strong&gt;
...
It sounds like you’re not interested at all in doing cross-platform development. It almost sounds like you’re actually a Linux developer who did a brief stint in Windows-land so that you could write this article extolling the virtues of Linux, in places they may or may not exist.
...
I disagree wholeheartedly with your assessment. Either the whole thing was dishonest, or you didn’t take the appropriate time to know what your options were, and you’re completely whitewashing the current state of Linux C++ development.
&lt;/blockquote&gt;

Troll much?</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-10914"><p>
<strong><a href="#comment-10914" rel="nofollow">Eric Lawless</a> :</strong><br />
&#8230;<br />
It sounds like you’re not interested at all in doing cross-platform development. It almost sounds like you’re actually a Linux developer who did a brief stint in Windows-land so that you could write this article extolling the virtues of Linux, in places they may or may not exist.<br />
&#8230;<br />
I disagree wholeheartedly with your assessment. Either the whole thing was dishonest, or you didn’t take the appropriate time to know what your options were, and you’re completely whitewashing the current state of Linux C++ development.
</p></blockquote>
<p>Troll much?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George</title>
		<link>http://anteru.net/2009/09/14/604/comment-page-4/#comment-11751</link>
		<dc:creator>George</dc:creator>
		<pubDate>Sun, 04 Oct 2009 01:26:28 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/2009/09/14/604/#comment-11751</guid>
		<description>&lt;a href=&quot;#comment-11007&quot; rel=&quot;nofollow&quot;&gt;@Bill&lt;/a&gt; 
Yeah, but the reason he could not compile on Windows easily was due to the third-party library which he would not only have to recompile but all of its dependencies too.  Since the source code is available for a lot of libraries on Linux and not so much on Windows, I think that is the reason he chose Linux.  Not due to the lack of good IDEs on Windows.</description>
		<content:encoded><![CDATA[<p><a href="#comment-11007" rel="nofollow">@Bill</a><br />
Yeah, but the reason he could not compile on Windows easily was due to the third-party library which he would not only have to recompile but all of its dependencies too.  Since the source code is available for a lot of libraries on Linux and not so much on Windows, I think that is the reason he chose Linux.  Not due to the lack of good IDEs on Windows.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Open News &#124; Pāreja uz Linux: Windows vides programmētāja viedoklis</title>
		<link>http://anteru.net/2009/09/14/604/comment-page-4/#comment-11580</link>
		<dc:creator>Open News &#124; Pāreja uz Linux: Windows vides programmētāja viedoklis</dc:creator>
		<pubDate>Mon, 28 Sep 2009 06:40:55 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/2009/09/14/604/#comment-11580</guid>
		<description>[...] Raksta oriģināls angliski [...]</description>
		<content:encoded><![CDATA[<p>[...] Raksta oriģināls angliski [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patricia</title>
		<link>http://anteru.net/2009/09/14/604/comment-page-4/#comment-11536</link>
		<dc:creator>Patricia</dc:creator>
		<pubDate>Sat, 26 Sep 2009 22:52:49 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/2009/09/14/604/#comment-11536</guid>
		<description>Thanks for the info!</description>
		<content:encoded><![CDATA[<p>Thanks for the info!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Demuxer blogspot.com (demuxer) 's status on Wednesday, 23-Sep-09 18:56:55 UTC - Identi.ca</title>
		<link>http://anteru.net/2009/09/14/604/comment-page-4/#comment-11323</link>
		<dc:creator>Demuxer blogspot.com (demuxer) 's status on Wednesday, 23-Sep-09 18:56:55 UTC - Identi.ca</dc:creator>
		<pubDate>Wed, 23 Sep 2009 18:57:06 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/2009/09/14/604/#comment-11323</guid>
		<description>[...]  http://anteru.net/2009/09/14/604/        a few seconds ago  from  Spaz [...]</description>
		<content:encoded><![CDATA[<p>[...]  <a href="http://anteru.net/2009/09/14/604/" rel="nofollow">http://anteru.net/2009/09/14/604/</a>        a few seconds ago  from  Spaz [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
