<?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 on: Software design rant &#8211; Notepad ++</title>
	<atom:link href="http://www.gamesandcode.com/blog/2008/09/software-design-rant-npp/feed" rel="self" type="application/rss+xml" />
	<link>http://www.gamesandcode.com/blog/2008/09/software-design-rant-npp</link>
	<description>code it, play it</description>
	<lastBuildDate>Fri, 05 Jun 2009 17:50:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: AJG</title>
		<link>http://www.gamesandcode.com/blog/2008/09/software-design-rant-npp/comment-page-1#comment-1159</link>
		<dc:creator>AJG</dc:creator>
		<pubDate>Fri, 13 Mar 2009 22:18:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.gamesandcode.com/blog/?p=108#comment-1159</guid>
		<description>Ah, that is a good point and I agree with you. Dialogs pertinent only to one tab/document probably shouldn&#039;t modally block the entire application. My guess is that it&#039;s not so much a design decision as much as just the easiest way to do it for them: One call to whatever the MessageBox function is versus creating a custom dialog, or widget, etc.

Regards.</description>
		<content:encoded><![CDATA[<p>Ah, that is a good point and I agree with you. Dialogs pertinent only to one tab/document probably shouldn&#8217;t modally block the entire application. My guess is that it&#8217;s not so much a design decision as much as just the easiest way to do it for them: One call to whatever the MessageBox function is versus creating a custom dialog, or widget, etc.</p>
<p>Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hugo</title>
		<link>http://www.gamesandcode.com/blog/2008/09/software-design-rant-npp/comment-page-1#comment-1103</link>
		<dc:creator>hugo</dc:creator>
		<pubDate>Mon, 02 Mar 2009 06:39:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.gamesandcode.com/blog/?p=108#comment-1103</guid>
		<description>Thanks for your comment.
You are right, &quot;No&quot; is the safe answer and generally Npp handles this well. But my main complaint is that dialog which is relevant to only one tab, prevents me to use any other tabs until i make a decision, be it easy or not.</description>
		<content:encoded><![CDATA[<p>Thanks for your comment.<br />
You are right, &#8220;No&#8221; is the safe answer and generally Npp handles this well. But my main complaint is that dialog which is relevant to only one tab, prevents me to use any other tabs until i make a decision, be it easy or not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AJG</title>
		<link>http://www.gamesandcode.com/blog/2008/09/software-design-rant-npp/comment-page-1#comment-1100</link>
		<dc:creator>AJG</dc:creator>
		<pubDate>Sun, 01 Mar 2009 10:54:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.gamesandcode.com/blog/?p=108#comment-1100</guid>
		<description>I believe you are mistaken. I&#039;m not completely certain because it&#039;s possible that Notepad++ behaves differently, but, all other text editors I&#039;ve used that have that feature (e.g. Visual Studio, gedit, etc.) follow this design:

The dialog offers two choices, only &lt;i&gt;one&lt;/i&gt; of which is destructive -- namely, &quot;Yes.&quot; Yes is destructive because you lose whatever unsaved changes you&#039;ve made to the file (that is, if you&#039;ve made any.)

&quot;No,&quot; however, is &lt;i&gt;not&lt;/i&gt; destructive. It simply means, &quot;keep my local changes in memory.&quot; It does not mean that the &lt;i&gt;file itself&lt;/i&gt; will be overwritten or modified in any way. So the changes that the &quot;other application&quot; made will &lt;i&gt;not&lt;/i&gt; be lost. You get to have your cake and eat it.

Therefore, if you don&#039;t want to lose any possible data, choose No, and manually inspect the changes to the file. Hope that helps.

Regards.</description>
		<content:encoded><![CDATA[<p>I believe you are mistaken. I&#8217;m not completely certain because it&#8217;s possible that Notepad++ behaves differently, but, all other text editors I&#8217;ve used that have that feature (e.g. Visual Studio, gedit, etc.) follow this design:</p>
<p>The dialog offers two choices, only <i>one</i> of which is destructive &#8212; namely, &#8220;Yes.&#8221; Yes is destructive because you lose whatever unsaved changes you&#8217;ve made to the file (that is, if you&#8217;ve made any.)</p>
<p>&#8220;No,&#8221; however, is <i>not</i> destructive. It simply means, &#8220;keep my local changes in memory.&#8221; It does not mean that the <i>file itself</i> will be overwritten or modified in any way. So the changes that the &#8220;other application&#8221; made will <i>not</i> be lost. You get to have your cake and eat it.</p>
<p>Therefore, if you don&#8217;t want to lose any possible data, choose No, and manually inspect the changes to the file. Hope that helps.</p>
<p>Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hugo</title>
		<link>http://www.gamesandcode.com/blog/2008/09/software-design-rant-npp/comment-page-1#comment-168</link>
		<dc:creator>hugo</dc:creator>
		<pubDate>Sun, 07 Sep 2008 19:17:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.gamesandcode.com/blog/?p=108#comment-168</guid>
		<description>I love Notepad++ too, I wouldn&#039;t use it otherwise. And the alert feature is useful too, just as I wrote.

My post is just about how some minor design choice be a major obstacle in some scenarios.</description>
		<content:encoded><![CDATA[<p>I love Notepad++ too, I wouldn&#8217;t use it otherwise. And the alert feature is useful too, just as I wrote.</p>
<p>My post is just about how some minor design choice be a major obstacle in some scenarios.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent</title>
		<link>http://www.gamesandcode.com/blog/2008/09/software-design-rant-npp/comment-page-1#comment-166</link>
		<dc:creator>Laurent</dc:creator>
		<pubDate>Sun, 07 Sep 2008 15:50:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.gamesandcode.com/blog/?p=108#comment-166</guid>
		<description>Hey I love Notepad++ and I love this alert feature.
The feature you don&#039;t like (or you don&#039;t need) doesn&#039;t mean that it&#039;s useless for anyone else.

So why don&#039;t you save this opinion for yourself, or better than that, use another editor since it&#039;s not good enough for you.</description>
		<content:encoded><![CDATA[<p>Hey I love Notepad++ and I love this alert feature.<br />
The feature you don&#8217;t like (or you don&#8217;t need) doesn&#8217;t mean that it&#8217;s useless for anyone else.</p>
<p>So why don&#8217;t you save this opinion for yourself, or better than that, use another editor since it&#8217;s not good enough for you.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
