<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Paolo Capriotti</title>
	<atom:link href="http://pcapriotti.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://pcapriotti.wordpress.com</link>
	<description>KDE hacking and more</description>
	<lastBuildDate>Fri, 06 Nov 2009 05:28:04 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on skema 0.1 by fyfk</title>
		<link>http://pcapriotti.wordpress.com/2007/11/19/skema-01/#comment-2720</link>
		<dc:creator>fyfk</dc:creator>
		<pubDate>Fri, 06 Nov 2009 05:28:04 +0000</pubDate>
		<guid isPermaLink="false">http://pcapriotti.wordpress.com/2007/11/19/skema-01/#comment-2720</guid>
		<description>Спасибо было интересно читать.</description>
		<content:encoded><![CDATA[<p>Спасибо было интересно читать.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Monads for Markov chains by BabetteSmith</title>
		<link>http://pcapriotti.wordpress.com/2008/10/16/monads-for-markov-chains/#comment-2719</link>
		<dc:creator>BabetteSmith</dc:creator>
		<pubDate>Sun, 23 Aug 2009 05:07:31 +0000</pubDate>
		<guid isPermaLink="false">http://pcapriotti.wordpress.com/?p=46#comment-2719</guid>
		<description>Gday.

Did you ever think about creating your very own blog?  There are many great platforms, but by far the best is Wordpress.  It is easy to set up, however the themes just never fit my needs.  I looked for a simple solution to this problem and realized that there wasn&#039;t one.  I then had a template custom made for my needs and was so happy with the outcome.  I then decided to build a website that would show the world how to simply hire an expert in wordpress design.


&lt;a href=&quot;http://hirewordpressexperts.com/&quot; rel=&quot;nofollow&quot;&gt;Custom Wordpress Template&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Gday.</p>
<p>Did you ever think about creating your very own blog?  There are many great platforms, but by far the best is WordPress.  It is easy to set up, however the themes just never fit my needs.  I looked for a simple solution to this problem and realized that there wasn&#8217;t one.  I then had a template custom made for my needs and was so happy with the outcome.  I then decided to build a website that would show the world how to simply hire an expert in wordpress design.</p>
<p><a href="http://hirewordpressexperts.com/" rel="nofollow">Custom WordPress Template</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fighting zombies with a double fork by Samuel</title>
		<link>http://pcapriotti.wordpress.com/2008/02/12/fighting-zombies-with-a-double-fork/#comment-2708</link>
		<dc:creator>Samuel</dc:creator>
		<pubDate>Thu, 28 May 2009 14:55:09 +0000</pubDate>
		<guid isPermaLink="false">http://pcapriotti.wordpress.com/?p=38#comment-2708</guid>
		<description>This is an interesting solution.</description>
		<content:encoded><![CDATA[<p>This is an interesting solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Monads for Markov chains by Avertedd</title>
		<link>http://pcapriotti.wordpress.com/2008/10/16/monads-for-markov-chains/#comment-2707</link>
		<dc:creator>Avertedd</dc:creator>
		<pubDate>Tue, 26 May 2009 07:17:45 +0000</pubDate>
		<guid isPermaLink="false">http://pcapriotti.wordpress.com/?p=46#comment-2707</guid>
		<description>Даже и не придирешься!</description>
		<content:encoded><![CDATA[<p>Даже и не придирешься!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some thoughts on git by Erik</title>
		<link>http://pcapriotti.wordpress.com/2007/10/08/some-thoughts-on-git/#comment-2702</link>
		<dc:creator>Erik</dc:creator>
		<pubDate>Fri, 01 May 2009 23:53:55 +0000</pubDate>
		<guid isPermaLink="false">http://pcapriotti.wordpress.com/2007/10/08/some-thoughts-on-git/#comment-2702</guid>
		<description>I don&#039;t think your criticisms of git are very well thought out. I am C++ guy but looking at the code I think it is quite well designed. I don&#039;t think it is really that hard to grasp. Some points:

-The C code seems to follow some sort of modular or OOP like design. A lot of the functions have prefixes to indicate which datatype they operate on, and they are grouped together in file with similar name.

- I fail to understand how you think git is abuse of unix philosophy. Users don&#039;t have to see individual commands since they are launched through the git command. A lot of small executables is great because you can test each individual feature separately. It also allows advance users to build new tools by chaining together executables with their own scripts.

- I wish the software I work on was designed like this and not as a monolith, where it is pretty much impossible to test individual components. Sure we had a plugin architecture at one time and some sort of modular design. Except that was all in C++ and over time people abuse it and break it to the point where plugins are so dependent on each other that they cease to be individual components.

With the git design there is less chance of this happening since the individual components are processes which can suddenly start depending on each others internals.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think your criticisms of git are very well thought out. I am C++ guy but looking at the code I think it is quite well designed. I don&#8217;t think it is really that hard to grasp. Some points:</p>
<p>-The C code seems to follow some sort of modular or OOP like design. A lot of the functions have prefixes to indicate which datatype they operate on, and they are grouped together in file with similar name.</p>
<p>- I fail to understand how you think git is abuse of unix philosophy. Users don&#8217;t have to see individual commands since they are launched through the git command. A lot of small executables is great because you can test each individual feature separately. It also allows advance users to build new tools by chaining together executables with their own scripts.</p>
<p>- I wish the software I work on was designed like this and not as a monolith, where it is pretty much impossible to test individual components. Sure we had a plugin architecture at one time and some sort of modular design. Except that was all in C++ and over time people abuse it and break it to the point where plugins are so dependent on each other that they cease to be individual components.</p>
<p>With the git design there is less chance of this happening since the individual components are processes which can suddenly start depending on each others internals.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some thoughts on git by Alex</title>
		<link>http://pcapriotti.wordpress.com/2007/10/08/some-thoughts-on-git/#comment-2688</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Fri, 27 Feb 2009 13:56:40 +0000</pubDate>
		<guid isPermaLink="false">http://pcapriotti.wordpress.com/2007/10/08/some-thoughts-on-git/#comment-2688</guid>
		<description>El Anonimato es Cojonudo Says:
October 8, 2007 at 2:43 pm
&quot;Who cares about windows?&quot;

I am so sick of this kind of attitude from nieve open source hackers.</description>
		<content:encoded><![CDATA[<p>El Anonimato es Cojonudo Says:<br />
October 8, 2007 at 2:43 pm<br />
&#8220;Who cares about windows?&#8221;</p>
<p>I am so sick of this kind of attitude from nieve open source hackers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on skema 0.1 by StarW</title>
		<link>http://pcapriotti.wordpress.com/2007/11/19/skema-01/#comment-2684</link>
		<dc:creator>StarW</dc:creator>
		<pubDate>Tue, 18 Nov 2008 20:23:27 +0000</pubDate>
		<guid isPermaLink="false">http://pcapriotti.wordpress.com/2007/11/19/skema-01/#comment-2684</guid>
		<description>Спасибо, много полезного почерпнул.</description>
		<content:encoded><![CDATA[<p>Спасибо, много полезного почерпнул.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Monads for Markov chains by Arnar Birgisson</title>
		<link>http://pcapriotti.wordpress.com/2008/10/16/monads-for-markov-chains/#comment-2680</link>
		<dc:creator>Arnar Birgisson</dc:creator>
		<pubDate>Wed, 22 Oct 2008 08:46:01 +0000</pubDate>
		<guid isPermaLink="false">http://pcapriotti.wordpress.com/?p=46#comment-2680</guid>
		<description>Good post. Just wanted to chime in and tell you that I have no problems with highlighting on my WP blog. I use the &lt;a href=&quot;http://wordpress.org/extend/plugins/wp-syntax/&quot; rel=&quot;nofollow&quot;&gt;WP-Syntax&lt;/a&gt; plug-in and it pretty much worked on first try. I had to tweak the CSS a bit to get pleasant colours.

Feel free to email me if you want more information or having problems.</description>
		<content:encoded><![CDATA[<p>Good post. Just wanted to chime in and tell you that I have no problems with highlighting on my WP blog. I use the <a href="http://wordpress.org/extend/plugins/wp-syntax/" rel="nofollow">WP-Syntax</a> plug-in and it pretty much worked on first try. I had to tweak the CSS a bit to get pleasant colours.</p>
<p>Feel free to email me if you want more information or having problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on KBoard is dead. Long live Tagua! by pcapriotti</title>
		<link>http://pcapriotti.wordpress.com/2007/07/19/kboard-is-dead-long-live-tagua/#comment-2677</link>
		<dc:creator>pcapriotti</dc:creator>
		<pubDate>Mon, 20 Oct 2008 08:53:59 +0000</pubDate>
		<guid isPermaLink="false">http://pcapriotti.wordpress.com/2007/07/19/kboard-is-dead-long-live-tagua/#comment-2677</guid>
		<description>No, at the moment development is stalled.</description>
		<content:encoded><![CDATA[<p>No, at the moment development is stalled.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on KBoard is dead. Long live Tagua! by atomopawn</title>
		<link>http://pcapriotti.wordpress.com/2007/07/19/kboard-is-dead-long-live-tagua/#comment-2676</link>
		<dc:creator>atomopawn</dc:creator>
		<pubDate>Mon, 20 Oct 2008 06:32:29 +0000</pubDate>
		<guid isPermaLink="false">http://pcapriotti.wordpress.com/2007/07/19/kboard-is-dead-long-live-tagua/#comment-2676</guid>
		<description>What happened to Tagua?  The web site links to some domain squatter page....  Is Tagua still under active development?</description>
		<content:encoded><![CDATA[<p>What happened to Tagua?  The web site links to some domain squatter page&#8230;.  Is Tagua still under active development?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
