User Jon Limjap - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T01:52:17Zhttp://stackoverflow.com/feeds/user/372http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1844990/adding-a-list-item-within-another-list/1845015#18450150Answer by Jon Limjap for Adding a list item within another listJon Limjap2009-12-04T05:20:43Z2009-12-04T05:20:43Z<p>What you do have is an add function in your <code>Order.OrderItems</code> property:</p>
<pre><code>newOrder.OrderItems.Add(newItem);
</code></pre>
<p>you can even add a whole list of items to your OrderItems:</p>
<pre><code>var someList = new List<Items>();
//populate someList here
newOrder.OrderItems.AddRange(someList);
</code></pre>
http://stackoverflow.com/questions/43320/nhibernate-isession-flush-where-and-when-to-use-it-and-why19NHibernate ISession Flush: Where and when to use it, and why?Jon Limjap2008-09-04T08:04:04Z2009-11-16T15:56:50Z
<p>One of the things that get me thoroughly confused is the use of session.Flush,in conjunction with session.Commit, and session.Close.</p>
<p>Sometimes session.Close works, e.g., it commits all the changes that I need. I know I need to use commit when I have a transaction, or a unit of work with several creates/updates/deletes, so that I can choose to rollback if an error occurs.</p>
<p>But sometimes I really get stymied by the logic behind session.Flush. I have seen examples where you have a session.SaveOrUpdate() followed by a flush, but when I remove Flush it works fine anyway. Sometimes I run into errors on the Flush statement saying that the session timed out, and removing it made sure that I didn't run into that error.</p>
<p>Does anyone have a good guideline as to where or when to use a Flush? I've checked out the NHibernate documentation for this, but I still can't find a straightforward answer.</p>
http://stackoverflow.com/questions/1408846/development-experience-with-netsuite0Development experience with NetSuiteJon Limjap2009-09-11T03:34:09Z2009-11-12T17:58:02Z
<p>I've been in discussions with a potential employer with regards to an opportunity wherein their main development framework is NetSuite.</p>
<p>The terms of the project, or so I've told, is that they're in the middle of a project that has to be released by the end of the year (for reference it is September: target release is December). Without revealing too much, the project is an e-commerce site for a media network.</p>
<p>While the opportunity sounds interesting in some respects, I have absolutely no familiarity or idea of how NetSuite works so I'd like to ask for comments, especially regarding the following points:</p>
<ul>
<li>Is <a href="http://stackoverflow.com/questions/228265/netsuite-woes-is-there-decent-reference-anywhere">NetSuite really that badly documented</a>?</li>
<li>How easy (or hard) would it be to learn it from whatever available code or online examples?</li>
<li>How big/small and active is the online community? Will it be possible to get prompt responses regarding the framework online?</li>
<li>Is there any ability to put up unit tests for it?</li>
</ul>
<p>Perhaps you could help me on whether to even entertain this opportunity or not.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1641458/implementing-two-interfaces-or-not/1641467#16414670Answer by Jon Limjap for Implementing two interfaces or not?Jon Limjap2009-10-29T03:33:13Z2009-10-29T03:33:13Z<p>Whether you do this as an interface or as a regular class this won't compile because you have two methods with the same name with the same parameterless signature.</p>
<p>Besides, returning method results using two very different types have really bad design implications.</p>
http://stackoverflow.com/questions/1543269/what-do-you-find-to-be-difficult-and-frustrating-about-managing-software-developm/1543295#15432954Answer by Jon Limjap for What do you find to be difficult and frustrating about managing software development?Jon Limjap2009-10-09T11:44:27Z2009-10-09T11:44:27Z<p>Optimistic schedules drawn up by management, even when you've told them already that it's impossible.</p>
http://stackoverflow.com/questions/1538487/gracefully-upgrading-a-website/1538519#15385190Answer by Jon Limjap for gracefully upgrading a websiteJon Limjap2009-10-08T15:22:16Z2009-10-08T15:22:16Z<p>I think that, whichever way you go with this, it is absolutely necessary to have the full cooperation of your web hosting and domain name provider.</p>
<p>A rough procedure would be to:</p>
<ol>
<li>Rent a new server with a different IP address, which will be where you'll deploy the new site. Or if possible, create a test subdomain within your site that is inaccessible to the public.</li>
<li>Deploy your site in the new server/subdomain. Perform all necessary testing with your new site using the IP or your subdomain first.</li>
<li>When you're sure everything is okay, issue redirects first to your new server/subdomain.</li>
<li>Redirect your DNS to the new IP address, or fix it in such a way that you can make your main domain now point to the original location of the subdomain.</li>
</ol>
<p>Ideally nobody would even notice that your site was down, or if it has down time, it will only last a few minutes.</p>
http://stackoverflow.com/questions/681829/generally-writing-code-what-practices-do-you-apply-when-is-enough-enough/681906#6819061Answer by Jon Limjap for Generally Writing Code - What practices do you apply? When is enough enough?Jon Limjap2009-03-25T14:43:55Z2009-10-08T10:56:40Z<p>This is a really difficult question to answer, but there are two things that matter to me, which I feel best answers it anyway:</p>
<ul>
<li><strong>My code works to spec</strong> - which means that whatever requirement is needed is fulfilled, regardless if my code looks like it's made by a novice or by a seasoned expert</li>
<li><strong>My code is maintainable</strong> - which means that it could easily be understood, read, and modified by <em>other developers</em>, which is what professional software developers do most of the time (reading other developers' code, that is).</li>
</ul>
<p>Needless to say there are many, many ways to achieve both these ends. Right now what I am applying is <a href="http://en.wikipedia.org/wiki/Test-driven%5Fdevelopment" rel="nofollow">Test Driven Development</a>, which allows me to both check if my code works to spec and allows me to design my code in a very maintainable way.</p>
<p>Needless to say it's not the only way, there are a lot of other ways to achieve these goals.</p>
<p>The fact however, that you are asking this question, indicates that half of the job of making you a great developer is done.</p>
<p><strong>UPDATE</strong> Looking back at this question, I'd like to recommend the article <a href="http://www.butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod" rel="nofollow">The Principles of OOD(Object-Oriented Design)</a>, which introduced the SOLID Principles, most of which are highly applicable to even non-OOP styles of software development.</p>
http://stackoverflow.com/questions/10688/best-tool-for-auto-generating-sql-change-scripts-for-sql-server10Best tool for auto-generating SQL change scripts for SQL ServerJon Limjap2008-08-14T05:10:36Z2009-10-03T09:01:32Z
<p>I'm doing a survey for the best SQL change script generators out there, specifically for MS SQL Server.</p>
<p>I do know of <a href="http://www.red-gate.com/products/SQL_Compare/index.htm" rel="nofollow">Redgate SQL Compare</a>, but I'd like to know what others use, and if there are free versions of such software that I could try.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1486420/how-can-i-enhance-the-aesthetics-of-an-ugly-windows-form-packed-with-too-many-ne/1486633#14866332Answer by Jon Limjap for How can I enhance the aesthetics of an ugly windows form packed with too many (necessary) features?Jon Limjap2009-09-28T11:44:38Z2009-09-28T11:44:38Z<blockquote>
<p>The thing is that none of the options
can be removed (those who can have
already been), and that they must all
be visible at a glance (i.e. no tabs
allowed)</p>
</blockquote>
<p>Sigh. I would argue that, because everything is visible at a glance, they practically become invisible in a sea of controls.</p>
<p>That being said, the ff (yes another list) are my suggestions:</p>
<ul>
<li>To reduce clutter, make the overall form bigger, and all controls more widely spaced apart in all directions</li>
<li>Standardize the height of the controls, e.g., textboxes must all have same height, buttons all have same height, etc</li>
<li>Align labels with text boxes more consistently</li>
<li>Make the layout flow down instead: 1 column, with each group having the same width as all other groups</li>
<li>Set all group box names in <strong>bold</strong> to make them stand out</li>
<li>Put all those "wGetStart.bat" commands in a group of its own</li>
</ul>
<p>If you really want to learn more about making it "flow", with or without getting rid of all this "visible" information, you might wanna get a copy of <a href="http://rads.stackoverflow.com/amzn/click/0789723107" rel="nofollow">Steve Krug's Don't Make Me Think</a>:</p>
<p><img src="http://ecx.images-amazon.com/images/I/4189W8B2NXL.%5FSL500%5FAA240%5F.jpg" alt="Steve Krug Don't Make Me Think" /></p>
http://stackoverflow.com/questions/1486153/is-it-code-smelly-to-have-empty-classes-in-the-middle-of-a-class-hierarchy/1486178#14861782Answer by Jon Limjap for Is it code-smelly to have empty classes in the middle of a class hierarchy?Jon Limjap2009-09-28T09:34:58Z2009-09-28T09:34:58Z<p>Yup, definitely a code smell -- don't code these empty classes unless you're ready to write that code into it. Think YAGNI (you aint gonna need it) -- don't do it unless you need it already.</p>
<p>Also, have you considered cases wherein these classes are only there to provide abstract methods, or to group them based on capabilities in terms of methods or properties?</p>
<p>If that's the case, maybe what you really need are interfaces, not additional abstract classes?</p>
http://stackoverflow.com/questions/1463661/nunit-gui-runner-multiple-configuration-files/1463776#14637761Answer by Jon Limjap for NUnit GUI Runner Multiple Configuration FilesJon Limjap2009-09-23T03:10:26Z2009-09-23T03:10:26Z<p>While I feel that using config files for NUnit tests is a no-no (it's an integration test, in that case, I assume), there are various approaches you can try:</p>
<ul>
<li>Put all your different connection strings under web.config in the connectionstrings section, with different keys. Access them via the System.Configuration classes.</li>
<li>For each project or DLL you can add an app.config file where you can store assembly specific information. This will be renamed as ProjectName.dll.config once compiled. Again you can access the contents of this file using System.Configuration</li>
<li>Create a new assembly that simply loads all these connection strings from a single file. And then access this assembly</li>
</ul>
<p>If you are loading different web applications into the same directory (as you're saying you're accessing web.config files -- which means web applications) then you're making your life difficult. Each application has to have their own folder and virtual directory, and a web.config specific to only that application.</p>
http://stackoverflow.com/questions/1463711/how-to-detect-where-a-memory-leak-is/1463722#14637221Answer by Jon Limjap for How to detect where a Memory Leak is?Jon Limjap2009-09-23T02:48:49Z2009-09-23T02:48:49Z<p>You can try using profilers such as <a href="http://www.jetbrains.com/profiler/" rel="nofollow">dotTrace</a> -- set it into a memory trace and run your application. </p>
<p>This should give you clues in which assemblies and areas of the application that eat up too much memory on the get go.</p>
http://stackoverflow.com/questions/1461720/speeding-up-asp-mvc-unit-tests/1463716#14637160Answer by Jon Limjap for Speeding up ASP MVC Unit TestsJon Limjap2009-09-23T02:46:52Z2009-09-23T02:46:52Z<p>Test speed is affected by several factors -- them being MSTest may actually be just one of them.</p>
<p>Any of the following can have an effect on test speed:</p>
<ul>
<li>Tests that actually perform db access</li>
<li>Tests that depend on disk access (e.g., reading web.config)</li>
<li>Code that is <em>actually</em> broken (e.g., performing countless unnecesary loops, other performance loopholes)</li>
<li>Tests that do too much (testing for several things at a time) or doesn't really test a unit</li>
</ul>
<p>Unit Tests, by definition, should be small and fast. Aside from your framework, look for other things among the above list that may be slowing them down.</p>
http://stackoverflow.com/questions/15241/does-anyone-have-any-real-world-experience-of-csla/15357#153573Answer by Jon Limjap for Does anyone have any real-world experience of CSLA?Jon Limjap2008-08-18T23:10:51Z2009-09-22T02:57:25Z<p>Our company practised CSLA in some of its projects and some of the legacy projects remain to be CSLA. Other projects moved away from it because CSLA violated a plain and simple OOP rule: Single Responsibility Principle.</p>
<p>CSLA objects are self-sustaining, e.g. they retrieve their own data, they manage their own behavior, they save themselves. Unfortunately this meant that your average CSLA object has at least three responsibilities -- representing the domain model, containing business rules, and containing data access definition (not the DAL, or data access implementation, as I previously stated/implied) all at the same time.</p>
http://stackoverflow.com/questions/1450618/is-it-better-to-go-live-with-a-site-that-isnt-fully-developed-or-wait-untill-it/1453014#14530140Answer by Jon Limjap for Is it better to go live with a site that isn't fully developed, or wait untill it's fully functional?Jon Limjap2009-09-21T05:32:10Z2009-09-21T05:32:10Z<p>The real question here is, <strong>how do you know that it's fully functional already</strong>?</p>
<p>When StackOverflow was released in public beta there were a bunch of features that weren't here yet. If I recall correctly comment upvotes (if not comments altogether), indication of duplicate question on closing for "exact duplicate", Recent Activity, and a bunch of other stuff were not available at the time.</p>
<p><em>The only way that some of these functionality came about was because the public asked for it.</em></p>
<p>Until you come out with a public site, it's nothing but vaporware, and you wouldn't know how the take up would be. Releasing it in public beta would allow you to get valuable feedback piecemeal, and build word-of-mouth promotion.</p>
<p>It's also a lot safer. Remember <strong><em>Cuil</em></strong>? They were hyped to be some sort of Google killer and released their site live, fully functional, in a single day. <em>Their servers crashed catastrophically</em> -- not because their search software sucked (it might have been better after all) but because their infrastructure couldn't handle it.</p>
<p>Public betas on the other hand allow for slower, more gradual take-up until you have a better idea how your site performs (CPU/memory/bandwidth wise) and will allow you to respond accordingly.</p>
<p>So by all means, release that site (make sure that it's clearly marked beta) and start mining for that valuable user feedback that you need to make your site awesome.</p>
http://stackoverflow.com/questions/1443970/send-email-works-locally-but-not-from-remote-server/1444039#14440390Answer by Jon Limjap for Send email works locally, but not from remote serverJon Limjap2009-09-18T11:44:30Z2009-09-18T11:44:30Z<p>You need to check two things:</p>
<ul>
<li>From your code, check to see if port 587 is not blocked, or is enabled</li>
<li>Also try opening port 25, which is the port traditionally used by SMTP</li>
</ul>
http://stackoverflow.com/questions/1437305/is-this-violating-the-solid-principles/1437345#14373452Answer by Jon Limjap for is this violating the SOLID principles ? Jon Limjap2009-09-17T07:57:11Z2009-09-17T08:22:07Z<p>Far as I can see, there are a lot of SOLID violations right here!</p>
<ul>
<li>Violations of Single Responsibility Principle - First you have data access methods for several classes, second you have helper methods (IsStringNull, IsNull, etc) intertwined with them.</li>
<li>Violations of Interface Segragation Principle (as mentioned by Ruben) - If I were only concerned for Products, why do I need exposure to methods that get Users?</li>
</ul>
<p>I'm sure there are some others, but these are the glaring ones.</p>
<p><strong>UPDATE</strong> Now that someone commented on it, I think they're right; the code above looks like it's some form of <em>extension method abuse</em>.</p>
<p>For example I don't believe Data Access should be relegated to extension methods, or worse, a class named "Tools". </p>
<p>It'd probably make more sense to have a base class (on a totally different namespace and/or assembly) that abstracts your data access generalities, then inherit one data access class for each unique domain object (e.g., UserDAO, ProductDAO, etc). Do understand that my assumption here is that by GetProduct or GetUser you actually mean GetFromDatabase.</p>
<p>The rest of the helper methods do belong to extensions so they're fine.</p>
http://stackoverflow.com/questions/1437223/orange-county-net-developers-meetings-events/1437233#14372331Answer by Jon Limjap for Orange County .NET Developers Meetings/ EventsJon Limjap2009-09-17T07:26:56Z2009-09-17T07:26:56Z<p>That's weird. Google gave me this:</p>
<p><a href="http://www.ocdotnet.org/" rel="nofollow">http://www.ocdotnet.org/</a></p>
<p>Looks like you have an active and vibrant local UG. Join them and have fun. :)</p>
http://stackoverflow.com/questions/1437162/dynamic-casting/1437192#14371923Answer by Jon Limjap for dynamic casting?Jon Limjap2009-09-17T07:16:01Z2009-09-17T07:16:01Z<p>Well, you could do this with generics:</p>
<pre><code>public class IAcceptValueTypes<T> where T: struct
private T obj;
public T Obj
{
get { return obj; }
set { obj = value; }
}
</code></pre>
<p>The generic constraint <code>where T: struct</code> will limit the acceptable type to value types.</p>
http://stackoverflow.com/questions/1437016/are-there-any-plugins-for-visual-studio-which-automatically-formats-code-how-i-li/1437033#14370331Answer by Jon Limjap for Are there any plugins for Visual Studio which automatically formats code how I like?Jon Limjap2009-09-17T06:30:50Z2009-09-17T06:30:50Z<p>You could use <a href="http://www.jetbrains.com/resharper/index.html" rel="nofollow">Resharper</a> for this. It will show warnings for formatting inconsistencies (via colored underscores, much like warnings for spellcheckers), and you could instruct it to reformat a selection or a whole file based on either the default formatting rules or your own.</p>
<p>Formatting rules are customizable to fit your own coding standards.</p>
http://stackoverflow.com/questions/1431883/windows-programming-without-a-oop-language/1431960#14319600Answer by Jon Limjap for windows programming without a OOP languageJon Limjap2009-09-16T09:32:21Z2009-09-16T09:32:21Z<p>Well, there are guys who are still using Visual Foxpro, or Visual Basic 6 (which is NOT OO, contrary to what some people say).</p>
http://stackoverflow.com/questions/1425145/what-should-be-the-sequence-of-diagrams-creation-in-uml/1425180#14251803Answer by Jon Limjap for What should be the sequence of diagrams creation in UML?Jon Limjap2009-09-15T04:54:54Z2009-09-16T01:29:26Z<p>There's absoultely no rule regarding the sequence of such diagrams.</p>
<p>Sometimes, when the structure of the data and the behavior of your domain model is easily defined or well documented, creating the class diagrams first allow for clearer abstractions that aid in creating a sequence diagram that makes sense.</p>
<p>In other cases, when the nature of the domain model is unknown or unclear, it will make more sense to create a sequence diagram first, and then glean classes from that.</p>
<p>What I am sure of is that revisions of these diagrams will become concurrent with each other (e.g., sequence diagrams may reveal something that wasn't taken into account for in the class diagrams, and vice versa).</p>
<p>Likewise, after starting software development these diagrams may change yet again, as more intuitive, or more maintainable abstractions and designs reveal themselves whether via unit tests or user-experience testing and so on and so forth.</p>
<p>Never get enamoured with the idea that these diagrams are rigid in any way and thus requires a sequence in creation -- trust me, they won't be. If you treat them as rigid and infallible, you're shooting yourself in the foot AND tying one arm behind you in your software development effort.</p>
<p><strong>UPDATE</strong> As reflected in the comments, if you're really lost as to what diagram to go first with, the Use Case Diagram would be very important as early as the requirements gathering phase.</p>
<p>Beyond that, what I wrote above applies.</p>
http://stackoverflow.com/questions/1425128/is-this-way-of-using-dictionaryenum-object-correct-in-this-production-planning/1425165#14251651Answer by Jon Limjap for Is this way of using Dictionary<enum,object> correct in this Production Planning example?Jon Limjap2009-09-15T04:49:42Z2009-09-15T04:49:42Z<p>I think it's absolutely fine for a <code>Dictionary<TKey, TValue></code> use case.</p>
<p>Many times Dictionary objects will always have some sort of redundant information from the value object, the most common of which will be an ID, e.g. <code>Dictionary<int, SomeObject></code> where int will be a value taken from SomeObject.Id -- it makes sense in that respect, and it's perfectly identical to your use case.</p>
http://stackoverflow.com/questions/1419882/enabling-soundex-metaphone-for-non-english-characters3Enabling soundex/metaphone for non-English charactersJon Limjap2009-09-14T05:55:23Z2009-09-14T07:37:46Z
<p>Hi all,</p>
<p>I've been studying soundex, metaphone and other string search techniques the past few days, and in my understanding both algorithms work well in handling non-English words transliterated to English.</p>
<p>However the requirement that I have would be for such search to work in the original, untransliterated languages, accomodating alphabets such as German, Norwegian, and even Cyrilic alphabets.</p>
<p>Are there any search algorithms capable of handling these alphabets completely? Or am I better off using third party full-text-search libraries such as Lucene? Consequently, the question then becomes 'does Lucene handle non-English alphabets?'</p>
http://stackoverflow.com/questions/1192050/how-are-the-mvc-and-ajax-concepts-related/1192098#11920982Answer by Jon Limjap for How are the MVC and AJAX concepts related?Jon Limjap2009-07-28T05:36:36Z2009-07-28T06:20:27Z<p>How are they related?</p>
<p>I'm assuming you're taking this from the POV of an ASP.NET dev.</p>
<p>It's really just because plain Ajax (+JSON) works much better with ASP.NET MVC than ASP.NET Webforms. Because of the way ASP.NET Webforms muddled together the view and the controller (and not to mention having Postback & Viewstate -- its crutch to allow pre-Ajax pages to overcome web statelessness), this was initially very difficult. </p>
<p>The way ASP.NET server controls cannot be directly (or at least easily) accessed from Javascript practically made it impossible to use conventional Ajax until ASP.NET Ajax UpdatePanels came along (which was, IMHO, another crutch).</p>
<p>With the advent of ASP.NET MVC it's now much easier to use straight Ajax libraries and JSON for ASP.NET web applications.</p>
http://stackoverflow.com/questions/1175832/define-optional-implementation-methods-in-interface/1175845#11758453Answer by Jon Limjap for Define optional implementation methods in Interface?Jon Limjap2009-07-24T05:21:46Z2009-07-24T06:32:55Z<p>Interesting. I'll have to quote you here:</p>
<blockquote>
<p>However, in my current
implementations, the Stop() method has
never been used or implemented. In all
my implementation classes, this method
has to be implemented with throw
NotImplementedExcetion() as default:</p>
</blockquote>
<p>If this is the case, then you have two options:</p>
<ol>
<li>Remove the Stop() method from the interface. If it isn't used by <em>every</em> implementor of the interface, it <em>clearly does not belong there</em>.</li>
<li>Instead of an interface, convert your interface to an abstract base class. This way there is no need to override an empty Stop() method until you need to.</li>
</ol>
<p><strong>Update</strong> The only way I think methods can be made optional is to assign a method to a variable (of a delegate type similar to the method's signature) and then evaluating if the method is null before attempting to call it anywhere.</p>
<p>This is usually done for event handlers, wherein the handler may or may not be present, and can be considered optional.</p>
http://stackoverflow.com/questions/1157531/how-can-i-remove-jquery-from-the-frontside-of-my-wordpress/1157552#11575522Answer by Jon Limjap for How can I remove jquery from the frontside of my WordPress?Jon Limjap2009-07-21T06:25:08Z2009-07-21T06:25:08Z<p>jQuery.js is just 15KB if you're using the minified version, and these would be totally absent if you were using a theme that doesn't require it.</p>
<p>You should probably look for a lightweight theme without jQuery instead of hacking it and then seeing the theme break in several places because they're looking for those js files.</p>
http://stackoverflow.com/questions/1152414/import-from-text-file-to-sql-server-database-is-ado-net-too-slow/1152472#11524724Answer by Jon Limjap for import from text file to SQL Server Database, is ADO.NET too slow?Jon Limjap2009-07-20T09:01:55Z2009-07-20T09:11:54Z<p>Hmmm, let's break this down a little bit.</p>
<p>In pseudocode what you did is the ff:</p>
<ol>
<li>Open the file</li>
<li>Open a connection</li>
<li>For every line that has data:
<ul>
<li>Parse the string</li>
<li>Save the data in SQL Server</li>
</ul></li>
<li>Close the connection</li>
<li>Close the file</li>
</ol>
<p>Now the fundamental problems in doing it this way are:</p>
<ul>
<li>You are keeping a SQL connection open while waiting for your line parsing (pretty susceptible to timeouts and stuff)</li>
<li>You <em>might</em> be saving the data line by line, each in its own transaction. We won't know until you show us what the <code>InsertData</code> method is doing</li>
<li>Consequently you are keeping the file open while waiting for SQL to finish inserting</li>
</ul>
<p>The optimal way of doing this is to parse the file as a whole, and then insert them in bulk. You can do this with <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopy.aspx" rel="nofollow">SqlBulkCopy</a> (as suggested by Matt Howells), or with SQL Server Integration Services.</p>
<p>If you want to stick with ADO.NET, you can pool together your INSERT statements and then pass them off into one large SQLCommand, instead of doing it this way e.g., setting up one SQLCommand object per insert statement.</p>
http://stackoverflow.com/questions/1142480/adding-redundant-information-to-a-mvc-route/1142510#11425102Answer by Jon Limjap for Adding Redundant Information to a MVC RouteJon Limjap2009-07-17T10:31:36Z2009-07-17T10:31:36Z<p>One thing you should realize is that the text at the end of this URL is actually a dummy. For example, this URL:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1142480">http://stackoverflow.com/questions/1142480</a></li>
</ul>
<p>will open this question cleanly. Similarly, a title other than your question:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1142480/some-dummy-question-title">http://stackoverflow.com/questions/1142480/some-dummy-question-title</a></li>
</ul>
<p>will ALSO open this question without errors.</p>
<p>You can easily use some title-parsing algorithm to generate an "SEO friendly" URL for you complete with the title, and add it at the end of the question number. Your MVC route will just ignore the last part.</p>
http://stackoverflow.com/questions/1123207/qa-to-dev-ratio/1123322#11233221Answer by Jon Limjap for QA to dev ratioJon Limjap2009-07-14T03:30:55Z2009-07-14T03:30:55Z<p>A rational QA to dev ratio can only be derived relative to the complexity of an application in question.</p>
<p>Clearly, an uberdeveloper can probably come up with a complex application where only 3 QAs full time can efficiently test because of the complexity of the workflow; in turn, there can be 1 QA for 3 junior devs piecing together a relatively simple input-output report application.</p>
<p>So the number of QA personnel you need will be determined by the number and complexity of requirements you have, and not the number of software developers you use.</p>
http://stackoverflow.com/questions/1753837/unknown-column-0-in-on-clauseComment by Jon Limjap on Unknown column {0} in on clauseJon Limjap2009-11-18T05:32:01Z2009-11-18T05:32:01ZCould you add some details about the table structures/definitions of the joined tables?http://stackoverflow.com/questions/1640132/how-to-see-stacktrace-of-net-application/1640188#1640188Comment by Jon Limjap on how to see stacktrace of.net application Jon Limjap2009-10-29T02:39:59Z2009-10-29T02:39:59ZYes. You could use logging frameworks to write them to error logs too.http://stackoverflow.com/questions/28171/why-does-visual-studio-create-a-new-vsmdi-file/28193#28193Comment by Jon Limjap on Why does Visual Studio create a new .vsmdi file?Jon Limjap2009-10-27T10:10:39Z2009-10-27T10:10:39ZThanks for the wayback link. :)http://stackoverflow.com/questions/1598556/unit-testing-primary-keysComment by Jon Limjap on Unit Testing & Primary KeysJon Limjap2009-10-21T03:40:00Z2009-10-21T03:40:00ZAre you generating your own primary keys? Or are you allowing the DB to generate them for you?http://stackoverflow.com/questions/1486420/how-can-i-enhance-the-aesthetics-of-an-ugly-windows-form-packed-with-too-many-neComment by Jon Limjap on How can I enhance the aesthetics of an ugly windows form packed with too many (necessary) features?Jon Limjap2009-09-28T11:40:33Z2009-09-28T11:40:33ZPro Mode? Is there a worse version of this thing?http://stackoverflow.com/questions/8952/storing-a-file-in-a-database-as-opposed-to-the-file-system/8969#8969Comment by Jon Limjap on Storing a file in a database as opposed to the file system?Jon Limjap2009-09-28T07:50:51Z2009-09-28T07:50:51ZThis is an implicit task when images have to be displayed afterward, especially when stored in different formats or in scenarios where they can't be held in memory for lenghty periods of time, by virtue of sheer size.http://stackoverflow.com/questions/1475520/unit-testing-code-coverage-do-you-have-100-coverageComment by Jon Limjap on Unit testing code coverage - do you have 100% coverage?Jon Limjap2009-09-25T05:37:38Z2009-09-25T05:37:38ZYou should check this question out: <a href="http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90021" rel="nofollow" title="what is a reasonable code coverage for unit tests and why">stackoverflow.com/questions/90002/…</a>http://stackoverflow.com/questions/1463970/how-to-find-out-a-friend-in-friends-groupComment by Jon Limjap on how to find out a friend in friends group.Jon Limjap2009-09-23T04:34:39Z2009-09-23T04:34:39ZWe can't answer your question unless you tell us how your application workshttp://stackoverflow.com/questions/1463761/asp-net-repeaters-to-use-or-not-to-useComment by Jon Limjap on asp.net repeaters. To use or not to useJon Limjap2009-09-23T03:12:13Z2009-09-23T03:12:13ZHow much lighter do you think you can get?http://stackoverflow.com/questions/1443970/send-email-works-locally-but-not-from-remote-server/1444039#1444039Comment by Jon Limjap on Send email works locally, but not from remote serverJon Limjap2009-09-18T12:12:13Z2009-09-18T12:12:13ZUnfortunately <i>that</i> is a serverfault.com question. Depends on your system administratorhttp://stackoverflow.com/questions/1443970/send-email-works-locally-but-not-from-remote-serverComment by Jon Limjap on Send email works locally, but not from remote serverJon Limjap2009-09-18T11:43:10Z2009-09-18T11:43:10ZLOL, I guess some people think letting the code do that talking works. Sometimes it does, mileage will vary.http://stackoverflow.com/questions/1443829/how-to-know-or-calculate-depth-of-field-of-a-photo-from-exif-tags/1443856#1443856Comment by Jon Limjap on How to know or calculate depth of field of a photo from EXIF tags?Jon Limjap2009-09-18T11:38:32Z2009-09-18T11:38:32ZI guess this is the reason why DOF is not in the EXIF data in the first place -- not too many cameras and lenses will have photometry technology that determines subject distancehttp://stackoverflow.com/questions/1443222/what-cool-frameworks-are-there-on-java-ruby-etc-that-dont-exist-on-net/1443260#1443260Comment by Jon Limjap on What cool frameworks are there on Java/Ruby etc. that don't exist on .NET?Jon Limjap2009-09-18T08:40:07Z2009-09-18T08:40:07ZWell, there is an open source project that connects directly to Maven for builds, and integrates with Visual Studio: <a href="http://npanday.codeplex.com/" rel="nofollow">npanday.codeplex.com</a>http://stackoverflow.com/questions/1442697/in-this-scenario-how-to-frame-a-common-function-and-parameterize-castingComment by Jon Limjap on In this scenario, how to frame a common function and parameterize casting?Jon Limjap2009-09-18T05:48:18Z2009-09-18T05:48:18ZI'd like to know what's your implementation of the relationship between types, e.g., A and AFilterObj, B and BFilterObj, etc. That will reveal for caveats we need to take into account.http://stackoverflow.com/questions/1437305/is-this-violating-the-solid-principles/1437345#1437345Comment by Jon Limjap on is this violating the SOLID principles ? Jon Limjap2009-09-18T01:57:58Z2009-09-18T01:57:58ZWell, again, SRP. Your Tool class is doing too much as is. If you have DAO classes you can group them together in a UserManager or ProductManager class where all the CRUD and other functionality are. Extension methods are supposed to add functionality without mucking existing classes, NOT hide existing functionality from their real locations.