<?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 John Sedlak</title>
	<atom:link href="http://jsedlak.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jsedlak.org</link>
	<description></description>
	<lastBuildDate>Wed, 14 Sep 2011 00:30:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Sitecore Articles by James Gardner</title>
		<link>http://jsedlak.org/articles/sitecore-articles/comment-page-1/#comment-1643</link>
		<dc:creator>James Gardner</dc:creator>
		<pubDate>Wed, 14 Sep 2011 00:30:46 +0000</pubDate>
		<guid isPermaLink="false">http://jsedlak.org/#comment-1643</guid>
		<description>Hi John,

I saw your comment on this StackOverflow question http://stackoverflow.com/questions/3427056/copy-a-field-when-creating-a-new-version-in-sitecore and was wondering if you tried implementing it.  I&#039;ve been thinking about doing the same thing and I think it will work but I don&#039;t think I&#039;ll be able to get it done quick enough for my content editors to make use of it before their deadline.  It seems to me there&#039;ll be a lot of things to check for - like which fields can be copied (we have language specific fields eg pricing) that shouldn&#039;t be copied so for each template we&#039;d need a list of non-copyable fields.  I was thinking of making a cmd for it rather than hooking into the save pipeline because we don&#039;t want to have a dialog box saying &quot;Do you want to save in all languages&quot; on every save event.  Did you come up with another solution?  And is it less complex than I&#039;m thinking?

Cheers,

James. SO user 30216</description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>I saw your comment on this StackOverflow question <a href="http://stackoverflow.com/questions/3427056/copy-a-field-when-creating-a-new-version-in-sitecore" rel="nofollow">http://stackoverflow.com/questions/3427056/copy-a-field-when-creating-a-new-version-in-sitecore</a> and was wondering if you tried implementing it.  I&#8217;ve been thinking about doing the same thing and I think it will work but I don&#8217;t think I&#8217;ll be able to get it done quick enough for my content editors to make use of it before their deadline.  It seems to me there&#8217;ll be a lot of things to check for &#8211; like which fields can be copied (we have language specific fields eg pricing) that shouldn&#8217;t be copied so for each template we&#8217;d need a list of non-copyable fields.  I was thinking of making a cmd for it rather than hooking into the save pipeline because we don&#8217;t want to have a dialog box saying &#8220;Do you want to save in all languages&#8221; on every save event.  Did you come up with another solution?  And is it less complex than I&#8217;m thinking?</p>
<p>Cheers,</p>
<p>James. SO user 30216</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Restoring LocalUserAppDataPath in WPF by Vitaly Belman</title>
		<link>http://jsedlak.org/2008/08/29/restoring-localuserappdatapath-in-wpf/comment-page-1/#comment-1633</link>
		<dc:creator>Vitaly Belman</dc:creator>
		<pubDate>Mon, 15 Aug 2011 17:09:04 +0000</pubDate>
		<guid isPermaLink="false">http://jso.fg.com/?p=376#comment-1633</guid>
		<description>I found this to be working just fine:

Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal);
string path = config.FilePath;

Taken from here:
http://stackoverflow.com/questions/884260/how-can-i-watch-the-user-config-file-and-reload-the-settings-when-it-changes?answertab=votes#tab-top</description>
		<content:encoded><![CDATA[<p>I found this to be working just fine:</p>
<p>Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal);<br />
string path = config.FilePath;</p>
<p>Taken from here:<br />
<a href="http://stackoverflow.com/questions/884260/how-can-i-watch-the-user-config-file-and-reload-the-settings-when-it-changes?answertab=votes#tab-top" rel="nofollow">http://stackoverflow.com/questions/884260/how-can-i-watch-the-user-config-file-and-reload-the-settings-when-it-changes?answertab=votes#tab-top</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Wrap Macro for Visual Studio by BandannaMan</title>
		<link>http://jsedlak.org/2010/11/29/custom-wrap-macro-for-visual-studio/comment-page-1/#comment-1371</link>
		<dc:creator>BandannaMan</dc:creator>
		<pubDate>Thu, 06 Jan 2011 16:50:51 +0000</pubDate>
		<guid isPermaLink="false">http://jsedlak.org/?p=838#comment-1371</guid>
		<description>Wouldn&#039;t you want to escape any characters in the ts.Text if they are special characters to HTML?  For example convert the character &quot;&lt;&quot; in the text to &quot;&amp;lt&quot;.</description>
		<content:encoded><![CDATA[<p>Wouldn&#8217;t you want to escape any characters in the ts.Text if they are special characters to HTML?  For example convert the character &#8220;&lt;&quot; in the text to &quot;&amp;lt&quot;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2D Fog Of War by Will Smith</title>
		<link>http://jsedlak.org/2009/10/27/2d-fog-of-war/comment-page-1/#comment-1364</link>
		<dc:creator>Will Smith</dc:creator>
		<pubDate>Tue, 26 Oct 2010 12:44:52 +0000</pubDate>
		<guid isPermaLink="false">http://jsedlak.com/?p=231#comment-1364</guid>
		<description>If you want to get this to work in XNA 4.0 
in the shader.fx file change 

return float4(color.r, color.g, color.b, alpha.r);

to 

return color * alpha;</description>
		<content:encoded><![CDATA[<p>If you want to get this to work in XNA 4.0<br />
in the shader.fx file change </p>
<p>return float4(color.r, color.g, color.b, alpha.r);</p>
<p>to </p>
<p>return color * alpha;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Xbox 360 Support Sucks by Bob</title>
		<link>http://jsedlak.org/2008/11/25/xbox-360-support-sucks/comment-page-1/#comment-1357</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Fri, 24 Sep 2010 01:27:29 +0000</pubDate>
		<guid isPermaLink="false">http://jsedlak.com/?p=142#comment-1357</guid>
		<description>My gamerscore was deleted and I was called a cheater for no reason and on purpose everyone should complain until they give me all my gamerscore and recreation zone back!!!!!!!</description>
		<content:encoded><![CDATA[<p>My gamerscore was deleted and I was called a cheater for no reason and on purpose everyone should complain until they give me all my gamerscore and recreation zone back!!!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Korkboard 1.0.0.4 by John Sedlak</title>
		<link>http://jsedlak.org/2010/07/08/korkboard-1-0-0-4/comment-page-1/#comment-1324</link>
		<dc:creator>John Sedlak</dc:creator>
		<pubDate>Fri, 09 Jul 2010 23:43:27 +0000</pubDate>
		<guid isPermaLink="false">http://jsedlak.org/?p=655#comment-1324</guid>
		<description>Thanks for trying it, Nick! I will have a look into that issue. It seemed to be working on my home computer and my work computer. The timer is in minutes, not seconds.

Here is a look at things I am adding or wanting to add:

    Clear List button
    List re-ordering via drag+drop
    Settings to turn on/off what gets picked up by Korkboard
    Better display of what item is currently in the clipboard
    Reversing the sort on the list
    Pinning items to the list
    Saving the list on close for use later on (far off)
    A WCF (Windows) Service so that others can easily plug and play (just a dream right now)
</description>
		<content:encoded><![CDATA[<p>Thanks for trying it, Nick! I will have a look into that issue. It seemed to be working on my home computer and my work computer. The timer is in minutes, not seconds.</p>
<p>Here is a look at things I am adding or wanting to add:</p>
<p>    Clear List button<br />
    List re-ordering via drag+drop<br />
    Settings to turn on/off what gets picked up by Korkboard<br />
    Better display of what item is currently in the clipboard<br />
    Reversing the sort on the list<br />
    Pinning items to the list<br />
    Saving the list on close for use later on (far off)<br />
    A WCF (Windows) Service so that others can easily plug and play (just a dream right now)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Korkboard 1.0.0.4 by Nick</title>
		<link>http://jsedlak.org/2010/07/08/korkboard-1-0-0-4/comment-page-1/#comment-1323</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Fri, 09 Jul 2010 16:16:49 +0000</pubDate>
		<guid isPermaLink="false">http://jsedlak.org/?p=655#comment-1323</guid>
		<description>So I played with this a bit the other day and while some of the options don&#039;t seem to work for me (like the length to keep the notes), it&#039;s a cool little app. It&#039;s definitely nice when refactoring code because I can just Ctrl-X a bunch and get any of that back using Korkboard. Very cool.</description>
		<content:encoded><![CDATA[<p>So I played with this a bit the other day and while some of the options don&#8217;t seem to work for me (like the length to keep the notes), it&#8217;s a cool little app. It&#8217;s definitely nice when refactoring code because I can just Ctrl-X a bunch and get any of that back using Korkboard. Very cool.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Korkboard 1.0.0.4 by John Sedlak</title>
		<link>http://jsedlak.org/2010/07/08/korkboard-1-0-0-4/comment-page-1/#comment-1321</link>
		<dc:creator>John Sedlak</dc:creator>
		<pubDate>Thu, 08 Jul 2010 16:09:39 +0000</pubDate>
		<guid isPermaLink="false">http://jsedlak.org/?p=655#comment-1321</guid>
		<description>Thanks. I know there are issues with ClickOnce in a couple of the browsers and will upload a zip when I get home.</description>
		<content:encoded><![CDATA[<p>Thanks. I know there are issues with ClickOnce in a couple of the browsers and will upload a zip when I get home.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Korkboard 1.0.0.4 by Nick</title>
		<link>http://jsedlak.org/2010/07/08/korkboard-1-0-0-4/comment-page-1/#comment-1320</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 08 Jul 2010 15:07:08 +0000</pubDate>
		<guid isPermaLink="false">http://jsedlak.org/?p=655#comment-1320</guid>
		<description>Just FYI, your download link fails in both Firefox and Chrome.</description>
		<content:encoded><![CDATA[<p>Just FYI, your download link fails in both Firefox and Chrome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2D Fog Of War by qua</title>
		<link>http://jsedlak.org/2009/10/27/2d-fog-of-war/comment-page-1/#comment-1306</link>
		<dc:creator>qua</dc:creator>
		<pubDate>Mon, 17 May 2010 22:28:10 +0000</pubDate>
		<guid isPermaLink="false">http://jsedlak.com/?p=231#comment-1306</guid>
		<description>Great approach, however, the fog turns out white instead of black when implementing the above in XNA 4.0 (possibly also in 3.1)</description>
		<content:encoded><![CDATA[<p>Great approach, however, the fog turns out white instead of black when implementing the above in XNA 4.0 (possibly also in 3.1)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

