<?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 Crafting software</title>
	<atom:link href="http://davidlaing.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://davidlaing.com</link>
	<description>David Laing&#039;s thoughts on software development</description>
	<lastBuildDate>Tue, 07 Feb 2012 02:14:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Domain mapping with WordPress MU, Plesk, Apache2 &amp; Ubuntu by Matt Auckland</title>
		<link>http://davidlaing.com/2008/07/24/domain-mapping-with-wordpress-mu-plesk-apache2-ubuntu/#comment-80</link>
		<dc:creator>Matt Auckland</dc:creator>
		<pubDate>Tue, 07 Feb 2012 02:14:24 +0000</pubDate>
		<guid isPermaLink="false">http://davidlaing.com/?p=80#comment-80</guid>
		<description>Oh and also you need to close the Directory tag otherwise you&#039;ll get an error from Apache, and it fail. Personally I&#039;m not using the &#039;AllowOverride FileInfo Options&#039; directory command, as I don&#039;t believe it is strictly necessary.

Another major break through I made tonight is, if you want wildcard https:// domains too, you need to do the same commands, but instead of a vhost.conf, create a vhost_ssl.conf.

Works a treat on my system. Thanks for the pointers David Laing, it got me moving in the right direction.

Best wishes, One Happy Coder (at 2:11am)</description>
		<content:encoded><![CDATA[<p>Oh and also you need to close the Directory tag otherwise you&#8217;ll get an error from Apache, and it fail. Personally I&#8217;m not using the &#8216;AllowOverride FileInfo Options&#8217; directory command, as I don&#8217;t believe it is strictly necessary.</p>
<p>Another major break through I made tonight is, if you want wildcard https:// domains too, you need to do the same commands, but instead of a vhost.conf, create a vhost_ssl.conf.</p>
<p>Works a treat on my system. Thanks for the pointers David Laing, it got me moving in the right direction.</p>
<p>Best wishes, One Happy Coder (at 2:11am)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Domain mapping with WordPress MU, Plesk, Apache2 &amp; Ubuntu by Matt Auckland</title>
		<link>http://davidlaing.com/2008/07/24/domain-mapping-with-wordpress-mu-plesk-apache2-ubuntu/#comment-79</link>
		<dc:creator>Matt Auckland</dc:creator>
		<pubDate>Tue, 07 Feb 2012 01:15:06 +0000</pubDate>
		<guid isPermaLink="false">http://davidlaing.com/?p=80#comment-79</guid>
		<description>Yes there is, here&#039;s how you do it:-

1. Edit or create (if you don’t have one already) the vhost.conf file for your domain, by doing the following:
 
  # cd /var/www/vhosts/domain.com/conf
  # vi vhost.conf

2. Now add the code above in the post.

3. Save changes and exit your editor.

4. Now we must reconfigure/update the domain via Plesk to pick up the new vhost.conf changes we just made (this adds a line to the httpd.include file to look at the directives in vhost.conf we just made). To do this type the following:

  # /usr/local/psa/admin/sbin/websrvmng -a –v


4. Finally we need to restart the apache service for the changes to take effect by typing the following:

  # /sbin/service httpd restart

And that show do it :)</description>
		<content:encoded><![CDATA[<p>Yes there is, here&#8217;s how you do it:-</p>
<p>1. Edit or create (if you don’t have one already) the vhost.conf file for your domain, by doing the following:</p>
<p>  # cd /var/www/vhosts/domain.com/conf<br />
  # vi vhost.conf</p>
<p>2. Now add the code above in the post.</p>
<p>3. Save changes and exit your editor.</p>
<p>4. Now we must reconfigure/update the domain via Plesk to pick up the new vhost.conf changes we just made (this adds a line to the httpd.include file to look at the directives in vhost.conf we just made). To do this type the following:</p>
<p>  # /usr/local/psa/admin/sbin/websrvmng -a –v</p>
<p>4. Finally we need to restart the apache service for the changes to take effect by typing the following:</p>
<p>  # /sbin/service httpd restart</p>
<p>And that show do it <img src='http://davidlaing.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Learning functional Javascript through Koans by Jay McGavren</title>
		<link>http://davidlaing.com/2010/07/19/learning-functional-javascript-through-koans/#comment-67</link>
		<dc:creator>Jay McGavren</dc:creator>
		<pubDate>Sun, 31 Jul 2011 20:53:08 +0000</pubDate>
		<guid isPermaLink="false">http://davidlaing.com/?p=236#comment-67</guid>
		<description>Dunno if you&#039;ll be notified of this, so I&#039;ll cc: your GitHub account...

Got a question on:

https://github.com/mrdavidlaing/javascript-koans/blob/master/koans/AboutInheritance.js

After applying &quot;Crockford&#039;s inheritance improvement&quot;, the comment says I &quot;no longer need to call the Muppet (base type) constructor&quot;.  I&#039;m not seeing the difference for the code for Gonzo and the code for the SwedishChef, though.  (Well, aside from the call to beget().)  What am I missing?

Overall, though, the koans are helping me grok Javascript quickly and (reasonably) well.  Thanks for doing them!</description>
		<content:encoded><![CDATA[<p>Dunno if you&#8217;ll be notified of this, so I&#8217;ll cc: your GitHub account&#8230;</p>
<p>Got a question on:</p>
<p><a href="https://github.com/mrdavidlaing/javascript-koans/blob/master/koans/AboutInheritance.js" rel="nofollow">https://github.com/mrdavidlaing/javascript-koans/blob/master/koans/AboutInheritance.js</a></p>
<p>After applying &#8220;Crockford&#8217;s inheritance improvement&#8221;, the comment says I &#8220;no longer need to call the Muppet (base type) constructor&#8221;.  I&#8217;m not seeing the difference for the code for Gonzo and the code for the SwedishChef, though.  (Well, aside from the call to beget().)  What am I missing?</p>
<p>Overall, though, the koans are helping me grok Javascript quickly and (reasonably) well.  Thanks for doing them!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Selenium gotcha &#8211; selenium.GetHtmlSource() returns processed HTML by Demelza</title>
		<link>http://davidlaing.com/2008/12/29/selenium-gotcha-seleniumgethtmlsource-returns-processed-html/#comment-39</link>
		<dc:creator>Demelza</dc:creator>
		<pubDate>Sun, 24 Apr 2011 08:39:49 +0000</pubDate>
		<guid isPermaLink="false">http://davidlaing.com/?p=142#comment-39</guid>
		<description>Stands back from the keyboard in aamezenmt! Thanks!</description>
		<content:encoded><![CDATA[<p>Stands back from the keyboard in aamezenmt! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Higher order functions &#8211; simplifying loops &#8211; part 2 of ?? by Everyday functional programming &#8211; part 1 of ?? : David Laing&#8217;s blog</title>
		<link>http://davidlaing.com/2011/04/04/higher-order-functions-simplifying-loops-part-2-of/#comment-27</link>
		<dc:creator>Everyday functional programming &#8211; part 1 of ?? : David Laing&#8217;s blog</dc:creator>
		<pubDate>Thu, 14 Apr 2011 21:31:22 +0000</pubDate>
		<guid isPermaLink="false">http://davidlaing.com/?p=264#comment-27</guid>
		<description>[...] Higher order functions &#8211; simplifying loops [...]</description>
		<content:encoded><![CDATA[<p>[...] Higher order functions &#8211; simplifying loops [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Domain mapping with WordPress MU, Plesk, Apache2 &amp; Ubuntu by Dave</title>
		<link>http://davidlaing.com/2008/07/24/domain-mapping-with-wordpress-mu-plesk-apache2-ubuntu/#comment-3</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 03 Mar 2011 22:39:17 +0000</pubDate>
		<guid isPermaLink="false">http://davidlaing.com/?p=80#comment-3</guid>
		<description>If you modify the httpd.include directly, plesk will end up overwriting your changes any time the virtual hosts are modified or regenerated.

Is there a way to do this with vhost.conf ?</description>
		<content:encoded><![CDATA[<p>If you modify the httpd.include directly, plesk will end up overwriting your changes any time the virtual hosts are modified or regenerated.</p>
<p>Is there a way to do this with vhost.conf ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Defect Exception by Greg Lucas</title>
		<link>http://davidlaing.com/2011/02/18/a-defect-exception/#comment-24</link>
		<dc:creator>Greg Lucas</dc:creator>
		<pubDate>Mon, 21 Feb 2011 09:12:53 +0000</pubDate>
		<guid isPermaLink="false">http://davidlaing.com/?p=250#comment-24</guid>
		<description>David, you&#039;re right.  Sometimes it&#039;s the simplest ideas that are the most brilliant.  I was beginning to think you&#039;d given up on your blog. Which reminds me, I must start working on mine again :-)</description>
		<content:encoded><![CDATA[<p>David, you&#8217;re right.  Sometimes it&#8217;s the simplest ideas that are the most brilliant.  I was beginning to think you&#8217;d given up on your blog. Which reminds me, I must start working on mine again <img src='http://davidlaing.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Learning functional Javascript through Koans by mrdavidlaing</title>
		<link>http://davidlaing.com/2010/07/19/learning-functional-javascript-through-koans/#comment-23</link>
		<dc:creator>mrdavidlaing</dc:creator>
		<pubDate>Sun, 06 Feb 2011 23:20:09 +0000</pubDate>
		<guid isPermaLink="false">http://davidlaing.com/?p=236#comment-23</guid>
		<description>Cool idea.  

How about submitting a patch/pull request, and I&#039;ll get your watchr script included in the master branch</description>
		<content:encoded><![CDATA[<p>Cool idea.  </p>
<p>How about submitting a patch/pull request, and I&#8217;ll get your watchr script included in the master branch</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Learning functional Javascript through Koans by mrdavidlaing</title>
		<link>http://davidlaing.com/2010/07/19/learning-functional-javascript-through-koans/#comment-22</link>
		<dc:creator>mrdavidlaing</dc:creator>
		<pubDate>Sun, 06 Feb 2011 23:19:05 +0000</pubDate>
		<guid isPermaLink="false">http://davidlaing.com/?p=236#comment-22</guid>
		<description>Hey, I&#039;m glad you&#039;ve found them useful.

If you have anything to add... we&#039;re always happy to accept patches/pull requests</description>
		<content:encoded><![CDATA[<p>Hey, I&#8217;m glad you&#8217;ve found them useful.</p>
<p>If you have anything to add&#8230; we&#8217;re always happy to accept patches/pull requests</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Learning functional Javascript through Koans by Sarah Allen</title>
		<link>http://davidlaing.com/2010/07/19/learning-functional-javascript-through-koans/#comment-21</link>
		<dc:creator>Sarah Allen</dc:creator>
		<pubDate>Fri, 04 Feb 2011 03:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://davidlaing.com/?p=236#comment-21</guid>
		<description>Love these!  Sitting in on Javascript class at Blazing Cloud today with Alex Chaffee.  He&#039;s reviewing the homework which was from a fork of your koans.  So much fun!  Thanks for making &#039;em.</description>
		<content:encoded><![CDATA[<p>Love these!  Sitting in on Javascript class at Blazing Cloud today with Alex Chaffee.  He&#8217;s reviewing the homework which was from a fork of your koans.  So much fun!  Thanks for making &#8216;em.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

