<?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 Musings&lt;Biefeld&gt;</title>
	<atom:link href="http://sbiefeld.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://sbiefeld.com</link>
	<description>- curiosities of development, life, the universe and everything -</description>
	<lastBuildDate>Wed, 16 May 2012 20:59:00 +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 Extending the asp.net textbox to have an OnBlur server side event. by Contact</title>
		<link>http://sbiefeld.com/2008/09/extending-the-aspnet-textbox-to-have-an-onblur-server-side-event/comment-page-1/#comment-15030</link>
		<dc:creator>Contact</dc:creator>
		<pubDate>Wed, 16 May 2012 20:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://sbiefeld.com/?p=22#comment-15030</guid>
		<description>Thanks a lot! This is the most compact ASP.NET user control that I have seen that works right away!</description>
		<content:encoded><![CDATA[<p>Thanks a lot! This is the most compact ASP.NET user control that I have seen that works right away!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extending the asp.net textbox to have an OnBlur server side event. by Macaco Chines</title>
		<link>http://sbiefeld.com/2008/09/extending-the-aspnet-textbox-to-have-an-onblur-server-side-event/comment-page-1/#comment-15029</link>
		<dc:creator>Macaco Chines</dc:creator>
		<pubDate>Wed, 11 Apr 2012 16:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://sbiefeld.com/?p=22#comment-15029</guid>
		<description>is there chance of helping on this? i get lost and your link for implementation doesn&#039;t existe anymore.
where do I write this? on my recent created added class? 
private string GetScript()
{
    return &quot;function OnBlurred(control, arg)n{n __doPostBack(control, arg);n}&quot;;
}

public delegate void OnBlurDelegate(object sender, EventArgs e);

public event OnBlurDelegate Blur;

private void RaiseOnBlurEvent()
{
    if(Blur != null)
    {
        Blur(this, EventArgs.Empty);
    }
}</description>
		<content:encoded><![CDATA[<p>is there chance of helping on this? i get lost and your link for implementation doesn&#8217;t existe anymore.<br />
where do I write this? on my recent created added class?<br />
private string GetScript()<br />
{<br />
    return &#8220;function OnBlurred(control, arg)n{n __doPostBack(control, arg);n}&#8221;;<br />
}</p>
<p>public delegate void OnBlurDelegate(object sender, EventArgs e);</p>
<p>public event OnBlurDelegate Blur;</p>
<p>private void RaiseOnBlurEvent()<br />
{<br />
    if(Blur != null)<br />
    {<br />
        Blur(this, EventArgs.Empty);<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extending the asp.net textbox to have an OnBlur server side event. by Macaco Chines</title>
		<link>http://sbiefeld.com/2008/09/extending-the-aspnet-textbox-to-have-an-onblur-server-side-event/comment-page-1/#comment-15028</link>
		<dc:creator>Macaco Chines</dc:creator>
		<pubDate>Wed, 11 Apr 2012 16:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://sbiefeld.com/?p=22#comment-15028</guid>
		<description>Hi</description>
		<content:encoded><![CDATA[<p>Hi</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple XML to JSON with PHP by Jim</title>
		<link>http://sbiefeld.com/2011/10/simple-xml-to-json-with-php/comment-page-1/#comment-15027</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Fri, 11 Nov 2011 20:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://sbiefeld.com/?p=439#comment-15027</guid>
		<description>This will not work if you have multiple instances sequentially of the same tag in your XML, json_encode will end up only serializing the last instance of the tag. Sorry for bursting your bubble ;)</description>
		<content:encoded><![CDATA[<p>This will not work if you have multiple instances sequentially of the same tag in your XML, json_encode will end up only serializing the last instance of the tag. Sorry for bursting your bubble <img src='http://sbiefeld.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XML Parsing with JavaScript by Vickrant</title>
		<link>http://sbiefeld.com/2008/03/quick-and-dirty-xml-parsing-with-javascript/comment-page-1/#comment-378</link>
		<dc:creator>Vickrant</dc:creator>
		<pubDate>Tue, 24 Mar 2009 06:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://sbiefeld.com/?p=9#comment-378</guid>
		<description>Hi it was very useful.</description>
		<content:encoded><![CDATA[<p>Hi it was very useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mapping a column from a many to many relational table by Sean Biefeld</title>
		<link>http://sbiefeld.com/2008/09/nhibernate-mapping-a-column-out-of-a-many-to-many-relational-table/comment-page-1/#comment-227</link>
		<dc:creator>Sean Biefeld</dc:creator>
		<pubDate>Tue, 09 Dec 2008 06:28:53 +0000</pubDate>
		<guid isPermaLink="false">http://sbiefeld.com/?p=13#comment-227</guid>
		<description>The Student mapping should be fairly similar to the Course mapping:

&lt;pre&gt;&lt;class name=&quot;Student&quot; table=&quot;Student&quot;&gt;
  &lt;id name=&quot;Id&quot; column=&quot;Id&quot; /&gt;
  &lt;property name=&quot;FirstName&quot; column=&quot;FirstName&quot; /&gt;
  &lt;property name=&quot;LastName&quot; column=&quot;LastName&quot; /&gt;
  
  &lt;join table=&quot;Student_Course&quot; optional=&quot;true&quot; &gt;  
    &lt;key column=&quot;Student_Id&quot; /&gt;
    &lt;property name=&quot;FinalGrade&quot; column=&quot;FinalGrade&quot; /&gt;
  &lt;/join&gt;
&lt;/class&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>The Student mapping should be fairly similar to the Course mapping:</p>
<pre>&lt;class name="Student" table="Student"&gt;
  &lt;id name="Id" column="Id" /&gt;
  &lt;property name="FirstName" column="FirstName" /&gt;
  &lt;property name="LastName" column="LastName" /&gt;

  &lt;join table="Student_Course" optional="true" &gt;
    &lt;key column="Student_Id" /&gt;
    &lt;property name="FinalGrade" column="FinalGrade" /&gt;
  &lt;/join&gt;
&lt;/class&gt;</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mapping a column from a many to many relational table by Jane</title>
		<link>http://sbiefeld.com/2008/09/nhibernate-mapping-a-column-out-of-a-many-to-many-relational-table/comment-page-1/#comment-226</link>
		<dc:creator>Jane</dc:creator>
		<pubDate>Tue, 09 Dec 2008 05:30:42 +0000</pubDate>
		<guid isPermaLink="false">http://sbiefeld.com/?p=13#comment-226</guid>
		<description>Thank you for this example. It is exactly the issue I have been researching. Can you please explain iwhere in your mapping example the join to student is defined so we are populating the final grade not only for a particular course but for the particular student. Thank you for you time, Jane</description>
		<content:encoded><![CDATA[<p>Thank you for this example. It is exactly the issue I have been researching. Can you please explain iwhere in your mapping example the join to student is defined so we are populating the final grade not only for a particular course but for the particular student. Thank you for you time, Jane</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Slippery Slope by Sean Biefeld</title>
		<link>http://sbiefeld.com/2008/03/a-slippery-slope/comment-page-1/#comment-3</link>
		<dc:creator>Sean Biefeld</dc:creator>
		<pubDate>Thu, 13 Mar 2008 15:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://sbiefeld.com/?p=10#comment-3</guid>
		<description>Thanks for the reply.

1) The additional functionality was not implied in the requirements in any form or fashion.

2) It caused a minor delay in development efforts.

3) As far as the object model goes, it is flexible enough to be able to handle the change, the true issue is how additional functionality breaks the process that the customer wanted to lock users into.  It is more of an issue of the customer&#039;s request breaking their own business process that they wanted mirrored in the application.</description>
		<content:encoded><![CDATA[<p>Thanks for the reply.</p>
<p>1) The additional functionality was not implied in the requirements in any form or fashion.</p>
<p>2) It caused a minor delay in development efforts.</p>
<p>3) As far as the object model goes, it is flexible enough to be able to handle the change, the true issue is how additional functionality breaks the process that the customer wanted to lock users into.  It is more of an issue of the customer&#8217;s request breaking their own business process that they wanted mirrored in the application.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Slippery Slope by Derick Bailey</title>
		<link>http://sbiefeld.com/2008/03/a-slippery-slope/comment-page-1/#comment-2</link>
		<dc:creator>Derick Bailey</dc:creator>
		<pubDate>Wed, 12 Mar 2008 19:05:23 +0000</pubDate>
		<guid isPermaLink="false">http://sbiefeld.com/?p=10#comment-2</guid>
		<description>Welcome to the world of business-oriented software development. :)

This really comes down to a number of things:
1) was it &quot;implied&quot; in any of the requirements
2) how will it affect the timelines and development efforts
3) how do the project management and customers want to deal with change

1) If it was implied in any of the requirements, but not explicitly spelled out, you might be out of luck and have to do it for no additional cost. 

2) when a feature request causes this much pain for the developers and causes potential problems in the existing functionality, it&#039;s up to the developers to inform the project management of the issues so that the project management can report the issues to the customer. ultimately, it&#039;s the customer&#039;s software, but it doesn&#039;t have to be on our dime. if there is a cost associated with the change, then the customer should be willing to pony up that dime. and the customer may decide that the cost is not worth the benefit, right now, and leave it out. on the flip side of that, the project management may decide that the cost is small enough for the development company to eat.

3) change is inevitable. feature requests are inevitable. this is where Agile development efforts really come into play and help you out. i won&#039;t go into detail in a comment to a blog post, though... there are entire libraries of books written about this subject.

if the feature really does make other parts of the system fuzzy or not work entirely correctly, you may be in a situation where the object model needs to be fleshed out in a different manner. perhaps theres something in the language of the customer that has not been clearly defined in the code mode; perhaps this new feature will cause you re-clarify some existing portion of the model; the point is, you may need to look at what&#039;s going on and why, and see if there is a way that the new feature can fit into the model by changing the model in some way. Chapters 8 through 10 of Domain Driven Design discuss this in detail... i highly recommend reading the entire book, too.</description>
		<content:encoded><![CDATA[<p>Welcome to the world of business-oriented software development. <img src='http://sbiefeld.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This really comes down to a number of things:<br />
1) was it &#8220;implied&#8221; in any of the requirements<br />
2) how will it affect the timelines and development efforts<br />
3) how do the project management and customers want to deal with change</p>
<p>1) If it was implied in any of the requirements, but not explicitly spelled out, you might be out of luck and have to do it for no additional cost. </p>
<p>2) when a feature request causes this much pain for the developers and causes potential problems in the existing functionality, it&#8217;s up to the developers to inform the project management of the issues so that the project management can report the issues to the customer. ultimately, it&#8217;s the customer&#8217;s software, but it doesn&#8217;t have to be on our dime. if there is a cost associated with the change, then the customer should be willing to pony up that dime. and the customer may decide that the cost is not worth the benefit, right now, and leave it out. on the flip side of that, the project management may decide that the cost is small enough for the development company to eat.</p>
<p>3) change is inevitable. feature requests are inevitable. this is where Agile development efforts really come into play and help you out. i won&#8217;t go into detail in a comment to a blog post, though&#8230; there are entire libraries of books written about this subject.</p>
<p>if the feature really does make other parts of the system fuzzy or not work entirely correctly, you may be in a situation where the object model needs to be fleshed out in a different manner. perhaps theres something in the language of the customer that has not been clearly defined in the code mode; perhaps this new feature will cause you re-clarify some existing portion of the model; the point is, you may need to look at what&#8217;s going on and why, and see if there is a way that the new feature can fit into the model by changing the model in some way. Chapters 8 through 10 of Domain Driven Design discuss this in detail&#8230; i highly recommend reading the entire book, too.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

