User FOR - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T03:32:42Zhttp://stackoverflow.com/feeds/user/27826http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1439190/mocking-a-dataservicequerytelement2Mocking a DataServiceQuery<TElement>FOR2009-09-17T14:18:36Z2009-09-17T14:30:57Z
<p><strong>How can I mock a DataServiceQuery for unit testing purpose?</strong></p>
<p>Long Details follow:
Imagine an ASP.NET MVC application, where the controller talks to an ADO.NET DataService that encapsulates the storage of our models (for example sake we'll be reading a list of Customers). With a reference to the service, we get a generated class inheriting from DataServiceContext:</p>
<pre><code>namespace Sample.Services
{
public partial class MyDataContext : global::System.Data.Services.Client.DataServiceContext
{
public MyDataContext(global::System.Uri serviceRoot) : base(serviceRoot) { /* ... */ }
public global::System.Data.Services.Client.DataServiceQuery<Customer> Customers
{
get
{
if((this._Customers==null))
{
this._Customers = base.CreateQuery<Customer>("Customers");
}
return this._Customers;
}
}
/* and many more members */
}
}
</code></pre>
<p>The Controller could be:</p>
<pre><code>namespace Sample.Controllers
{
public class CustomerController : Controller
{
private IMyDataContext context;
public CustomerController(IMyDataContext context)
{
this.context=context;
}
public ActionResult Index() { return View(context.Customers); }
}
}
</code></pre>
<p>As you can see, I used a constructor that accepts an IMyDataContext instance so that we can use a mock in our unit test:</p>
<pre><code>[TestFixture]
public class TestCustomerController
{
[Test]
public void Test_Index()
{
MockContext mockContext = new MockContext();
CustomerController controller = new CustomerController(mockContext);
var customersToReturn = new List<Customer>
{
new Customer{ Id=1, Name="Fred" },
new Customer{ Id=2, Name="Wilma" }
};
mockContext.CustomersToReturn = customersToReturn;
var result = controller.Index() as ViewResult;
var models = result.ViewData.Model;
//Now we have to compare the Customers in models with those in customersToReturn,
//Maybe by loopping over them?
foreach(Customer c in models) //*** LINE A ***
{
//TODO: compare with the Customer in the same position from customersToreturn
}
}
}
</code></pre>
<p>MockContext and MyDataContext need to implement the same interface IMyDataContext:</p>
<pre><code>namespace Sample.Services
{
public interface IMyDataContext
{
DataServiceQuery<Customer> Customers { get; }
/* and more */
}
}
</code></pre>
<p>However, when we try and implement the MockContext class, we run into problems due to the nature of DataServiceQuery (which, to be clear, we're using in the IMyDataContext interface simply because that's the data type we found in the auto-generated MyDataContext class that we started with). If we try to write:</p>
<pre><code>public class MockContext : IMyDataContext
{
public IList<Customer> CustomersToReturn { set; private get; }
public DataServiceQuery<Customer> Customers { get { /* ??? */ } }
}
</code></pre>
<p>In the Customers getter we'd like to instantiate a DataServiceQuery instance, populate it with the Customers in CustomersToReturn, and return it. The problems I run into:</p>
<p><strong>1~</strong> DataServiceQuery has no public constructor; to instantiate one you should call CreateQuery on a DataServiceContext; see <a href="http://msdn.microsoft.com/en-us/library/cc646677.aspx" rel="nofollow">MSDN</a> </p>
<p><strong>2~</strong> If I make the MockContext inherit from DataServiceContext as well, and call CreateQuery to get a DataServiceQuery to use, the service and query have to be tied to a valid URI and, when I try to iterate or access the objects in the query, it will try and execute against that URI. In other words, if I change the MockContext as such:</p>
<pre><code>namespace Sample.Tests.Controllers.Mocks
{
public class MockContext : DataServiceContext, IMyDataContext
{
public MockContext() :base(new Uri("http://www.contoso.com")) { }
public IList<Customer> CustomersToReturn { set; private get; }
public DataServiceQuery<Customer> Customers
{
get
{
var query = CreateQuery<Customer>("Customers");
query.Concat(CustomersToReturn.AsEnumerable<Customer>());
return query;
}
}
}
}
</code></pre>
<p>Then, in the unit test, we get an error on the line marked as LINE A, because <a href="http://www.contoso.com" rel="nofollow">http://www.contoso.com</a> doesn't host our service. The same error is triggered even if LINE A tries to get the number of elements in models.
Thanks in advance.</p>
http://stackoverflow.com/questions/1081077/creating-asp-net-mvc-application-with-different-product-categories/1081125#10811251Answer by FOR for Creating ASP.NET MVC application with different product categoriesFOR2009-07-03T23:26:11Z2009-07-03T23:26:11Z<p>On one side each of these product categories might have different number and type of fields. A simple approach is then to have different controllers, each leading to different views, strongly typed to different models.
"Mortgage" would be one model, with its own fields, and its own Index, Details, Edit, and Delete Views, and a MortgageController. Similarly for Savings. This is the simplest approach to ASP.NET MVC applications, using strongly-typed views. Note that even in this scenario duplication can be removed or minimized by careful care and refactoring of the controllers (and models, and views of course).</p>
<p>However, I'd recommend analyzing the <em>behaviour</em> of each of these product types. If, in fact, they all behave the same, there are ways to get around the issue of different number or type of fields. For instance, all the different type of models could inherit a common base class, or implement a common interface (the latter might be the better of the two solutions - but it's difficult to say if you should prefer inheritance or composition in this case). These are but two options available to develop "weakly-typed" views and controllers.</p>
<p>I can't say whether you should go one way or the other from the brief description you gave, but I'm convinced the answer is in the behaviour of the models (rather than their structure). In my personal experience, models that behave the same (e.g.: they all expose the same CRUD operations) should be handled in a single manner, but behavioural differences (e.g.: different business rules to be verified when a model of a specific type is being saved) need to be handled on a one-by-one case. HTH</p>
http://stackoverflow.com/questions/1070040/how-to-rollback-a-transaction-in-entity-framework/1070134#10701342Answer by FOR for How to rollback a transaction in Entity Framework.FOR2009-07-01T16:34:47Z2009-07-01T16:34:47Z<p>I believe (but I am no long time expert in EF) that until the call to context.SaveChanges goes through, the transaction is not started. I'd expect an Exception from that call would automatically rollback any transaction it started.
Alternatives (in case you want to be in control of the transaction) [from <a href="http://oreilly.com/catalog/9780596520281/" rel="nofollow">J.Lerman's "Programming Entity Framework"</a> O'Reilly, pg. 618]</p>
<pre><code>using (var transaction = new System.Transactions.TransactionScope())
{
try
{
context.SaveChanges();
transaction.Complete();
context.AcceptAllChanges();
}
catch(OptimisticConcurrencyException e)
{
//Handle the exception
context.SaveChanges();
}
}
</code></pre>
<p>or</p>
<pre><code>bool saved = false;
using (var transaction = new System.Transactions.TransactionScope())
{
try
{
context.SaveChanges();
saved = true;
}
catch(OptimisticConcurrencyException e)
{
//Handle the exception
context.SaveChanges();
}
finally
{
if(saved)
{
transaction.Complete();
context.AcceptAllChanges();
}
}
}
</code></pre>
http://stackoverflow.com/questions/288190/tortoisesvn-ignoring-files-within-a-folder-already-in-the-repository/288196#2881961Answer by FOR for TortoiseSVN - Ignoring files within a folder already in the repositoryFOR2008-11-13T20:37:10Z2008-11-13T20:37:10Z<p>Perhaps this can help you: in the Commit dialog there's a check box to "Show unversioned files". It's not the same as telling Tortoise/SVN to ignore them but might just do the trick. HTH</p>
http://stackoverflow.com/questions/283949/what-enhancements-do-you-want-for-your-programming-language/284106#2841060Answer by FOR for What enhancements do you want for your programming language?FOR2008-11-12T14:32:35Z2008-11-12T14:32:35Z<p>Multiple Inheritance (for C#). Yes, I know it's a pain for the compiler/interpreter developers, but hell, I'd like to have it available.</p>
http://stackoverflow.com/questions/269730/tests-projects-in-solution/269739#2697397Answer by FOR for Tests Projects In SolutionFOR2008-11-06T18:23:04Z2008-11-07T15:29:23Z<p>In our current project we decided to put all unit tests in separate projects. The application code and tests are in the same solution, but at least we can build (and deploy) a version without the unit test code.</p>
<p>The downside of this -so far- has been that sometimes your unit tests can't reach certain members of the application code (protected and internals), but that usually lead us to discover that our design could be improved.</p>
<p>And I guess I should point out a similar thread <a href="http://stackoverflow.com/questions/271808/write-unit-tests-into-an-assembly-or-in-a-separate-assembly">Here</a> with more answers on the same/similar topic.</p>
http://stackoverflow.com/questions/272345/how-do-you-evaluate-reliability-in-software/272383#2723831Answer by FOR for How do you evaluate reliability in software?FOR2008-11-07T15:16:02Z2008-11-07T15:16:02Z<p>Well, the keyword 'reliable' can lead to different answers... When thinking of reliability, I think of two aspects:
1~ always giving the right answer (or the best answer)
2~ always giving the same answer</p>
<p>Either way, I think it boils down to some repeatable tests. If the application in question is not built with a string suite of unit and acceptance tests, you can still come up with a set of manual or automated tests to perform repeatedly.</p>
<p>The fact that the tests always return the same results will show that aspect #2 is taken care of. For aspect #1 it really is up to the test writers: come up with good tests that would expose bugs or imperfections.</p>
<p>I can't be more specific without knowing what the application is about, sorry. For instance, a messaging system would be reliable if messages were always delivered, never lost, never contain errors, etc etc... a calculator's definition of reliability would be much different.</p>
http://stackoverflow.com/questions/263273/what-is-the-most-poorly-named-application-out-there/263298#26329812Answer by FOR for What is the most poorly named application out there?FOR2008-11-04T20:23:28Z2008-11-04T20:23:28Z<p><a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a></p>
<p>yes, I realize it's because we're using it vs a large, and I mean large, and long-standing repository, and I do realize that the name is not lying to me, but still...</p>
http://stackoverflow.com/questions/256047/debugging-is-a-bad-smell-how-to-persuade-them8Debugging is a bad smell - how to persuade them ?FOR2008-11-01T20:13:12Z2008-11-04T01:14:20Z
<p>I've been working on a project that can't be described as 'small' anymore (40+ months), with a team that can't be defined as 'small' anymore (~30 people). We've been using Agile/Scrum (1) practices all along, and a healthy dose of TDD.</p>
<p>I'm not sure if I picked this up from Agile or TDD, more likely a combination of the two, but I'm now clearly in the camp of people that looks at debugging as a bad smell. By 'debugging' I'm not referring to the more abstract concept of figuring out what might be wrong with the system, but the specific activity of running the system in Debug mode, stepping through the code to figure out details that are otherwise inscrutable.</p>
<p><strong>Since I'm fairly convinced, this question is not about whether debugging is a bad smell or not. Rather, I'd like to know how I can persuade my team-mates about this.</strong></p>
<p>People that believe debugging mode is the 'standard' mode tend to write code that can be understood only by debugging through it, which leads to a lot of time wasted since every time you work an item on top of code developed by someone else, you get to first spend a considerable amount of time debugging it (and, since there's no bug involved.. the term is becoming increasingly ridiculous) - and then silos happen. So I'd love to convince a few of my team-mates that avoiding debug mode is a Good Thing (2). Since they are used to live in Debug mode, however, they don't seem to see the problem; to them, spending hours debugging someone else code before they even start doing anything related to their new item is the norm; they don't see anything wrong with it. Plus, as they spend time 'figuring it out' they know eventually the developer that worked that area will become available and the item will be passed on to them (leading to yet another silo).</p>
<p>Help me come up with a plan to turn them from the Dark Side !</p>
<p><strong><em>Thanks in advance.</em></strong></p>
<p>(1) Also referred to as SCRUM (all caps). Capitalization arguments aside, I think an asterisk after the term must be used since - unsurprisingly - our organization 'tweaked' the Agile and Scrum process to fit the perceived needs of all stakeholders involved. So, in all honesty, I won't pretend this has been 100% according to theory, but that's beside the point of my question.</p>
<p>(2) Yes, there will always be times when we'll <em>have</em> to get in debug mode, I'm not trying to absolutely avoid it, just.. trying to minimize the number of times we have to dive into it.</p>
http://stackoverflow.com/questions/254009/in-c-add-quotes-around-string-in-a-comma-delimited-list-of-strings/254012#25401210Answer by FOR for In C#: Add Quotes around string in a comma delimited list of stringsFOR2008-10-31T15:57:53Z2008-10-31T16:06:16Z<pre><code>string s = "A,B,C";
string replaced = "'"+s.Replace(",", "','")+"'";
</code></pre>
<p>Thanks for the comments, I had missed the external quotes.</p>
<p>Of course.. if the source was an empty string, would you want the extra quotes around it or not ? And what if the input was a bunch of whitespaces... ? I mean, to give a 100% complete solution I'd probably ask for a list of unit tests but I hope my gut instinct answered your core question.</p>
http://stackoverflow.com/questions/253410/fieldsets-and-legends/253423#2534231Answer by FOR for Fieldsets and legendsFOR2008-10-31T13:19:08Z2008-10-31T13:19:08Z<p>When you say that the legend "It's being displayed as a title".. clearly it depends on the CSS involved. When you don't specify CSS yourself, each browser uses its own built-in styles, which may or may not be the best thing ever.</p>
<p>I agree that a legend is different than a title... I don't necessarily think that the legend is the right place for something like "* = required" (that seems just a cautionary piece of information for the user, not really an explanation of the fieldset itself). </p>
<p>A legend, after all, can be defined as a caption, or brief description accompanying an illustration (usually; something other than an image in this case).</p>
<p>As far as how it gets displayed, again, CSS gives you power to make it appear (or not) as you see fit.</p>
http://stackoverflow.com/questions/253312/why-wont-this-xhtml-form-validate/253348#2533482Answer by FOR for Why won't this XHTML form validate?FOR2008-10-31T12:39:43Z2008-10-31T12:39:43Z<p>As someone else put it:</p>
<p>[quote]
The validator is telling you that your hidden input element cannot immediately follow the form tag - it needs to have a container element of some kind.
[/quote]</p>
<p>(<a href="http://www.webmasterworld.com/forum21/9223.htm" rel="nofollow">Source</a>)</p>
<p>I guess a fieldset could help; See <a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" rel="nofollow">The XHTML DTD</a>:</p>
<pre><code><!ELEMENT form %form.content;>
<!ENTITY % form.content "(%block; | %misc;)*">
<!ENTITY % misc "noscript | %misc.inline;">
<!ENTITY % misc.inline "ins | del | script">
<!ENTITY % block "p | %heading; | div | %lists; | %blocktext; | fieldset | table">
<!ENTITY % heading "h1|h2|h3|h4|h5|h6">
<!ENTITY % lists "ul | ol | dl">
<!ENTITY % blocktext "pre | hr | blockquote | address">
</code></pre>
<p>No input for you :(</p>
http://stackoverflow.com/questions/252396/what-are-terms-used-to-describe-the-act-of-solving-a-bug/252413#2524132Answer by FOR for What are terms used to describe the act of solving a bug?FOR2008-10-31T01:59:09Z2008-10-31T01:59:09Z<p>"I turned the tests green" usually preceeded by "We added the missing tests".</p>
http://stackoverflow.com/questions/251209/validation-in-the-middle-tier/251268#2512681Answer by FOR for Validation in the middle tierFOR2008-10-30T18:37:54Z2008-10-30T18:37:54Z<p>The approach you suggest seems to indicate that the set of validation should not be applied always. Which is ok. I've seen plenty of rules and validations we want 'most of the times' but not really always. So, the question becomes 'when do you want these validations to apply' ?</p>
<p>Say that, for instance, you have some validations you <em>always</em> want to apply and some you want to verify only when... I don't know.. you're about to save to the storage (database).
In that case, the checks that apply always should be in the properties (see more on this below), and those that apply only when you're about to save to the storage should be in a method (maybe named along the lines of 'VerifyRulesForStorage') that will be called when appropriate (e.g. in the middle of your 'SaveToStorage' method).</p>
<p>One thing worth considering, I think, is the duplication you risk incurring when you have the same validation across multiple entities. Be it in the property, or in a 'VerifyRulesForStorage' method, it is likely that you'll have the same check (e.g.: String.IsNullOrEmpty, or CheckItsANumber, or CheckItsOneOfTheAcceptedValues, etc etc) in many places, across many classes.
Of course, you can resolve this via inheritance (e.g. all your entities inherit from a base Entity class that has methods implementing each type of check), or composition (probably a better approach, so that your entities' class tree is driven by other, more appropriate, considerations, e.g.: all your entities have a Validator object that implements all those checks).
Either way, you might want to stay away from static methods, cine they tend to create problematic situations if you are Test-Driven (there are ways around, when needed).</p>
<p>In our system, we actually have metadata describing the validation rules. The class' property name is used to retrieve the proper metadata, which then tells the system which rules to apply. We then have a validator object that instantiates the proper type of object to actually perform the validation, through a factory (e.g. we have one class implementing the IsRequiredString rule, one implementing the IsNumber rule, etc etc). Sounds like a lot of complexity, but, in a lrge system like ours, it was definitely worth it.</p>
<p>Finally, the off-the-shelves libraries out there might be a good alternative. In our case they weren't because of particular requirements we had - but in general.. there are benefits in using a wheel someone else has developed (and will support) over building your own (trust me, I love to rebuild wheels when I can.. I'm just saying there are cases where each approach is better than the other).</p>
http://stackoverflow.com/questions/250175/writing-my-own-auto-updater/250210#2502105Answer by FOR for Writing my own Auto UpdaterFOR2008-10-30T13:41:10Z2008-10-30T13:54:29Z<p>Ok, first of all, if one of the installer/updater products out on the market fits your need, you should probably use those.
That being said, I've had the pleasure of building a system like this myself not long ago.
Yes, our installer/updater included two partions on the client side so that:</p>
<p>~ Part A would connect to the servers where the latest version is stored and published; if a newer version of Part B was available, it would download it and kick it off</p>
<p>~ Part B would focus on installing/updating the actual application (and could download and install updates to Part A).</p>
<p>Aside from that, I'd recommend always consideriung the following 4 operations in the installer/updater:</p>
<ul>
<li><p>Install and Uninstall</p></li>
<li><p>Update and Rollback (i.e. undo the last update)</p></li>
</ul>
<p>The Rollback one is critical when your users have a system that automatically updates overnight.. if an update every messes up, they can rollback and continue working while you fix the issue.</p>
<p>Finally, the installer/updater should try and be agnostic about the application it installs/updates, so that, when that application changes, the installer/updater system is impacted the least possible amount.</p>
http://stackoverflow.com/questions/244416/best-examples-of-data-visualisation/244420#2444205Answer by FOR for Best examples of data visualisation?FOR2008-10-28T19:00:07Z2008-10-28T19:00:07Z<p><a href="http://infosthetics.com/" rel="nofollow">Information Aesthetics</a>'s feed is on my home page and has been the source of many interesting visualizations since I've placed it there.</p>
http://stackoverflow.com/questions/243153/straw-poll-kr-vs-bsd/243159#2431590Answer by FOR for Straw Poll - K&R vs BSDFOR2008-10-28T12:55:01Z2008-10-28T12:55:01Z<p>I'm one for the BSD style.</p>
http://stackoverflow.com/questions/240525/how-did-you-learn-to-program/240532#24053211Answer by FOR for How did you learn to program?FOR2008-10-27T16:35:12Z2008-10-27T16:35:12Z<p>Practice it. I think that's the single most important thing to do in order to learn development. Was it Aristotle that said "We learn by doing" ?</p>
<p>And, if I may add a second recommendation, get used to change. Learn something (e.g. a programming language), and then introduce change (e.g.: learn a different programming language). This works on many levels. For instance, when you're reading a programming book, and you do its exercises, always try and do the exercise in more than one way.. or, when you learn new topics from later chapters, try and go back to earlier chapters and see if the new concepts could be applied to earlier exercises. Dealing with changes (in the technology, in the requirements, etc) is a major part of the software development experience.</p>
http://stackoverflow.com/questions/239725/c-webrequest-class-and-headers/239736#2397361Answer by FOR for c# WebRequest class and headersFOR2008-10-27T12:37:59Z2008-10-27T12:42:59Z<p><a href="http://msdn.microsoft.com/en-us/library/system.net.webrequest(VS.71).aspx" rel="nofollow">WebRequest</a> being abstract (and since any inheriting class must override the Headers property).. which concrete WebRequest are you using ? In other words, how do you get that WebRequest object to beign with ?</p>
<p>ehr.. mnour answer made me realize that the error message you were getting is actually spot on: it's telling you that the header you are trying to add already exist and you should then modify its value using the appropriate property (the indexer, for instance), instead of trying to add it again. That's probably all you were looking for.</p>
<p>Other classes inheriting from WebRequest might have even better properties wrapping certain headers; See <a href="http://weblogs.asp.net/cazzu/archive/2007/07/30/setting-http-headers-in-net-this-header-must-be-modified-using-the-appropriate-property.aspx" rel="nofollow">this post</a> for instance.</p>
http://stackoverflow.com/questions/235738/do-we-need-to-become-craftsmen-instead-of-engineers/235751#2357510Answer by FOR for Do we need to become craftsmen instead of engineers?FOR2008-10-25T01:38:15Z2008-10-25T01:38:15Z<p>Definitely. Craftsmanship is the next level. Of course it's a personal decision, but.. there, you can see on which side of the fence I stand.</p>
http://stackoverflow.com/questions/234388/generating-a-deck-of-cards/234414#2344142Answer by FOR for Generating a Deck of CardsFOR2008-10-24T17:06:35Z2008-10-24T17:32:54Z<p>As mentioned by others, you can use 'T' for ten, J, Q, and K for the figures.
As far as push_back.. since deck is a vector of chars, you can pass only one char to push_back as argument. Passing both the card value (1...9, T, J, Q, K) and its suite doesn't work.</p>
<p>I personally would create a little struct, to represent a Card, with a Value and a Suite property. Then, you can make your deck a vector of Cards .</p>
<p>Edited: fixing last word since vector (less-than) Card (greater-than) was rendered as vector (nothing).</p>
http://stackoverflow.com/questions/233243/how-to-check-that-a-string-is-a-palindrome-using-regular-expressions/233275#2332755Answer by FOR for How to check that a string is a palindrome using regular expressions?FOR2008-10-24T12:22:36Z2008-10-24T12:22:36Z<p><a href="http://dirac.org/linux/misc/regex.html" rel="nofollow">Here's</a> one to detect 4-letter palindromes (e.g.: deed), for any type of character:</p>
<pre><code>\(.\)\(.\)\2\1
</code></pre>
<p><a href="http://www.grymoire.com/Unix/Regular.html#uh-10" rel="nofollow">Here's</a> one to detect 5-letter palindromes (e.g.: radar), checking for letters only:</p>
<pre><code>\([a-z]\)\([a-z]\)[a-z]\2\1
</code></pre>
<p>So it seems we need a different regex for each possible word length.
<a href="http://mail.python.org/pipermail/python-list/2003-November/236316.html" rel="nofollow">This post</a> on a Python mailing list includes some details as to why (Finite State Automata and pumping lemma).</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/215025#2150250Answer by FOR for Should I agree to ban the "using" directive from my c# projects?FOR2008-10-18T13:16:20Z2008-10-18T13:16:20Z<p>Instead of 'copy-n-paste' I call it 'copy-n-rape' because the code is abused 99.9% of the times when it is put through this process. So there, that's my answer to your colleague's #1 justification for that approach.</p>
<p>On a side note, tools like Resharper will add the using statements at the top when you add code that needs them to your code (so even if you 'copy-n-rape' code like that you can do so easily).</p>
<p>Personal preferences aside, I think your justifications are much more valuable than his, so even assuming they are all valid points, I'd still reccomend writing the using statements at the top. I would not make it a 'ban' though, since I see coding standard as guidelines rather than rules. Depending on your team size it might be very hard to enforce things like that (or how many spaces for indentation, or indentation styles, etc etc).</p>
<p>Make it a guideline so that all the other developers feel free to replcae the fully qualified names with the shorter versions and, over time, the code base will fall in line with the guideline. Keep an eye out for people taking time away from doing work to simply change all the occurrences of one style to the other - 'cause that's not very productive if you're not doing anything else.</p>
http://stackoverflow.com/questions/212442/how-to-create-a-for-loop-like-command-in-c/212460#2124600Answer by FOR for How to create a for loop like command in C++ ?FOR2008-10-17T14:47:49Z2008-10-17T14:53:01Z<pre><code>void DoSomethingRepeatedly(int numTimesTo Loop)
{
for(int i=0; i<numTimesToLoop; i++)
{
//do whatever;
}
}
</code></pre>
<p>That it ? That can't be.. too simple.. I must be misunderstanding your question :(
Of course you'd have to check that the value of numTimesToLoop is >= 0.</p>
<p>Edit: I made it a method, just in case.</p>
http://stackoverflow.com/questions/212039/what-should-students-be-taught-first-when-first-learning-sorting-algorithms/212078#2120780Answer by FOR for What should students be taught first when first learning sorting algorithms?FOR2008-10-17T13:19:51Z2008-10-17T13:19:51Z<p>I'd teach Bubble sort if I had to pick only one, since it's simpler to grasp (I think). However, the most valuable thing I got out of studying the various sorting algorithms was that there's more than one way to do it (which eventually led me to Perl, but that's another story), each with advantages and drawbacks. So, learning a single sorting algorithm might be a way to miss the critical aspect of the whole thing.</p>
http://stackoverflow.com/questions/212027/where-are-the-business-rules-in-mvc/212060#2120606Answer by FOR for Where are the Business Rules in MVCFOR2008-10-17T13:15:57Z2008-10-17T13:15:57Z<p>At first brush, I'd say they belong in the model. The <a href="http://en.wikipedia.org/wiki/Model-view-controller" rel="nofollow">MVC Entry on Wikipedia</a> seems to agree: "In MVC, the model represents the information (the data) of the application and the business rules used to manipulate the data".
After all, by 'Business rules' we mean the functional algorithms and logic that encode the domain that your application is involved with, as opposed to input/output related logic. These core business-related logic does not - or should not- change based upon what is being displayed to the user (which is the domain of the View) or the user input (which is primarily received by the Controller).</p>
<p>In my experience, asking this sort of question has been very revealing during the software development process: we found a large number of things that were considered 'business rules' by some people, but turned out to be something else. If it is not a true business rule, it might not belong to the model.</p>
http://stackoverflow.com/questions/208791/what-is-your-most-wanted-non-existent-or-underdeveloped-open-source-project/208930#2089300Answer by FOR for What is your most wanted non-existent or underdeveloped open source project?FOR2008-10-16T15:05:37Z2008-10-16T15:05:37Z<p>A better editor for <a href="http://www.fitnesse.org/" rel="nofollow">FitNesse</a> pages; their edit mode is very very rudimentary right now and I think it's one of the top 3 entry barriers to using the tool for less technically inclined users.</p>
http://stackoverflow.com/questions/204603/nightly-builds-why-should-i-do-it/204634#2046345Answer by FOR for Nightly Builds: Why should I do it?FOR2008-10-15T13:07:33Z2008-10-15T13:07:33Z<p>I'd actually recommend to do builds every time you check in. In other words, I'd recommend setting up a Continuous Integration system.</p>
<p>The advantages of such a system and other details can be found <a href="http://martinfowler.com/articles/continuousIntegration.html" rel="nofollow">in Fowler's article</a> and <a href="http://en.wikipedia.org/wiki/Continuous_Integration" rel="nofollow">on the Wikipedia entry</a> among other places.</p>
<p>In my personal experience, it's a matter of Quality Control: every time code (or tests, which can be seen as a form of requirements) are modified, bugs might be creeping in. To ensure quality you should make a fresh build of the product as it would be shipped and perform all the tests available. The more often this is done, the less likely bugs will be allowed to form a colony. Therefore, daily (nightly) or continuous cycles are preferred.</p>
<p>In addition, whether you restrict access o your project to developers or a larger group of users, a nightly build enables everyone to be on the 'latest version', minimizing the pain of merging their own contributions back into the code.</p>
http://stackoverflow.com/questions/201183/how-do-you-determine-equality-for-two-javascript-objects/201249#2012490Answer by FOR for How do you determine equality for two JavaScript objects?FOR2008-10-14T13:54:31Z2008-10-14T14:05:37Z<p>Depends on what you mean by equality. And therefore it is up to you, as the developer of the classes, to define their equality.</p>
<p>There's one case used sometimes, where two instances are considered 'equal' if they point to the same location in memory, but that is not always what you want. For instance, if I have a Person class, I might want to consider two Person objects 'equal' if they have the same Last Name, First Name, and Social Security Number (even if they point to different locations in memory).</p>
<p>On the other hand, we can't simply say that two objects are equal if the value of each of their members is the same, since, sometimes, you don't want that. In other words, for each class, it's up to the class developer to define what members make up the objects 'identity' and develop a proper equality operator (be it via overloading the == operator or an Equals method).</p>
<p>Saying that two objects are equal if they have the same hash is one way out. However you then have to wonder how the hash is calculated for each instance. Going back to the Person example above, we could use this system if the hash was calculated by looking at the values of the First Name, Last Name, and Social Security Number fields. On top of that, we are then relying on the quality of the hashing method (that's a huge topic on its own, but suffice it to say that not all hashes are created equal, and bad hashing methods can lead to <em>more</em> collisions, which in this case would return false matches).</p>
http://stackoverflow.com/questions/201033/entity-perspectives/201076#2010762Answer by FOR for Entity PerspectivesFOR2008-10-14T13:07:06Z2008-10-14T13:07:06Z<p>I don't think you should try and predefine the 'core domain' up front. Let it emerge over the development process. Additionally, anything that is not common to the 2 (or more) perspectives should not be in the 'core'.</p>
<p>For instance, build a portion of the system from the employeer perspective. This might prompt you to create entities like 'Project', 'Task', and 'Customer'. Then build a portion from the employeer perspective. This might prompt you to build new entities, and to reuse 'Project' and 'Task'. That's when I'd move 'Project' and 'Task' to the 'core library' shared by the rest of the system.</p>
<p>Sometimes you'll find common entities, but related in different ways. In that case the relationship should be injected by the context instead of being built-in with the entities themselves.</p>
http://stackoverflow.com/questions/1439190/mocking-a-dataservicequerytelement/1439263#1439263Comment by FOR on Mocking a DataServiceQuery<TElement>FOR2009-10-15T14:40:36Z2009-10-15T14:40:36ZMarking this as the answer since the team decided to use a mocking framework (finally)http://stackoverflow.com/questions/1439190/mocking-a-dataservicequerytelement/1439263#1439263Comment by FOR on Mocking a DataServiceQuery<TElement>FOR2009-09-17T15:45:49Z2009-09-17T15:45:49ZIn general, no specific reason. We might introduce it, but it's unlikely we'll do it overnight for this specific task. So, let's say that for now we'd like to find a solution without adding a mocking framework.http://stackoverflow.com/questions/1439190/mocking-a-dataservicequerytelement/1439263#1439263Comment by FOR on Mocking a DataServiceQuery<TElement>FOR2009-09-17T14:36:51Z2009-09-17T14:36:51ZDror, thanks for the idea, but for the time being we're not using any mocking framework. We'd be interested in seeing if there is a solution that doesn't rely on one. Still, thank youhttp://stackoverflow.com/questions/1081085/div-layout-repeating-image-helpComment by FOR on Div Layout - Repeating image helpFOR2009-07-03T23:34:04Z2009-07-03T23:34:04ZI think I see it now. You mean the place where the "notebook-Content.png" image 'connects' with the "notebook-Bottom.png" image towards the bottom of the page? Hmmm - haven't solved that type of problem before, sorry - if I some up with something I'll post. http://stackoverflow.com/questions/1081101/should-business-objects-contain-objects-or-references/1081117#1081117Comment by FOR on Should business objects contain objects or references?FOR2009-07-03T23:29:34Z2009-07-03T23:29:34ZI've been very happy with this approach in the last few years. Perhaps it has something to do with the fact that it allows me to inject dependencies (<a href="http://en.wikipedia.org/wiki/Dependency_injection" rel="nofollow">en.wikipedia.org/wiki/Dependency_injection</a>) at run-time.http://stackoverflow.com/questions/1081085/div-layout-repeating-image-helpComment by FOR on Div Layout - Repeating image helpFOR2009-07-03T23:12:56Z2009-07-03T23:12:56ZI accessed the page and the image did not look 'cut-off'. It might be you are facing a browser-specific issue.. I was using Firefox 3.0.10 In what browser do you see the image cut-off? Also, consider a reset stylesheet to minimize cross-browser differences.http://stackoverflow.com/questions/1070040/how-to-rollback-a-transaction-in-entity-framework/1070134#1070134Comment by FOR on How to rollback a transaction in Entity Framework.FOR2009-07-02T11:38:16Z2009-07-02T11:38:16ZIn essence, I believe you get transaction rollback for free in the simple scenario, and that you will need to handle transactions as demonstrated in the two examples for more complex scenarios. Your sample app seems to confirm this.
Sorry if my wording was less than stellar - was in-between meetings when I wrote this yesterday.http://stackoverflow.com/questions/263273/what-is-the-most-poorly-named-application-out-there/263298#263298Comment by FOR on What is the most poorly named application out there?FOR2008-11-13T20:44:12Z2008-11-13T20:44:12ZMore than 33,000 revisions, over about 3.5 years; the local copy clocks in at 5.5 GB for 67,000+ files (admittedly, that includes the compiled version of the app which is not on svn).http://stackoverflow.com/questions/269730/tests-projects-in-solution/269751#269751Comment by FOR on Tests Projects In SolutionFOR2008-11-06T19:11:22Z2008-11-06T19:11:22ZWe went through that, and, at some point, we split what used to be a single solution with over 60 projects into 2 or 3 solutions. The test projects are still in the same solution as the application code they test though.http://stackoverflow.com/questions/269730/tests-projects-in-solution/269739#269739Comment by FOR on Tests Projects In SolutionFOR2008-11-06T18:49:47Z2008-11-06T18:49:47Zcfeduke: thanks for pointing me to InternalsVisibleToAttribute!http://stackoverflow.com/questions/263273/what-is-the-most-poorly-named-application-out-there/263298#263298Comment by FOR on What is the most poorly named application out there?FOR2008-11-06T16:08:18Z2008-11-06T16:08:18ZThanks for the suggestion Joeri; I've switched and will see how it turns out.http://stackoverflow.com/questions/256047/debugging-is-a-bad-smell-how-to-persuade-them/260517#260517Comment by FOR on Debugging is a bad smell - how to persuade them ?FOR2008-11-04T16:20:56Z2008-11-04T16:20:56ZGood point - my intent was to sidestep that issue since I believe <i>I</i> can't make them want to be more productive. But maybe, I can convince them to do things that make their life easier (like developing a system that doesn't require code-stepping).http://stackoverflow.com/questions/256047/debugging-is-a-bad-smell-how-to-persuade-them/256827#256827Comment by FOR on Debugging is a bad smell - how to persuade them ?FOR2008-11-02T13:18:10Z2008-11-02T13:18:10ZAh.. direct, practical, concrete experience of the issue at hand - thank you for sharing; this sort of things might help me and my team out!http://stackoverflow.com/questions/256047/debugging-is-a-bad-smell-how-to-persuade-them/256668#256668Comment by FOR on Debugging is a bad smell - how to persuade them ?FOR2008-11-02T11:25:59Z2008-11-02T11:25:59Z+1 Thank you; much to ponder, and some good links !http://stackoverflow.com/questions/256047/debugging-is-a-bad-smell-how-to-persuade-them/256067#256067Comment by FOR on Debugging is a bad smell - how to persuade them ?FOR2008-11-01T22:59:41Z2008-11-01T22:59:41ZThanks for the added ideas. Increased involvement in the architectural decisions, in particular, might apply to our team and lead to some good introspection. Thanks!