User John MacIntyre - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T05:22:47Z http://stackoverflow.com/feeds/user/29043 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1690070/what-code-snippet-plugins-are-available-for-vs2008 0 What code snippet plugins are available for VS2008? John MacIntyre 2009-11-06T20:11:10Z 2009-11-07T17:43:06Z <p>I want a code snippet editor for VS2008.</p> <p>I'd like to just hit a hot key, bring up an editor, type in my snippet, run to my break point and step through. </p> <p>I don't want to have to create a project, create an <a href="http://msdn.microsoft.com/en-us/library/ms165394.aspx" rel="nofollow">xml file</a>, or even have to save my file if I don't want to.</p> <p>I've looked through <a href="http://stackoverflow.com/questions/129015/what-plugin-would-you-really-like-to-have-for-visual-studio-2005-2008">What plugin would you really like to have for Visual Studio 2005/2008</a> already, but didn't see anything.</p> <p>Anybody know of an plugin that will allow me to do this? Thanks</p> http://stackoverflow.com/questions/1607168/taking-over-someone-elses-code/1607494#1607494 1 Answer by John MacIntyre for Taking over someone else's code John MacIntyre 2009-10-22T14:09:33Z 2009-10-22T14:09:33Z <p>The first place I start is the database.</p> <p>In my experience, understanding the datamodel is key to giving you context when you go through the code. (this assumes the data model is not a generic key-value generic entity table)</p> http://stackoverflow.com/questions/590695/can-anybody-recommend-a-bar-code-web-server-control 2 Can anybody recommend a Bar Code web server control? John MacIntyre 2009-02-26T14:09:33Z 2009-10-22T09:17:14Z <p>Can anybody recommend a Bar Code web server control for formats 39 and 128 formats?</p> <p>UPDATE: I posted this after being given a choice of 3 controls we'd never heard of. I was hoping to get a recommendation from somebody who is using something that is popular, stable and a commercial product. It looks like we will just go with one of the choices our manager sent. If you are reading this after the fact, and have a good recommendation, please add it for others needing one in the future. thx</p> http://stackoverflow.com/questions/1591979/how-should-i-design-my-object-model-so-that-my-dal-can-populate-read-only-fields/1591982#1591982 6 Answer by John MacIntyre for How should I design my object model so that my DAL can populate read-only fields? John MacIntyre 2009-10-20T01:17:22Z 2009-10-20T01:23:23Z <p>You can set the read only property via a constructor.</p> http://stackoverflow.com/questions/1548583/how-do-i-create-a-view-from-a-generic-list/1548617#1548617 1 Answer by John MacIntyre for How do I create a view from a generic list? John MacIntyre 2009-10-10T17:55:47Z 2009-10-10T17:55:47Z <p>If your names are always going to match (CustomObject1 then I want to render the partial CustomObject1.ascx), then you could use the type name. So:</p> <pre><code>void MyMethod(List&lt;T&gt; items) { foreach(T item in items) { Html.RenderPartial(item.GetType().Name, item); } } </code></pre> http://stackoverflow.com/questions/521402/how-do-you-simulate-frequent-database-activity-for-realistic-testing 3 How do you simulate frequent database activity for realistic testing? John MacIntyre 2009-02-06T17:59:00Z 2009-10-02T07:59:56Z <p>I'm building a web app against a database where a small number of records (about 5000) are active at the same time. Each active working record probably experiences 50-300 changes by 30 users over a 4 hour period ... which is thousands of changes per minute.</p> <p>Because our testing environment is so static, testing is not realistic, and some issues do not arise until we hit the production database.</p> <p>I had the idea to Run Profiler, collect the DML statements, then replay them on the test server while debugging the app ... Assuming I can replay them in the same time intervals as the original was run. But even this wouldn't be a valid test, since tester changes could corrupt future DML statements being replayed.</p> <p>Does anybody know how to simulate real time database changes for realistic testing?</p> <p>Thanks.</p> <p>BTW-Our problems are not concurrency issues.</p> http://stackoverflow.com/questions/1481217/what-screen-resolution-should-my-web-app-target-for-an-average-non-technical-user 1 What screen resolution should my web app target for an average non-technical users? John MacIntyre 2009-09-26T13:32:12Z 2009-09-26T16:46:22Z <p>I noticed StackOverflow appears to be targeting screen resolution widths of 1024px or more. I also checked Amazon, NBC, MSN, &amp; AOL which target more lay users, and they all appear to be targeting the same width.</p> <p>Is 1024px the current recommended width for web apps targeting the largest cross-section of users who use default monitor resolution/browser size?</p> http://stackoverflow.com/questions/1278026/are-there-any-good-metaphors-for-explaining-project-complexity-to-a-non-programme 35 Are there any good metaphors for explaining project complexity to a non-programmer? John MacIntyre 2009-08-14T14:01:46Z 2009-09-21T01:23:57Z <p>It was just mentioned that I'm "not exactly building the Sistine Chapel." This is true, but I am building a freight management application, which isn't exactly as simple as drawing controls on a form (even though the vendors would have you believe it is).</p> <p>I don't hold this against the person who said it, but I do feel the complexity of what I'm doing is a little misunderstood, or that statement would not have been made.</p> <p>Are there any good metaphors which might illustrate a project's complexity to non-programmers?</p> http://stackoverflow.com/questions/1438787/what-is-the-best-length-of-a-coding-session-before-taking-a-break/1438800#1438800 25 Answer by John MacIntyre for What is the best length of a coding session before taking a break? John MacIntyre 2009-09-17T13:11:45Z 2009-09-17T15:06:33Z <p>When I get in the zone ... I don't stop.</p> <p>EDIT: There are a lot of great answers to another question <a href="http://stackoverflow.com/questions/297037">What tricks do you use to get yourself “in the zone”?</a>. Specifically, <a href="http://stackoverflow.com/questions/297037/what-tricks-do-you-use-to-get-yourself-in-the-zone/297477#297477">this answer</a> by <a href="http://stackoverflow.com/users/14894/cmpalmer">CMPalmer</a> is pretty good. Beyond that, getting in the zone is more about setting up the right conditions; having a task that meets your maximum skill level, having total clarity with regards to the end result, and eliminating all resistance (interuptions, distractions, slow computer, etc...).</p> http://stackoverflow.com/questions/1434760/one-line-if-statements/1434795#1434795 0 Answer by John MacIntyre for One line if statements John MacIntyre 2009-09-16T18:47:19Z 2009-09-16T18:47:19Z <pre><code>if(condition) statement=new assignment; </code></pre> <p>or </p> <pre><code>if(condition) statement=new assignment; </code></pre> http://stackoverflow.com/questions/1432963/what-are-the-best-practices-to-avoid-problems-with-pointers/1433027#1433027 1 Answer by John MacIntyre for What are the best practices to avoid problems with pointers? John MacIntyre 2009-09-16T13:37:30Z 2009-09-16T13:37:30Z <p>Just <strong>initializing</strong> your pointer variables <strong>and good clean up will eliminate 99% of your problems</strong>. By good clean up, I mean; deallocating memory and setting pointer variables to null.</p> <p>Otherwise, you need a <strong>clear design</strong> regarding passing pointers around and what code is responsible for cleaning up that memory. If you end up in a situation where you don't know what code will be the last to use the memory &amp; should be cleaning up, then you've got a design smell, which you'll want to fix in order to maintain your sanity.</p> http://stackoverflow.com/questions/438975/winning-contracts/438987#438987 7 Answer by John MacIntyre for Winning contracts John MacIntyre 2009-01-13T13:45:53Z 2009-09-09T16:13:55Z <p><strong>Be the best person for the job, at a market price</strong>.</p> <p>Also, this question presupposes you want to always get the job. I've found that alot of times, you don't want the job. Be prepared to walk away when that happens.</p> http://stackoverflow.com/questions/1379079/do-you-continuously-rate-judge-yourself-while-coding/1379152#1379152 0 Answer by John MacIntyre for Do you continuously rate/judge yourself while coding? John MacIntyre 2009-09-04T13:10:20Z 2009-09-04T13:10:20Z <p>Evaluating your skills and processes is a good thing, but beating yourself up is counter productive and will prevent you from ever slipping into a flow state.</p> <p>If you work at your highest skill level, there's no reason to beat yourself up ever. You can hold your head up high, even if others disagree. Also, if your old code looks like it should have been done better ... it means you've learned something and your future code will be more awesome ... good work, give yourself a pat on the back!</p> http://stackoverflow.com/questions/1369361/how-can-i-programatically-create-read-write-an-excel-without-having-office-inst/1369427#1369427 0 Answer by John MacIntyre for How can I programatically create, read, write an excel without having office installed? John MacIntyre 2009-09-02T18:38:21Z 2009-09-02T18:43:50Z <p>If you cannot work with CSV files as per <a href="http://stackoverflow.com/questions/1369361/how-can-i-programatically-create-read-write-an-excel-without-having-office-inst/1369389#1369389">@RHicke</a>'s suggestion, and assuming you are working on a web app, since a desktop app would be guaranteed to have XL installed as per requirements.</p> <p>I'd say, create your processing app as a <strong>webservice</strong>, and build an <strong>XL addin</strong> which will interact with your webservice directly from XL.</p> http://stackoverflow.com/questions/1360673/any-valid-reason-for-code-duplication/1362307#1362307 7 Answer by John MacIntyre for Any valid reason for code duplication? John MacIntyre 2009-09-01T12:49:50Z 2009-09-01T12:49:50Z <p>When I first started programming, I wrote an app where I had a bunch of similar functionality which I wrapped up in a neat little 20-30 line function ... I was very proud of myself for writing such an elegant piece of code. </p> <p>Shortly after, the client changed the process in very specific cases, then again, then again, then again , and again, and again .... (many many more times) My elegant code turned into a very difficult, hackish, buggy, &amp; high maintenance mess.</p> <p>A year later, when I was asked to do something very similar, I deliberately decided to ignore DRY. I put together the basic process, and generated all duplicate code. The duplicate code was documented and I saved the template used to generate the code. When the client asked for specific conditional change (like, if x == y^z + b then 1+2 == 3.42) it was a piece of cake. It was unbelievably easy to maintain &amp; change.</p> <p>In retrospect, I probably could have solved many of these problems with function pointers and predicates, but using the knowledge I had at the time, I still believe in this specific case, this was the best decision.</p> http://stackoverflow.com/questions/406052/do-most-web-programmers-not-designers-use-wysiwyg-editors-or-hand-code-their 33 Do most web 'programmers' (not designers) use wysiwyg editors or hand code their HTML? John MacIntyre 2009-01-02T04:58:06Z 2009-09-01T11:37:22Z <p>When I started programming web pages, it became immediately obvious that the WYSIWYG editors sucked. The html output was difficult to maintain, did things in ways you may not agreed with, completely messed up existing pages if opened, couldn't handle code in the page, and was polluted with dead or irrelevant code like <code>&lt;font ...&gt;&lt;/font&gt;</code></p> <p>At that time, I didn't know a single programmer with more than 6 months experience who didn't hand code their HTML. Even now, most of the developers I know hand code their HTML.</p> <p>But, I also realize this was a decade ago, WYSIWYG editors have improved, and I may be seriously underproductive hand coding my HTML.</p> <p>Do you, as a web programmer, use WYSIWYG editors for your HTML?</p> <p><em>PS-I'm kind of thinking we can just vote either YES or NO, and put comments below.</em></p> http://stackoverflow.com/questions/1358247/why-doesnt-parent-object-fail-with-a-previously-disposed-child-object 3 Why doesn't parent object fail with a previously disposed child object? John MacIntyre 2009-08-31T16:38:04Z 2009-08-31T18:29:16Z <p>Potentially embarrassing question, but there is obviously something I'm missing that I want/need to know.</p> <p>I expect the following code to create a new table row with new cells to be rendered later. And that's what it does ... as you would expect.</p> <pre><code>using (TableRow tr = new TableRow()) { using (TableCell td = new TableCell()) { td.Text = "Column A"; tr.Cells.Add(td); } using (TableCell td = new TableCell()) { td.Text = "Column B"; tr.Cells.Add(td); } tbl.Rows.Add(tr); } </code></pre> <p>But .... but aren't the TDs created in the using statements invalidated once they go out of the 'using' scope? Wouldn't the TD objects referenced by the row now be invalid and shouldn't the row fail when it attempts to use them? The same could be said for the TR when it's rendered by the 'tbl' object.</p> <p>Do I not understand dispose?</p> <p>Do I not understand using?</p> <p>Is TableRow.Cells.Add() actually doing a deep copy not just a ref ptr copy?</p> <p>Can the TableCell actually be used after it's disposed?</p> <p>What gives?</p> http://stackoverflow.com/questions/1343647/how-can-i-choose-the-closest-match-in-sql-server-2005/1343716#1343716 0 Answer by John MacIntyre for How can I choose the closest match in SQL Server 2005? John MacIntyre 2009-08-27T21:01:31Z 2009-08-27T21:01:31Z <p>There is also the <a href="http://en.wikipedia.org/wiki/Levenshtein%5Fdistance" rel="nofollow">Levenshtein distance algorithym</a>.</p> http://stackoverflow.com/questions/529822/how-can-i-get-dbx-dbo-proca-to-run-in-the-context-of-dby 0 How can I get dbX.dbo.procA to run in the context of dbY? John MacIntyre 2009-02-09T20:37:42Z 2009-08-24T16:42:04Z <p>I want to separate a specific set of stored procedures into a seperate database … sort of like a library. However, when I run these procs from another database, they appear to call objects from within the library database.</p> <p>Here is some source code which demonstrates the problem</p> <pre><code>use mylibdb go create proc gettablecount as begin declare @cnt int; select @cnt=count(*) from sysobjects where xtype='U'; print 'Table count : ' + cast( @cnt as nvarchar); end go use adventureworks go exec mylibdb.dbo.gettablecount; print ''; select count(*) as [table count] from sysobjects where xtype='U'; </code></pre> <p>Running that code will print out</p> <blockquote> <p>Table count : 0 </p> <p>table count <hr /></p> <p>71</p> <p>(1 row(s) affected)</p> </blockquote> <p>Notice the proc queries the mylibdb.dbo.sysobjects table, not adventureworks.dbo.sysobjects.</p> <p>Does anybody know how I can do this without dynamic sql?</p> http://stackoverflow.com/questions/529822/how-can-i-get-dbx-dbo-proca-to-run-in-the-context-of-dby/1323450#1323450 0 Answer by John MacIntyre for How can I get dbX.dbo.procA to run in the context of dbY? John MacIntyre 2009-08-24T16:38:08Z 2009-08-24T16:38:08Z <p>I've determined this cannot be done, so I saved the scripts as script files, rather than in procs.</p> <p>So, my proc would be reduced to this anonymous block:</p> <pre><code>begin declare @cnt int; select @cnt=count(*) from sysobjects where xtype='U'; print 'Table count : ' + cast( @cnt as nvarchar); end </code></pre> <p>PS-This is just a 'For The Record' type answer.</p> http://stackoverflow.com/questions/1075060/how-to-reduce-redundant-log-messages-for-a-web-app 2 How to reduce redundant log messages for a web-app? John MacIntyre 2009-07-02T15:26:18Z 2009-08-24T16:21:38Z <p>Does anybody have any advice on how to minimize my logs for a web application?</p> <p>Right now, I'm logging every error. So if there is a situation where an error occurs on every request (a db connection problem for example), it might get logged for every user on every request. As you can imagine, it doesn't take too many users doing too many things to start amassing a huge log file with redundant log errors.</p> <p>It has occurred to me to create some type of flagging mechanism to not log the same error within N minutes. I don't like this for 2 reason; 1) it could hide the most significant problem amongst the others and 2) cascading errors may not log their error trail properly, omitting previously logged errors, potentially throwing off my initial diagnosis.</p> <p>I'm sure I'm not the first person to have this issue ... does anybody have any advice on how to reduce redundant log messages for a web-app?</p> http://stackoverflow.com/questions/1075060/how-to-reduce-redundant-log-messages-for-a-web-app/1323294#1323294 0 Answer by John MacIntyre for How to reduce redundant log messages for a web-app? John MacIntyre 2009-08-24T16:09:32Z 2009-08-24T16:09:32Z <p>I've combined it with my user error message, so when the error message is shown the user, they can either click, OK or Send to Support. Then the complete error, call stack, &amp; complete request information is entered into the bug tracker.</p> <p>This hasn't been released yet, so we've yet to see if this is a good idea ... will keep you posted.</p> <p>PS-I've answered my own question as a for the record, and selected it since the other answers did not meet my needs.</p> http://stackoverflow.com/questions/1296544/what-is-the-acceptable-upper-limit-of-time-allocated-to-a-single-development-task/1296622#1296622 2 Answer by John MacIntyre for What is the acceptable upper limit of time allocated to a single development task? John MacIntyre 2009-08-18T21:28:51Z 2009-08-18T21:28:51Z <p>If you track your estimate/actual history, you can probably plot hours by accuracy and figure out exactly what number is appropriate for your team.</p> http://stackoverflow.com/questions/1295178/why-is-the-save-button-needed/1295362#1295362 4 Answer by John MacIntyre for Why is the save button needed? John MacIntyre 2009-08-18T17:29:39Z 2009-08-18T19:51:29Z <p>It really comes down to this: <strong>a Save button is cheaper to implement and maintain than Undo</strong>.</p> http://stackoverflow.com/questions/1295462/sql-prepared-statements-for-complex-filtering/1295545#1295545 0 Answer by John MacIntyre for SQL Prepared Statements for complex filtering John MacIntyre 2009-08-18T18:04:30Z 2009-08-18T18:04:30Z <p>Have look at <a href="http://stackoverflow.com/questions/659033/sql-stored-procedure-conditional-return/659040#659040">my answer</a> to SO question <a href="http://stackoverflow.com/questions/659033/sql-stored-procedure-conditional-return/659040">SQL Stored Procedure: Conditional Return</a> ... I think you could use the same type of thing.</p> http://stackoverflow.com/questions/1295379/get-all-a-elements-in-a-page-using-javascript/1295406#1295406 0 Answer by John MacIntyre for Get all <a> elements in a page using javascript John MacIntyre 2009-08-18T17:37:41Z 2009-08-18T17:37:41Z <p>I believe this will do what you need:</p> <pre><code>document.getElementsByTagName("A"); </code></pre> http://stackoverflow.com/questions/1295318/html-forms-add-data-from-another-domain/1295330#1295330 0 Answer by John MacIntyre for HTML forms, add data from another domain John MacIntyre 2009-08-18T17:23:36Z 2009-08-18T17:23:36Z <p>If you own domain-a, you can alter the server side script to set the page elements with the appropriate querystring parameters.</p> http://stackoverflow.com/questions/1294501/how-to-prevent-downloading-images-and-video-files-from-my-website/1294702#1294702 4 Answer by John MacIntyre for How to prevent downloading images and video files from my website John MacIntyre 2009-08-18T15:37:19Z 2009-08-18T15:37:19Z <p>In standard HTML, I don't know of anyway.</p> <p>You didn't really say, but I'm guessing you are having problems with people <strong>deep linking into your content</strong>. If that's the case, and you are open to server side code, I believe this might work:</p> <ol> <li>Create a page that accepts a numeric id, maps it to a server file path, opens that file, writes the binary directly to the response stream.</li> <li>On the page request, generate a bunch of random ids, and map them to the actual media urls, and store that mapping object server side somewhere (in session?) with a limited life.</li> <li>Render your pages with your media links pointing to the new media page with the appropriate id as a query string argument.</li> <li>Clear the mapping object and generate all new links on every postback.</li> </ol> <p>This :</p> <ol> <li>won't stop people from downloading from within your page </li> <li>definitely isn't as lightweight as standard HTML </li> <li>and has it's own set of issues.</li> </ol> <p>But it's a general outline of a workable process which might help you prevent users from deep linking.</p> http://stackoverflow.com/questions/1273554/html-link-that-forces-refresh/1273584#1273584 0 Answer by John MacIntyre for HTML link that forces refresh? John MacIntyre 2009-08-13T17:54:15Z 2009-08-13T17:54:15Z <p>Many people use a version query string parameter.</p> <p>Check out the SO source</p> <pre><code>&lt;script type="text/javascript" src="http://sstatic.net/so/js/master.js?v=4143"&gt;&lt;/script&gt; </code></pre> <p>Specifically notice the <strong>master.js?v=4143</strong></p> <p>Personally, I set this in my config file which is application wide, but I believe you can do this right in your source control if you need more granular automatic versioning.</p> http://stackoverflow.com/questions/1263780/sql-find-patterns-of-records/1263795#1263795 1 Answer by John MacIntyre for SQL - Find patterns of records John MacIntyre 2009-08-12T01:22:32Z 2009-08-12T01:51:10Z <p>If it's one song after another, assuming a table named tblSongs with a 'sequence' &amp; 'name' column. You might want to try something like</p> <pre><code>select top N first.name, second.name, count(*) from tblSongs as first inner join tblSongs as second on second.sequence=first.sequence + 1 group by first.name, second.name order by count(*) desc </code></pre> <p>If song sequence X,Y is counted the same as Y,X then</p> <pre><code>select top N first.name, second.name, count(*) from tblSongs as first inner join tblSongs as second on second.sequence=first.sequence + 1 or second.sequence=first.sequence - 1 group by first.name, second.name order by count(*) desc </code></pre> <p>If you are looking for any pattern of 2 song sequences, then </p> <pre><code>select first.name, second.name, abs(second.sequence - first.sequence) as spacing_count from tblSongs as first inner join tblSongs as second on second.sequence=first.sequence + 1 or second.sequence=first.sequence - 1 </code></pre> <p>Then do some statistical analysis on the spacing_count (which is beyond me).</p> <p>I believe those will get you started.</p> http://stackoverflow.com/questions/89606/in-sql-server-2005-how-do-i-change-the-schema-of-a-table-without-loosing-any-d/1240183#1240183 Comment by John MacIntyre on In sql server 2005, how do I change the "schema" of a table without loosing any data? John MacIntyre 2009-11-25T13:25:19Z 2009-11-25T13:25:19Z -1 Sorry for the down vote, but this answer is useless. http://stackoverflow.com/questions/1793257/how-can-i-solve-this-median-programming-problem-in-c Comment by John MacIntyre on How can I solve this median programming problem in C++ John MacIntyre 2009-11-24T22:16:05Z 2009-11-24T22:16:05Z Is that the book you were talking about? http://stackoverflow.com/questions/1793169/which-is-faster-multiple-single-inserts-or-one-multiple-row-insert/1793176#1793176 Comment by John MacIntyre on Which is faster: multiple single INSERTs or one multiple-row INSERT? John MacIntyre 2009-11-24T21:58:48Z 2009-11-24T21:58:48Z @dusoft-You shouldn't have to check &amp; see, but sometimes generating a test yourself is faster than asking for, finding, reading, &amp; validating somebody else's findings. How much time will you spend on the question alone before you're done? Not to mention the reading &amp; validating somebody elses findings. http://stackoverflow.com/questions/1745316/c-coding-style-braces/1745329#1745329 Comment by John MacIntyre on C# coding style: braces John MacIntyre 2009-11-16T22:48:17Z 2009-11-16T22:48:17Z +1 This can't be emphasized enough. http://stackoverflow.com/questions/1690070/what-code-snippet-plugins-are-available-for-vs2008/1690134#1690134 Comment by John MacIntyre on What code snippet plugins are available for VS2008? John MacIntyre 2009-11-06T20:30:02Z 2009-11-06T20:30:02Z I just keep creating console apps. It doesn't take me long, but good god man, why they heck do I have to do this when Eclipse had this functionality in 2003?!?!?! ~:-( http://stackoverflow.com/questions/1662190/get-a-files-last-modified-date-in-vb6/1662219#1662219 Comment by John MacIntyre on Get a file's last modified date in VB6 John MacIntyre 2009-11-02T16:18:38Z 2009-11-02T16:18:38Z Wow ... can you say 'also ran'? ... deleting. http://stackoverflow.com/questions/1650801/why-is-in-memory-data-persisted-across-multiple-browser-sessions-in-my-mvc-protot/1650837#1650837 Comment by John MacIntyre on Why is in memory data persisted across multiple browser sessions in my MVC prototype? John MacIntyre 2009-10-30T17:29:54Z 2009-10-30T17:29:54Z Sarcasm was not intended in my previous comment. http://stackoverflow.com/questions/1650801/why-is-in-memory-data-persisted-across-multiple-browser-sessions-in-my-mvc-protot/1650837#1650837 Comment by John MacIntyre on Why is in memory data persisted across multiple browser sessions in my MVC prototype? John MacIntyre 2009-10-30T16:56:54Z 2009-10-30T16:56:54Z If you're trying to learn about one thing, why muddy the waters with other, irrelevant junk. http://stackoverflow.com/questions/681287/how-to-make-a-reference-type-property-readonly/681319#681319 Comment by John MacIntyre on How to make a reference type property "readonly" John MacIntyre 2009-10-28T21:01:25Z 2009-10-28T21:01:25Z @pontus gagge-Awesome point. Wish I could upvote your comment more. http://stackoverflow.com/questions/1591979/how-should-i-design-my-object-model-so-that-my-dal-can-populate-read-only-fields/1591982#1591982 Comment by John MacIntyre on How should I design my object model so that my DAL can populate read-only fields? John MacIntyre 2009-10-20T13:20:18Z 2009-10-20T13:20:18Z @Charles Conway - But don't forget, the business logic layer is probably in a seperate dll which may not only be used in a webapp. Personally, when I create a BLL, I use it in other derived tools as well. http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1556684#1556684 Comment by John MacIntyre on Most horrifying line of code you have ever seen? John MacIntyre 2009-10-14T16:50:11Z 2009-10-14T16:50:11Z Similar to one of my answers to the 'programmer ignorance pet peeve' xref <a href="http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/426697#426697" rel="nofollow" title="whats your favorite programmer ignorance pet peeve">stackoverflow.com/questions/423823/&hellip;</a> http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/426697#426697 Comment by John MacIntyre on What's your favorite "programmer ignorance" pet peeve? John MacIntyre 2009-10-14T16:49:03Z 2009-10-14T16:49:03Z Very similar <a href="http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1556684#1556684" rel="nofollow" title="most horrifying line of code you have ever seen">stackoverflow.com/questions/1556672/&hellip;</a> http://stackoverflow.com/questions/1562113/how-do-i-maintain-state-across-multiple-web-servers/1562143#1562143 Comment by John MacIntyre on How do I maintain state across multiple web servers? John MacIntyre 2009-10-13T19:32:27Z 2009-10-13T19:32:27Z @bobthebuilder-If you did go with SQLServer, this would be an excellent division for splitting onto a second db server. Where core data would be on one db server, and state management on another. http://stackoverflow.com/questions/1555148/where-should-ischanged-functionality-be-handled/1555165#1555165 Comment by John MacIntyre on Where should IsChanged functionality be handled? John MacIntyre 2009-10-12T16:03:44Z 2009-10-12T16:03:44Z @ocdecio - So option 1. Not GUI per se, but in one of the storage mechanisms available at that layer. Is that right? Should your DAL know about session state? &lt;/sincerity intended&gt; http://stackoverflow.com/questions/1555148/where-should-ischanged-functionality-be-handled/1555165#1555165 Comment by John MacIntyre on Where should IsChanged functionality be handled? John MacIntyre 2009-10-12T15:36:15Z 2009-10-12T15:36:15Z So you are basically saying number 2 out of the list of options is the best?