<?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 Programmer Luddite</title>
	<atom:link href="https://programmerluddite.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://programmerluddite.com</link>
	<description>The Blog of Barney Boisvert, Software Craftsman</description>
	<lastBuildDate>Wed, 08 Jan 2014 06:07:03 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
	<item>
		<title>Comment on Branching and Refactoring by Karthik</title>
		<link>https://programmerluddite.com/2012/06/branching-and-refactoring/#comment-5880</link>
		<dc:creator><![CDATA[Karthik]]></dc:creator>
		<pubDate>Wed, 08 Jan 2014 06:07:03 +0000</pubDate>
		<guid isPermaLink="false">http://programmerluddite.com/?p=57#comment-5880</guid>
		<description><![CDATA[Hi Barney, 

I understand my comments not related to your post but I just came across your blogpost on http://www.barneyb.com/barneyblog/2008/02/28/read-only-and-read-write-svn-repositories/. But realized the thread as well as the site is not active anymore.

I&#039;ve got both authentication and authorization working as they should be in my setup. However, path based restrictions don&#039;t seem to work for sub folders. Please see Authz snippet below:

[groups]
ctrlMusers = user1, user2, user3

[/]@ctrlM = r

[SVNCOPY:/ControlM]
@ctrlM = rw
@developers = r
* =

From the above, I&#039;m restricting write access only to ctrlMusers. But sadly, ControlM folder has too many sub directories (SVNCOPY/ControlM/trunk/AciCore/build/release1)

user3 is not able to commit a file under SVNCOPY/ControlM/trunk/AciCore/build/release1 even though he has RW access at the parent folder level (ControlM). How do I go about resolving this issue? Thanks.
Karthik]]></description>
		<content:encoded><![CDATA[<p>Hi Barney, </p>
<p>I understand my comments not related to your post but I just came across your blogpost on <a href="http://www.barneyb.com/barneyblog/2008/02/28/read-only-and-read-write-svn-repositories/" rel="nofollow">http://www.barneyb.com/barneyblog/2008/02/28/read-only-and-read-write-svn-repositories/</a>. But realized the thread as well as the site is not active anymore.</p>
<p>I&#8217;ve got both authentication and authorization working as they should be in my setup. However, path based restrictions don&#8217;t seem to work for sub folders. Please see Authz snippet below:</p>
<p>[groups]<br />
ctrlMusers = user1, user2, user3</p>
<p>[/]@ctrlM = r</p>
<p>[SVNCOPY:/ControlM]<br />
@ctrlM = rw<br />
@developers = r<br />
* =</p>
<p>From the above, I&#8217;m restricting write access only to ctrlMusers. But sadly, ControlM folder has too many sub directories (SVNCOPY/ControlM/trunk/AciCore/build/release1)</p>
<p>user3 is not able to commit a file under SVNCOPY/ControlM/trunk/AciCore/build/release1 even though he has RW access at the parent folder level (ControlM). How do I go about resolving this issue? Thanks.<br />
Karthik</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Domino Functions by Bill Beers</title>
		<link>https://programmerluddite.com/2013/04/domino-functions/#comment-2579</link>
		<dc:creator><![CDATA[Bill Beers]]></dc:creator>
		<pubDate>Wed, 26 Jun 2013 05:04:40 +0000</pubDate>
		<guid isPermaLink="false">http://programmerluddite.com/?p=69#comment-2579</guid>
		<description><![CDATA[As I read this post, I had a flashback to one of my college math courses(Number Theory), where my professor told us of a German math prodigy named, Carl Friedrich Gauss.

There is a well known story about Karl Friedrich Gauss when he was in
elementary school.  His teacher got mad at the class and told them to
add the numbers 1 to 100 and give him the answer by the end of the 
class. About 30 seconds later Gauss gave him the answer.

Looking at your triangle it clicked. 
1 + 2 + 3 + ... + n

If you take the sequence and add it to the reverse sequence, shown below... 

&lt;pre&gt;1      2    3    4    5    6    7    8    9   10   11   12
+    +    +    +    +    +    +    +   +     +    +     +
12   11  10   9    8    7    6    5    4     3     2     1
=
13   13   13   13   13   13   13   13   13   13   13 =  12(13) = 156 or n(n+1)
&lt;/pre&gt;
which is double the total, so take 1/2 of that to find the total = 78
78 != 91 so this made me go, hmmm 
But, since the dominos are 0 based, it really is 1+...+13 so plug in 13 for n


&lt;pre&gt;13(14)
--------      =  182/2 = 91
2
&lt;/pre&gt;

Math is cool.]]></description>
		<content:encoded><![CDATA[<p>As I read this post, I had a flashback to one of my college math courses(Number Theory), where my professor told us of a German math prodigy named, Carl Friedrich Gauss.</p>
<p>There is a well known story about Karl Friedrich Gauss when he was in<br />
elementary school.  His teacher got mad at the class and told them to<br />
add the numbers 1 to 100 and give him the answer by the end of the<br />
class. About 30 seconds later Gauss gave him the answer.</p>
<p>Looking at your triangle it clicked.<br />
1 + 2 + 3 + &#8230; + n</p>
<p>If you take the sequence and add it to the reverse sequence, shown below&#8230; </p>
<pre>1      2    3    4    5    6    7    8    9   10   11   12
+    +    +    +    +    +    +    +   +     +    +     +
12   11  10   9    8    7    6    5    4     3     2     1
=
13   13   13   13   13   13   13   13   13   13   13 =  12(13) = 156 or n(n+1)
</pre>
<p>which is double the total, so take 1/2 of that to find the total = 78<br />
78 != 91 so this made me go, hmmm<br />
But, since the dominos are 0 based, it really is 1+&#8230;+13 so plug in 13 for n</p>
<pre>13(14)
--------      =  182/2 = 91
2
</pre>
<p>Math is cool.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I am a Programmer Luddite by Honey</title>
		<link>https://programmerluddite.com/2012/01/programmer-luddite/#comment-8</link>
		<dc:creator><![CDATA[Honey]]></dc:creator>
		<pubDate>Fri, 27 Jan 2012 19:07:36 +0000</pubDate>
		<guid isPermaLink="false">http://programmerluddite.com/?p=27#comment-8</guid>
		<description><![CDATA[Sweet! I think the Internet is a great place to not exactly &quot;recreate&quot; yourself, but at least to &quot;reunderstand&quot; yourself in new contexts. Your new blog looks great, way different. I think that change is awesome and I&#039;m very impressed that you&#039;re taking such huge steps in your development as a programmer and a person. Let&#039;s have lunch soon.]]></description>
		<content:encoded><![CDATA[<p>Sweet! I think the Internet is a great place to not exactly &#8220;recreate&#8221; yourself, but at least to &#8220;reunderstand&#8221; yourself in new contexts. Your new blog looks great, way different. I think that change is awesome and I&#8217;m very impressed that you&#8217;re taking such huge steps in your development as a programmer and a person. Let&#8217;s have lunch soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I am a Programmer Luddite by Adam Tuttle</title>
		<link>https://programmerluddite.com/2012/01/programmer-luddite/#comment-2</link>
		<dc:creator><![CDATA[Adam Tuttle]]></dc:creator>
		<pubDate>Mon, 02 Jan 2012 13:03:43 +0000</pubDate>
		<guid isPermaLink="false">http://programmerluddite.com/?p=27#comment-2</guid>
		<description><![CDATA[Good luck on your new journey; both the new job and the new blog!]]></description>
		<content:encoded><![CDATA[<p>Good luck on your new journey; both the new job and the new blog!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
