<?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 Huddled Masses</title>
	<atom:link href="http://huddledmasses.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://huddledmasses.org</link>
	<description>You can do more than breathe for free...</description>
	<lastBuildDate>Thu, 04 Mar 2010 22:56:16 +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 A DSL for XML in PowerShell: New-XDocument by Joel 'Jaykul' Bennett</title>
		<link>http://huddledmasses.org/a-dsl-for-xml-in-powershell-new-xdocument/comment-page-1/#comment-214448</link>
		<dc:creator>Joel 'Jaykul' Bennett</dc:creator>
		<pubDate>Thu, 04 Mar 2010 22:56:16 +0000</pubDate>
		<guid isPermaLink="false">http://huddledmasses.org/?p=1406#comment-214448</guid>
		<description>Yay, another good idea! &quot;Added in version 4.3&quot;:http://poshcode.org/1682</description>
		<content:encoded><![CDATA[<p>Yay, another good idea! <a href="http://poshcode.org/1682">Added in version 4.3</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A DSL for XML in PowerShell: New-XDocument by Jason Archer</title>
		<link>http://huddledmasses.org/a-dsl-for-xml-in-powershell-new-xdocument/comment-page-1/#comment-214446</link>
		<dc:creator>Jason Archer</dc:creator>
		<pubDate>Thu, 04 Mar 2010 19:13:54 +0000</pubDate>
		<guid isPermaLink="false">http://huddledmasses.org/?p=1406#comment-214446</guid>
		<description>Very cool idea!

It would be nice if Format-XML could also take the path to an XML file.</description>
		<content:encoded><![CDATA[<p>Very cool idea!</p>
<p>It would be nice if Format-<span class="caps">XML</span> could also take the path to an <span class="caps">XML</span> file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A DSL for XML in PowerShell: New-XDocument by Joel 'Jaykul' Bennett</title>
		<link>http://huddledmasses.org/a-dsl-for-xml-in-powershell-new-xdocument/comment-page-1/#comment-214445</link>
		<dc:creator>Joel 'Jaykul' Bennett</dc:creator>
		<pubDate>Thu, 04 Mar 2010 17:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://huddledmasses.org/?p=1406#comment-214445</guid>
		<description>Yeah, that&#039;s a great idea. Consider it implemented! 

As of &quot;version 4.2&quot;:http://poshcode.org/1681 the only commands that are *NOT* converted are ones which have a dash in them, *and* are _either_ a Cmdlet, a Function, or an ExternalScript (ie: a ps1 file in your path or specified by full name). Aliases, Applications, ScriptBlocks, and Functions or Scripts without &#039;verb-noun&#039; syntax in their name will be ignored (and thus, treated as xml tags).  Honestly, it was probably enough to check for &quot;-&quot; but since that&#039;s technically a legal character in xml node names (although I don&#039;t think I&#039;ve ever seen it used), I figured I needed the combination :).

I&#039;ve updated the links above, and changed my example script to use @Get-ChildItem@ instead of the now disallowed @ls@ ;)</description>
		<content:encoded><![CDATA[<p>Yeah, that&#8217;s a great idea. Consider it implemented! </p>
<p>As of <a href="http://poshcode.org/1681">version 4.2</a> the only commands that are <strong>NOT</strong> converted are ones which have a dash in them, <strong>and</strong> are <em>either</em> a Cmdlet, a Function, or an ExternalScript (ie: a ps1 file in your path or specified by full name). Aliases, Applications, ScriptBlocks, and Functions or Scripts without &#8216;verb-noun&#8217; syntax in their name will be ignored (and thus, treated as xml tags).  Honestly, it was probably enough to check for &#8220;-&#8221; but since that&#8217;s technically a legal character in xml node names (although I don&#8217;t think I&#8217;ve ever seen it used), I figured I needed the combination <img src='http://huddledmasses.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>I&#8217;ve updated the links above, and changed my example script to use <code>Get-ChildItem</code> instead of the now disallowed <code>ls</code> <img src='http://huddledmasses.org/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A DSL for XML in PowerShell: New-XDocument by Josh Einstein</title>
		<link>http://huddledmasses.org/a-dsl-for-xml-in-powershell-new-xdocument/comment-page-1/#comment-214444</link>
		<dc:creator>Josh Einstein</dc:creator>
		<pubDate>Thu, 04 Mar 2010 14:49:36 +0000</pubDate>
		<guid isPermaLink="false">http://huddledmasses.org/?p=1406#comment-214444</guid>
		<description>Wow, that on-the-fly implementation of unrecognized command names is very clever! But the potential conflicts (or more importantly, potential *future* conflicts) seems too dangerous to use in real scripts. I wonder if it might be possible to temporarily alter the command lookup table so that only full cmdlet names could be used in the XML DSL and any &quot;short&quot; names would always be treated as XElements.</description>
		<content:encoded><![CDATA[<p>Wow, that on-the-fly implementation of unrecognized command names is very clever! But the potential conflicts (or more importantly, potential <strong>future</strong> conflicts) seems too dangerous to use in real scripts. I wonder if it might be possible to temporarily alter the command lookup table so that only full cmdlet names could be used in the <span class="caps">XML</span> <span class="caps">DSL</span> and any &#8220;short&#8221; names would always be treated as XElements.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Are you interested in a virtual PowerShell brown-bag event? by Weekly Link Post 134 &#171; Rhonda Tipton&#8217;s WebLog</title>
		<link>http://huddledmasses.org/are-you-interested-in-a-virtual-powershell-brown-bag-event/comment-page-1/#comment-214422</link>
		<dc:creator>Weekly Link Post 134 &#171; Rhonda Tipton&#8217;s WebLog</dc:creator>
		<pubDate>Mon, 01 Mar 2010 02:11:31 +0000</pubDate>
		<guid isPermaLink="false">http://huddledmasses.org/are-you-interested-in-a-virtual-powershell-brown-bag-event/#comment-214422</guid>
		<description>[...] Are you interested in a virtual PowerShell brown-bag event? &#8211; I voted monthly&#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Are you interested in a virtual PowerShell brown-bag event? &#8211; I voted monthly&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Are you interested in a virtual PowerShell brown-bag event? by Dew Drop &#8211; February 25, 2010 &#124; Alvin Ashcraft&#39;s Morning Dew</title>
		<link>http://huddledmasses.org/are-you-interested-in-a-virtual-powershell-brown-bag-event/comment-page-1/#comment-214402</link>
		<dc:creator>Dew Drop &#8211; February 25, 2010 &#124; Alvin Ashcraft&#39;s Morning Dew</dc:creator>
		<pubDate>Thu, 25 Feb 2010 14:22:10 +0000</pubDate>
		<guid isPermaLink="false">http://huddledmasses.org/are-you-interested-in-a-virtual-powershell-brown-bag-event/#comment-214402</guid>
		<description>[...] Are you interested in a virtual PowerShell brown-bag event? (Joel Bennett) [...]</description>
		<content:encoded><![CDATA[<p>[...] Are you interested in a virtual PowerShell brown-bag event? (Joel Bennett) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PowerShell Module Manifests Tip: allowed cmdlets and variables by Dew Drop &#8211; January 18, 2010 &#124; Alvin Ashcraft&#39;s Morning Dew</title>
		<link>http://huddledmasses.org/powershell-module-manifests-tip-allowed-cmdlets-and-variables/comment-page-1/#comment-214234</link>
		<dc:creator>Dew Drop &#8211; January 18, 2010 &#124; Alvin Ashcraft&#39;s Morning Dew</dc:creator>
		<pubDate>Mon, 18 Jan 2010 13:52:51 +0000</pubDate>
		<guid isPermaLink="false">http://huddledmasses.org/?p=1394#comment-214234</guid>
		<description>[...] PowerShell Module Manifests Tip: allowed cmdlets and variables (Joel Bennett) [...]</description>
		<content:encoded><![CDATA[<p>[...] PowerShell Module Manifests Tip: allowed cmdlets and variables (Joel Bennett) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Another Module Manifest Gotcha by PowerShell Module Manifests Tip: allowed cmdlets and variables</title>
		<link>http://huddledmasses.org/another-module-manifest-gotcha/comment-page-1/#comment-214231</link>
		<dc:creator>PowerShell Module Manifests Tip: allowed cmdlets and variables</dc:creator>
		<pubDate>Mon, 18 Jan 2010 03:29:36 +0000</pubDate>
		<guid isPermaLink="false">http://huddledmasses.org/?p=1386#comment-214231</guid>
		<description>[...] Huddled Masses  You can do more than breathe for free&#8230;                      &#171; Another Module Manifest Gotcha [...]</description>
		<content:encoded><![CDATA[<p>[...] Huddled Masses  You can do more than breathe for free&#8230;                      &laquo; Another Module Manifest Gotcha [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A question about PowerShell Module Manifests by PowerShell Module Manifests Tip: allowed cmdlets and variables</title>
		<link>http://huddledmasses.org/a-question-about-powershell-module-manifests/comment-page-1/#comment-214230</link>
		<dc:creator>PowerShell Module Manifests Tip: allowed cmdlets and variables</dc:creator>
		<pubDate>Mon, 18 Jan 2010 02:57:06 +0000</pubDate>
		<guid isPermaLink="false">http://huddledmasses.org/?p=1382#comment-214230</guid>
		<description>[...] articles by ZemantaA question about PowerShell Module Manifests (huddledmasses.org)Another Module Manifest Gotcha (huddledmasses.org)      Posted in Huddled &#124;  [...]</description>
		<content:encoded><![CDATA[<p>[...] articles by ZemantaA question about PowerShell Module Manifests (huddledmasses.org)Another Module Manifest Gotcha (huddledmasses.org)      Posted in Huddled |  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A question about PowerShell Module Manifests by Another Module Manifest Gotcha</title>
		<link>http://huddledmasses.org/a-question-about-powershell-module-manifests/comment-page-1/#comment-214225</link>
		<dc:creator>Another Module Manifest Gotcha</dc:creator>
		<pubDate>Fri, 15 Jan 2010 03:42:46 +0000</pubDate>
		<guid isPermaLink="false">http://huddledmasses.org/?p=1382#comment-214225</guid>
		<description>[...] Huddled Masses  You can do more than breathe for free&#8230;                      &#171; A question about PowerShell Module Manifests [...]</description>
		<content:encoded><![CDATA[<p>[...] Huddled Masses  You can do more than breathe for free&#8230;                      &laquo; A question about PowerShell Module Manifests [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
