<?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"
	>
<channel>
	<title>Comments for Barnabas Kendall</title>
	<atom:link href="http://bkendall.biz/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://bkendall.biz</link>
	<description>Technology Consultant</description>
	<pubDate>Sat, 22 Nov 2008 05:51:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>Comment on Fix for &#8220;WebForm_PostBackOptions is undefined&#8221; error by shobha</title>
		<link>http://bkendall.biz/2007/02/fix-for-webform_postbackoptions-is-undefined-error/#comment-28</link>
		<dc:creator>shobha</dc:creator>
		<pubDate>Tue, 12 Aug 2008 11:51:54 +0000</pubDate>
		<guid isPermaLink="false">http://barnabas.wordpress.com/2007/02/23/fix-for-webform_postbackoptions-is-undefined-error/#comment-28</guid>
		<description>hi.. i m facing the same problem. can u pls tell me in detail where will i get this WebResource.axd and how to compress. i serached in my sytem not able to find out..</description>
		<content:encoded><![CDATA[<p>hi.. i m facing the same problem. can u pls tell me in detail where will i get this WebResource.axd and how to compress. i serached in my sytem not able to find out..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Directory synchronization batch file by Jesse Chisholm</title>
		<link>http://bkendall.biz/2007/10/dir-sync/#comment-58</link>
		<dc:creator>Jesse Chisholm</dc:creator>
		<pubDate>Tue, 24 Jun 2008 02:50:04 +0000</pubDate>
		<guid isPermaLink="false">http://barnabas.wordpress.com/2007/10/04/dir-sync/#comment-58</guid>
		<description>PS: You may want to add this near the top as a parameter validation step:

for %%I in (%1 %2) do (
	if not exist "%%~I" (
		echo Can't find %%~I
		goto _exit
		)
	)

And, of course, the :_exit label at the bottom.

-Jesse</description>
		<content:encoded><![CDATA[<p>PS: You may want to add this near the top as a parameter validation step:</p>
<p>for %%I in (%1 %2) do (<br />
	if not exist &#8220;%%~I&#8221; (<br />
		echo Can&#8217;t find %%~I<br />
		goto _exit<br />
		)<br />
	)</p>
<p>And, of course, the :_exit label at the bottom.</p>
<p>-Jesse</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Directory synchronization batch file by Jesse Chisholm</title>
		<link>http://bkendall.biz/2007/10/dir-sync/#comment-57</link>
		<dc:creator>Jesse Chisholm</dc:creator>
		<pubDate>Tue, 24 Jun 2008 02:20:35 +0000</pubDate>
		<guid isPermaLink="false">http://barnabas.wordpress.com/2007/10/04/dir-sync/#comment-57</guid>
		<description>The answer is to do for directories what you did for files.  In the files loop you used both the file name %%~nf and the file extension %%~xf to make the entire file's basename: %%~nf%%~xf

Do the same in your directory loop.  Use %%~nd%%~xd to get the entire basename of the directory.

BTW.  nice recursive batch file.

-Jesse</description>
		<content:encoded><![CDATA[<p>The answer is to do for directories what you did for files.  In the files loop you used both the file name %%~nf and the file extension %%~xf to make the entire file&#8217;s basename: %%~nf%%~xf</p>
<p>Do the same in your directory loop.  Use %%~nd%%~xd to get the entire basename of the directory.</p>
<p>BTW.  nice recursive batch file.</p>
<p>-Jesse</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What Microsoft + Yahoo = for Mobile by Ruminal</title>
		<link>http://bkendall.biz/2008/02/ms-yahoo-mobile/#comment-65</link>
		<dc:creator>Ruminal</dc:creator>
		<pubDate>Thu, 19 Jun 2008 12:34:11 +0000</pubDate>
		<guid isPermaLink="false">http://barnabas.wordpress.com/?p=155#comment-65</guid>
		<description>Somehow i missed the point. Probably lost in translation :) Anyway ... nice blog to visit.

cheers, Ruminal!!</description>
		<content:encoded><![CDATA[<p>Somehow i missed the point. Probably lost in translation <img src='http://bkendall.biz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Anyway &#8230; nice blog to visit.</p>
<p>cheers, Ruminal!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Directory synchronization batch file by Scott</title>
		<link>http://bkendall.biz/2007/10/dir-sync/#comment-56</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Tue, 27 May 2008 21:57:59 +0000</pubDate>
		<guid isPermaLink="false">http://barnabas.wordpress.com/2007/10/04/dir-sync/#comment-56</guid>
		<description>I know this is an old post, but I am using this code for a backup script and I've noticed that it still has problems with folders that have a dot in the name, and I can't seem to figure out how to fix it. Here's an example:
Source folder is called A, and contains another folder named "testfolder.a"
Destination is a folder called B.
If you run the script on that folder, this happens:

C:\Program Files\Scripts&#62;dir_sync2.bat A B
Syncing A with B
A\testfolder.a\testfile1
A\testfolder.a\testfile2
2 File(s) copied
Deleting directory testfolder

Notice that everything after the dot in the folder name is missing. When it checks to see if the file exist, everything after the dot is removed, so it thinks the file does not exist and removes it. It looks to me like a problem with the Windows FOR command. Do you know of a workaround/fix for this?</description>
		<content:encoded><![CDATA[<p>I know this is an old post, but I am using this code for a backup script and I&#8217;ve noticed that it still has problems with folders that have a dot in the name, and I can&#8217;t seem to figure out how to fix it. Here&#8217;s an example:<br />
Source folder is called A, and contains another folder named &#8220;testfolder.a&#8221;<br />
Destination is a folder called B.<br />
If you run the script on that folder, this happens:</p>
<p>C:\Program Files\Scripts&gt;dir_sync2.bat A B<br />
Syncing A with B<br />
A\testfolder.a\testfile1<br />
A\testfolder.a\testfile2<br />
2 File(s) copied<br />
Deleting directory testfolder</p>
<p>Notice that everything after the dot in the folder name is missing. When it checks to see if the file exist, everything after the dot is removed, so it thinks the file does not exist and removes it. It looks to me like a problem with the Windows FOR command. Do you know of a workaround/fix for this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fix for SOAP reflection error in VS 2005 web projects by Jurjen</title>
		<link>http://bkendall.biz/2007/07/soap-reflection-error-vs2005/#comment-39</link>
		<dc:creator>Jurjen</dc:creator>
		<pubDate>Tue, 27 May 2008 14:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://barnabas.wordpress.com/2007/07/05/soap-reflection-error-vs2005/#comment-39</guid>
		<description>Hi, Just wanted to say THANK YOU!!! I just ran into this problem also and '/order' saved me.

Thanks !!</description>
		<content:encoded><![CDATA[<p>Hi, Just wanted to say THANK YOU!!! I just ran into this problem also and &#8216;/order&#8217; saved me.</p>
<p>Thanks !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The iPhone Might Be Slow and Closed - Awesome by Lynn Light</title>
		<link>http://bkendall.biz/2007/06/the-iphone-might-be-slow-and-closed-awesome/#comment-34</link>
		<dc:creator>Lynn Light</dc:creator>
		<pubDate>Sat, 05 Apr 2008 15:05:56 +0000</pubDate>
		<guid isPermaLink="false">http://barnabas.wordpress.com/2007/06/19/the-iphone-might-be-slow-and-closed-awesome/#comment-34</guid>
		<description>iphone Internet sucks,for all the talk about a iPhone.It looks like apple could work a better deal with somebody.And also no adobe flash really sucks.Now come on apple you want to be the number 1 do something.</description>
		<content:encoded><![CDATA[<p>iphone Internet sucks,for all the talk about a iPhone.It looks like apple could work a better deal with somebody.And also no adobe flash really sucks.Now come on apple you want to be the number 1 do something.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fix for SOAP reflection error in VS 2005 web projects by Tejal</title>
		<link>http://bkendall.biz/2007/07/soap-reflection-error-vs2005/#comment-37</link>
		<dc:creator>Tejal</dc:creator>
		<pubDate>Fri, 14 Mar 2008 10:09:15 +0000</pubDate>
		<guid isPermaLink="false">http://barnabas.wordpress.com/2007/07/05/soap-reflection-error-vs2005/#comment-37</guid>
		<description>Hi
i face a same problem.
At localhost my code is working properly , but when my application goes to live it give me the same error.

i tried your solution but it didn.t work ,i got the same error

Can you please help me

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi<br />
i face a same problem.<br />
At localhost my code is working properly , but when my application goes to live it give me the same error.</p>
<p>i tried your solution but it didn.t work ,i got the same error</p>
<p>Can you please help me</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Plugging SmugMug&#8217;s &#8220;Hole&#8221; by Big privacy changes at SmugMugSmugBlog: Don MacAskill &#124; Techitorial</title>
		<link>http://bkendall.biz/2008/01/plugging-smugmugs-hole/#comment-60</link>
		<dc:creator>Big privacy changes at SmugMugSmugBlog: Don MacAskill &#124; Techitorial</dc:creator>
		<pubDate>Mon, 11 Feb 2008 12:11:24 +0000</pubDate>
		<guid isPermaLink="false">http://barnabas.wordpress.com/?p=153#comment-60</guid>
		<description>[...] we created Keys for galleries and photos/videos and appended them to the relevant URLs. Kudos to Barnabus for planting that [...]</description>
		<content:encoded><![CDATA[<p>[...] we created Keys for galleries and photos/videos and appended them to the relevant URLs. Kudos to Barnabus for planting that [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What Microsoft + Yahoo = for Mobile by Bluebeetle(one)</title>
		<link>http://bkendall.biz/2008/02/ms-yahoo-mobile/#comment-64</link>
		<dc:creator>Bluebeetle(one)</dc:creator>
		<pubDate>Fri, 08 Feb 2008 22:36:05 +0000</pubDate>
		<guid isPermaLink="false">http://barnabas.wordpress.com/?p=155#comment-64</guid>
		<description>There’s lots of redundancy between Yahoo’s and Microsoft’s global efforts
&#62;&#62; There are 14 duplicate products. The one getting the best scorings are almost every time the one from Yahoo!.

If only M$ does better w/ one of its product it is only slightly.

This is really a bad news Yahoo! employees (many of them will be “sacrified” in the name of  “eliminating redundant infrastructure and duplicative operating costs”)
;o(</description>
		<content:encoded><![CDATA[<p>There’s lots of redundancy between Yahoo’s and Microsoft’s global efforts<br />
&gt;&gt; There are 14 duplicate products. The one getting the best scorings are almost every time the one from Yahoo!.</p>
<p>If only M$ does better w/ one of its product it is only slightly.</p>
<p>This is really a bad news Yahoo! employees (many of them will be “sacrified” in the name of  “eliminating redundant infrastructure and duplicative operating costs”)<br />
;o(</p>
]]></content:encoded>
	</item>
</channel>
</rss>
