<?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 Anteru's blog</title>
	<atom:link href="http://anteru.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://anteru.net</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>Comment on Bazaar for version control by TesserId</title>
		<link>http://anteru.net/2010/03/08/634/comment-page-1/#comment-17510</link>
		<dc:creator>TesserId</dc:creator>
		<pubDate>Mon, 08 Mar 2010 20:41:19 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=634#comment-17510</guid>
		<description>&lt;a href=&quot;#comment-17509&quot; rel=&quot;nofollow&quot;&gt;@Anteru&lt;/a&gt; 
Well, I was glad to hear that you&#039;ve found some useful features for interoperation, as this indicates that it&#039;s not too tedious to be practical.  

I&#039;ve been predicting that more and more products will begin to include built-in version-control features, and I am seeing that prediction come true in a variety of products.  so, I&#039;ve been wondering how all these different tools might further interact in meaningful ways.  But, I find that tools often evolve as the associated human work flows acclimate to the environments created by the tools.  That is, an idea like the one that I&#039;ve suggested won&#039;t begin to gel until many others have the kind of work flows that call for such activities.  Does that sound vague?  Well, this idea is still pretty vague, and I guess that&#039;s my point.  Thanks for the response.</description>
		<content:encoded><![CDATA[<p><a href="#comment-17509" rel="nofollow">@Anteru</a><br />
Well, I was glad to hear that you&#8217;ve found some useful features for interoperation, as this indicates that it&#8217;s not too tedious to be practical.  </p>
<p>I&#8217;ve been predicting that more and more products will begin to include built-in version-control features, and I am seeing that prediction come true in a variety of products.  so, I&#8217;ve been wondering how all these different tools might further interact in meaningful ways.  But, I find that tools often evolve as the associated human work flows acclimate to the environments created by the tools.  That is, an idea like the one that I&#8217;ve suggested won&#8217;t begin to gel until many others have the kind of work flows that call for such activities.  Does that sound vague?  Well, this idea is still pretty vague, and I guess that&#8217;s my point.  Thanks for the response.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bazaar for version control by Anteru</title>
		<link>http://anteru.net/2010/03/08/634/comment-page-1/#comment-17509</link>
		<dc:creator>Anteru</dc:creator>
		<pubDate>Mon, 08 Mar 2010 19:19:35 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=634#comment-17509</guid>
		<description>I don&#039;t think so, even though SVN has something like that on &lt;a href=&quot;http://subversion.apache.org/roadmap.html&quot; rel=&quot;nofollow&quot;&gt;their roadmap&lt;/a&gt;. The key observation is here: How would this hybrid system look like?

If it allows you to work offline, and commit against a central repository, well, Bazaar for instance can do this against SVN and other stuff. The only difference here is whether you store the whole history locally, as there is one use case in which you don&#039;t want to do this. Again, Bazaar gives you &quot;checkouts&quot; without history, so it can act &lt;em&gt;right now&lt;/em&gt; as a SVN super-client (i.e. local commits, centralized development.) That&#039;s basically what I would expect from a hybrid client -- but I wonder how you think such a client would look like?

The one use case in which you don&#039;t want history is if you have large binary blobs in your repository (game assets, for instance.) In this case, you really want a centralized system or at least store all history on the server side instead of potentially duplicating it among all your clients; and you also want to have sparse checkouts, something which is much easier with centralized clients as you don&#039;t have to figure out which history is relevant for this subpart of your repository. This is one (and maybe the only) area where I don&#039;t see a real distributed alternative showing up. For all other stuff, I guess most people will migrate over to DVCS over time, as it gives you lots of benefits at basically zero cost.

Small note: I also used git and mercurial, and especially with git, there is some cost in moving from a centralized system over as it has very different concepts. Bazaar on the other hand makes it very easy to switch, especially as you can configure it like SVN for the beginning (use bound branches against a central repository only) and slowly move away from this (locally branch/merge for feature development, start merging between clients, finally move branches onto the server.) The only downside here is that Bazaar does not yet provide an easy way to delete branches on the server from Bazaar itself (you have to switch to a SSH client and do it there ...)</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think so, even though SVN has something like that on <a href="http://subversion.apache.org/roadmap.html" rel="nofollow">their roadmap</a>. The key observation is here: How would this hybrid system look like?</p>
<p>If it allows you to work offline, and commit against a central repository, well, Bazaar for instance can do this against SVN and other stuff. The only difference here is whether you store the whole history locally, as there is one use case in which you don&#8217;t want to do this. Again, Bazaar gives you &#8220;checkouts&#8221; without history, so it can act <em>right now</em> as a SVN super-client (i.e. local commits, centralized development.) That&#8217;s basically what I would expect from a hybrid client &#8212; but I wonder how you think such a client would look like?</p>
<p>The one use case in which you don&#8217;t want history is if you have large binary blobs in your repository (game assets, for instance.) In this case, you really want a centralized system or at least store all history on the server side instead of potentially duplicating it among all your clients; and you also want to have sparse checkouts, something which is much easier with centralized clients as you don&#8217;t have to figure out which history is relevant for this subpart of your repository. This is one (and maybe the only) area where I don&#8217;t see a real distributed alternative showing up. For all other stuff, I guess most people will migrate over to DVCS over time, as it gives you lots of benefits at basically zero cost.</p>
<p>Small note: I also used git and mercurial, and especially with git, there is some cost in moving from a centralized system over as it has very different concepts. Bazaar on the other hand makes it very easy to switch, especially as you can configure it like SVN for the beginning (use bound branches against a central repository only) and slowly move away from this (locally branch/merge for feature development, start merging between clients, finally move branches onto the server.) The only downside here is that Bazaar does not yet provide an easy way to delete branches on the server from Bazaar itself (you have to switch to a SSH client and do it there &#8230;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bazaar for version control by TesserId</title>
		<link>http://anteru.net/2010/03/08/634/comment-page-1/#comment-17507</link>
		<dc:creator>TesserId</dc:creator>
		<pubDate>Mon, 08 Mar 2010 18:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=634#comment-17507</guid>
		<description>You mention &quot;interoperation with other VCS&quot; and with Subversion in particular.  If such interoperation between distributed and centralized becomes more common place and the features to support it become better, do you suppose that there may yet be a hybrid distributed/centralized VCS in the future?  I ask here because you seem to be gaining some experience with the relevant use case (which I have not though this question has come to mind in the past).</description>
		<content:encoded><![CDATA[<p>You mention &#8220;interoperation with other VCS&#8221; and with Subversion in particular.  If such interoperation between distributed and centralized becomes more common place and the features to support it become better, do you suppose that there may yet be a hybrid distributed/centralized VCS in the future?  I ask here because you seem to be gaining some experience with the relevant use case (which I have not though this question has come to mind in the past).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Displaying listings in LaTeX beamer slides by misof</title>
		<link>http://anteru.net/2008/09/15/269/comment-page-1/#comment-16272</link>
		<dc:creator>misof</dc:creator>
		<pubDate>Sat, 06 Feb 2010 12:43:25 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=269#comment-16272</guid>
		<description>nice, thanks!</description>
		<content:encoded><![CDATA[<p>nice, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cannot connect to WPA-PSK2 protected WLAN on Linux &#8230; by Anand</title>
		<link>http://anteru.net/2010/01/25/684/comment-page-1/#comment-15806</link>
		<dc:creator>Anand</dc:creator>
		<pubDate>Mon, 25 Jan 2010 13:39:50 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=684#comment-15806</guid>
		<description>The following link explains on how to get the wireless up and running for an Intel card. But the procedure should be similar to your card as well. Hope it helps in at least locating the source of the problem.

http://ubuntuforums.org/showthread.php?t=26623</description>
		<content:encoded><![CDATA[<p>The following link explains on how to get the wireless up and running for an Intel card. But the procedure should be similar to your card as well. Hope it helps in at least locating the source of the problem.</p>
<p><a href="http://ubuntuforums.org/showthread.php?t=26623" rel="nofollow">http://ubuntuforums.org/showthread.php?t=26623</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Displaying listings in LaTeX beamer slides by rajbabu</title>
		<link>http://anteru.net/2008/09/15/269/comment-page-1/#comment-15725</link>
		<dc:creator>rajbabu</dc:creator>
		<pubDate>Sat, 23 Jan 2010 04:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=269#comment-15725</guid>
		<description>thanks for the tip.</description>
		<content:encoded><![CDATA[<p>thanks for the tip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using CMake to build a Qt application by Anteru</title>
		<link>http://anteru.net/2009/09/07/582/comment-page-1/#comment-15666</link>
		<dc:creator>Anteru</dc:creator>
		<pubDate>Thu, 21 Jan 2010 09:24:51 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=582#comment-15666</guid>
		<description>Glad I could help. The main problem is that the CMake documentation expects you that you know how Qt projects are build usually, with that knowledge, it&#039;s not too hard to find out which command does what, but still, I agree that the docs can be improved.

&lt;blockquote cite=&quot;#commentbody-14622&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-14622&quot; rel=&quot;nofollow&quot;&gt;Another Voice&lt;/a&gt; :&lt;/strong&gt;
&lt;p&gt;Hey, nice little article, what about a little working example? thnx&lt;/p&gt;
&lt;/blockquote&gt;

Is there anything in particular which you can&#039;t get working? Setting up an example project is something I don&#039;t like too much, as people tend to copy &amp; paste without understanding what they do ...</description>
		<content:encoded><![CDATA[<p>Glad I could help. The main problem is that the CMake documentation expects you that you know how Qt projects are build usually, with that knowledge, it&#8217;s not too hard to find out which command does what, but still, I agree that the docs can be improved.</p>
<blockquote cite="#commentbody-14622"><p>
<strong><a href="#comment-14622" rel="nofollow">Another Voice</a> :</strong></p>
<p>Hey, nice little article, what about a little working example? thnx</p>
</blockquote>
<p>Is there anything in particular which you can&#8217;t get working? Setting up an example project is something I don&#8217;t like too much, as people tend to copy &#038; paste without understanding what they do &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using CMake to build a Qt application by Alex</title>
		<link>http://anteru.net/2009/09/07/582/comment-page-1/#comment-15017</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Wed, 06 Jan 2010 15:24:58 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=582#comment-15017</guid>
		<description>Thanks for the article, clear and to the point. It saved me a couple of hours struggling with the horrible CMake documentation.</description>
		<content:encoded><![CDATA[<p>Thanks for the article, clear and to the point. It saved me a couple of hours struggling with the horrible CMake documentation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Switching to Linux: A Windows developer&#8217;s view 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>Comment on Switching to Linux: A Windows developer&#8217;s view 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>
</channel>
</rss>
