<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Stuff of Interest &#187; Development</title>
	<atom:link href="http://stuff.vhandw.com/category/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://stuff.vhandw.com</link>
	<description>General thoughts and discoveries on the web</description>
	<lastBuildDate>Fri, 19 Feb 2010 15:43:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mercurial server on windows IIS</title>
		<link>http://stuff.vhandw.com/2010/02/19/mercurial-server-on-windows-iis/</link>
		<comments>http://stuff.vhandw.com/2010/02/19/mercurial-server-on-windows-iis/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 15:36:50 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[mercurial]]></category>
		<category><![CDATA[hg]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://stuff.vhandw.com/2010/02/19/mercurial-server-on-windows-iis/</guid>
		<description><![CDATA[http://vampirebasic.blogspot.com/2009/06/running-mercurial-on-windows.html
http://stackoverflow.com/questions/818571/how-to-setup-mercurial-and-hgwebdir-on-iis
Good starting point. Comments mention in order to push, have to create windows user, and add them to push list. 
]]></description>
			<content:encoded><![CDATA[<p>http://vampirebasic.blogspot.com/2009/06/running-mercurial-on-windows.html</p>
<p>http://stackoverflow.com/questions/818571/how-to-setup-mercurial-and-hgwebdir-on-iis</p>
<p>Good starting point. Comments mention in order to push, have to create windows user, and add them to push list. </p>
]]></content:encoded>
			<wfw:commentRss>http://stuff.vhandw.com/2010/02/19/mercurial-server-on-windows-iis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grails: Error starting Sun’s native2ascii</title>
		<link>http://stuff.vhandw.com/2010/02/14/grails-error-starting-sun%e2%80%99s-native2ascii/</link>
		<comments>http://stuff.vhandw.com/2010/02/14/grails-error-starting-sun%e2%80%99s-native2ascii/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 20:16:19 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Grails]]></category>

		<guid isPermaLink="false">http://stuff.vhandw.com/?p=269</guid>
		<description><![CDATA[Building Blocks » Grails: Error starting Sun’s native2ascii
Found this link when ran into error described. If pointing at JRE, doesn&#8217;t work. Have to point at JDK
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.morkeleb.com/2009/04/04/grails-error-starting-suns-native2ascii/">Building Blocks » Grails: Error starting Sun’s native2ascii</a></p>
<p>Found this link when ran into error described. If pointing at JRE, doesn&#8217;t work. Have to point at JDK</p>
]]></content:encoded>
			<wfw:commentRss>http://stuff.vhandw.com/2010/02/14/grails-error-starting-sun%e2%80%99s-native2ascii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch files and portions of file parameter</title>
		<link>http://stuff.vhandw.com/2009/03/26/batch-files-and-portions-of-file-parameter/</link>
		<comments>http://stuff.vhandw.com/2009/03/26/batch-files-and-portions-of-file-parameter/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 01:09:11 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://stuff.vhandw.com/?p=259</guid>
		<description><![CDATA[The following table outlines how you can modify the passed parameter.



Parameter
Description


%1
The normal parameter.


%~f1
Expands %1 to a fully qualified pathname. If you passed only a filename from the current directory, this parameter would also expand to the drive or directory.


%~d1
Extracts the drive letter from %1.


%~p1
Extracts the path from %1.


%~n1
Extracts the filename from %1, without the extension.


%~x1
Extracts [...]]]></description>
			<content:encoded><![CDATA[<p>The following table outlines how you can modify the passed parameter.</p>
<table border="1">
<tbody>
<tr>
<th>Parameter</th>
<th>Description</th>
</tr>
<tr>
<td>%1</td>
<td>The normal parameter.</td>
</tr>
<tr>
<td>%~f1</td>
<td>Expands %1 to a fully qualified pathname. If you passed only a filename from the current directory, this parameter would also expand to the drive or directory.</td>
</tr>
<tr>
<td>%~d1</td>
<td>Extracts the drive letter from %1.</td>
</tr>
<tr>
<td>%~p1</td>
<td>Extracts the path from %1.</td>
</tr>
<tr>
<td>%~n1</td>
<td>Extracts the filename from %1, without the extension.</td>
</tr>
<tr>
<td>%~x1</td>
<td>Extracts the file extension from %1.</td>
</tr>
<tr>
<td>%~s1</td>
<td>Changes the n and x options’ meanings to reference the short name. You would therefore use</td>
</tr>
<tr>
<td>%~sn1</td>
<td>for the short filename and %~sx1 for the short extension.</td>
</tr>
</tbody>
</table>
<p>The following table shows how you can combine some of the parameters.</p>
<table border="1">
<tbody>
<tr>
<th>Parameter</th>
<th>Description</th>
</tr>
<tr>
<td>%~dp1</td>
<td>Expands %1 to a drive letter and path only.</td>
</tr>
<tr>
<td>%~sp1</td>
<td>For short path.</td>
</tr>
<tr>
<td>%~nx1</td>
<td>Expands %1 to a filename and extension only.</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://stuff.vhandw.com/2009/03/26/batch-files-and-portions-of-file-parameter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
