User Ed Altorfer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T23:56:13Z http://stackoverflow.com/feeds/user/26552 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1773101/how-do-i-stop-ncover-from-hijacking-every-net-assembly 0 How do I stop NCover from hijacking every .NET assembly? Ed Altorfer 2009-11-20T20:37:38Z 2009-11-21T13:40:13Z <p>Hey all,</p> <p>I know that this, strictly speaking, is not a programming question, but I think the only people who can answer it are programmers.</p> <p>I've never had this happen before, but on one workstation where I have NCover installed, it seems to be intercepting every .NET assembly I load. For example, after installing it, suddenly it takes several minutes to load any .NET application; .NET services fail to start because they time out; NCover itself even takes minutes to load.</p> <p>What's going on here? I opened Process Explorer to look at some of these and found that my assemblies were referring to NCover DLLs and such, especially pertaining to mscorlib.</p> <p>Has anyone had this happen before? I'm at a loss.</p> http://stackoverflow.com/questions/1592291/what-is-the-email-subject-length-limit/1592300#1592300 1 Answer by Ed Altorfer for What is the email subject length limit? Ed Altorfer 2009-10-20T03:32:15Z 2009-10-20T03:32:15Z <p>I don't believe that there is a formal limit here, and I'm pretty sure there isn't any hard limit specified in the RFC either, as you found.</p> <p>I think that some pretty common limitations for subject lines in general (not just e-mail) are:</p> <ul> <li>80 Characters</li> <li>128 Characters</li> <li>256 Characters</li> </ul> <p>Obviously, you want to come up with something that is reasonable. If you're writing an e-mail client, you may want to go with something like 256 characters, and obviously test thoroughly against big commercial servers out there to make sure they serve your mail correctly.</p> <p>Hope this helps!</p> http://stackoverflow.com/questions/1573731/what-are-the-best-practices-to-follow-while-creating-a-data-dictionary/1573756#1573756 1 Answer by Ed Altorfer for What are the Best Practices to follow while creating a data-dictionary? Ed Altorfer 2009-10-15T17:07:52Z 2009-10-15T17:07:52Z <p>So, I recently helped to build a data dictionary for a <strong>very</strong> large product. We were dealing with documenting more than one-thousand tables using a change request process. I can send you a scrubbed version of the spreadsheet we used if you want. Basically, we captured the following:</p> <ul> <li>Column Name</li> <li>Data Type</li> <li>Length</li> <li>Scale (for decimals)</li> <li>Whether the column is custom for the application(s) or a default column</li> <li>Which application(s)/component(s) the column is used in</li> <li>Release the column was introduced in</li> <li>Business definition</li> </ul> <p>We also captured information about who requested the addition, their contact information, etc. Our primary focus was on business definition, and clearly identifying why a column was being used or created.</p> <p>We didn't have stored procedures in our solution, but bear in mind that these would be pretty easy to add to the system.</p> <p>We used Access for our front-end, even though SQL Server was on the back end. It made it pretty easy for us to build out a rich user interface without much work, using the schema we had already built out.</p> <p>Hope this helps you get started--feel free to ask if you have additional questions.</p> http://stackoverflow.com/questions/1573638/is-this-a-good-enough-function-to-pad-0s-to-the-left-of-an-nvarchar/1573727#1573727 0 Answer by Ed Altorfer for Is this a good enough function to pad 0's to the left of an nvarchar? Ed Altorfer 2009-10-15T17:01:40Z 2009-10-15T17:01:40Z <p>As a value-add, if you're trying to pad numbers only, consider converting them to INT and then using the following:</p> <pre><code>DECLARE @MyNumber INT, @PadCount INT SELECT @MyNumber = 123, @PadCount = 8 SELECT REPLACE(STR(@MyNumber, @PadCount), ' ', '0') </code></pre> <p>Good luck!</p> http://stackoverflow.com/questions/1573606/wcf-maxreceivedmessagesize-question/1573650#1573650 1 Answer by Ed Altorfer for WCF MaxReceivedMessageSize Question Ed Altorfer 2009-10-15T16:48:43Z 2009-10-15T16:48:43Z <p>You need to set the MaxReceivedMessageSize attribute in your binding configuration. By default, it is 65536. I assume you're using data sets or something of that nature that end up being pretty large (mostly because they're represented with XML usually).</p> <p>The good news is that I think you only need to change this in your client configuration. Take a look below.</p> <pre><code>&lt;bindings&gt; &lt;netTcpBinding&gt; &lt;binding name="MyTcpBinding" maxReceivedMessageSize="2000000"/&gt; &lt;/netTcpBinding&gt; &lt;bindings&gt; </code></pre> http://stackoverflow.com/questions/1573547/after-reading-simply-rails-2/1573608#1573608 2 Answer by Ed Altorfer for after reading Simply Rails 2 Ed Altorfer 2009-10-15T16:42:56Z 2009-10-15T16:42:56Z <p>This is a pretty open-ended question, but I'd suggest a few things:</p> <ul> <li>Get really familiar with the Ruby language as a whole, and its constituent components like RDoc, stdlib, and the Rails API itself</li> <li>Take on a project for a friend, or build some kind of personal application that you've been wanting to create for a long time</li> <li>Try to re-create some popular web site to demonstrate your proficiency in Rails--it can even be something relatively simple, like Digg</li> <li>Take a look at <a href="http://www.softwaredeveloper.com/features/74-ruby-on-rails-resources-tutorials-050207/" rel="nofollow">http://www.softwaredeveloper.com/features/74-ruby-on-rails-resources-tutorials-050207/</a> -- there are great resouces there for Ruby, including books, tutorials, and more theoretical material</li> <li>Start learning about different methods of testing: unit testing, fuzz testing, scenario testing, etc.</li> </ul> <p>One mistake notoriously made by new developers (especially with Rails) is that reading a book will give you all the tools you need to be a successful developer. This simply is not true. You basically need to get out there and really demonstrate your skills in a real-world sense (by creating real-world applications).</p> <p>Understanding how to write code is not sufficient; you also need to know how to deploy it, maintain it, and test it effectively.</p> http://stackoverflow.com/questions/1250402/whats-an-extensible-way-of-implementing-server-side-command-processing-in-an-mmo 4 What's an extensible way of implementing server-side command processing in an MMORPG? Ed Altorfer 2009-08-09T02:21:30Z 2009-08-09T21:49:21Z <p>Hey everyone,</p> <p><strong>Update: I'm sorry if maybe my question isn't clear enough. I've read about the command pattern, but unfortunately have not used it myself. I'm trying to figure out how I could use it (or some other pattern) to make game events abstract enough that the server can process them using a single Process() method. My main hang up here is making sure the game events receive enough information to actually DO what they need to do (e.g., log in a user and add them to the active user list, send map data, move a player, etc.). A relevant example would be very much appreciated.</strong></p> <p>I'm pretty new to game development but have decided to start working on a (relatively) simple, 2D MMORPG in my spare time. I would consider myself to be a very capable programmer and I have a good foundation of skills, but I'm still grappling with some of the design related to a client-server game. Specifically, I'm having a hard time thinking of an extensible way to process commands. Let me provide a functional example:</p> <p><strong>Log In Request</strong></p> <ol> <li>Start the game</li> <li>Click "Continue"</li> <li>Type a user name and password</li> <li>Click "Log In"</li> <li>See the character wherever you were when you logged out</li> </ol> <p>From a client-server architecture perspective, here's what I'm doing right now:</p> <p><strong>[Client]</strong></p> <ol> <li>Send a <strong>SimpleTextNetworkMessage</strong> to the server - {LogInRequest, UN:[UserName]|PW:[Password]}</li> <li>Darken the UI and wait for a response (timeout: 10 seconds)</li> <li>Receive a <strong>SimpleTextNetworkMessage</strong> from the server - {LogInSuccessResponse, [Player ID]}</li> <li>Send a <strong>SimpleTextNetworkMessage</strong> to the server - {GetPlayerInfoRequest, [Player ID]}</li> <li>Receive a <strong>SimpleDataNetworkMessage</strong> from the server - {GetPlayerInfoResponse, [Player Info]}</li> <li>Send a <strong>SimpleTextNetworkMessage</strong> to the server - {GetMapInfoRequest, [Player ID]}</li> <li>Receive a <strong>SimpleDataNetworkMessage</strong> from the server - {GetMapInfoResponse, [MapData]}</li> <li>Draw the screen</li> </ol> <p>My example identifies three key events that occur:</p> <p><strong>Process Log In</strong></p> <p><em>Validate the information the user provided, download the player information from the database (HP, MP, last location, etc.), and associate the player with a map and a connection.</em></p> <p><strong>Get Player Info</strong></p> <p><em>Send back information about the player's stats, equipment, experience, current map ID, and anything else that needs to be displayed on the UI.</em></p> <p><strong>Get Map Info</strong></p> <p><em>Send information to the player about all the tiles within a 50 tile radius...this should include tile information for a three-layer map and the locations and names of NPCs/monsters/players; when the player moves, more map information will be requested/updated.</em></p> <p>You can see that each of these processes is different and requires different information. On the server-side, how can I do something like:</p> <pre><code>while (ServerIsRunning) { foreach (Client c in clients) { eventQueue.AddList(c.ReceiveAll()); } foreach(GameEvent event in eventQueue) { event.Process(); } int[] keys = messageQueue.Keys; foreach (int key in keys) { Client c = clients.Get(key); foreach(NetworkMessage message in messageQueue[key]) { c.Send(message); } } } </code></pre> http://stackoverflow.com/questions/1046405/what-is-a-clean-intuitive-approach-to-extending-a-sealed-class-in-net-1-1 1 What is a clean/intuitive approach to extending a sealed class in .NET 1.1? Ed Altorfer 2009-06-25T21:42:39Z 2009-06-25T23:21:22Z <p>Hey all,</p> <p>I'm in the process of architecting a library that will be used in multiple releases of a product, and part of its job is to augment some of the functionality that doesn't exist in .NET 1.1, since we're required to use it. Probably the best example of this is the String.IsNullOrEmpty method, whose functionality we rely on fairly heavily. </p> <p>The String class in .NET is sealed; I've thought about using either the Adapter or Decorator patterns to extend the functionality of the class by wrapping the original string, but I'm not convinced that this is a very intuitive approach for what I'm trying to do. I've also looked at <a href="http://stackoverflow.com/questions/657503/how-to-handle-a-class-you-want-to-extend-which-is-sealed-in-the-net-library">another post on StackOverflow</a> about a similar question, but it again raises the issue I just mentioned.</p> <p>I could definitely use Adapter to create the functionality I'm looking for, but I can't imagine doing this for every string:</p> <pre><code>bool isEmpty = new StringExtensionAdapter(myXmlNode.SelectSingleNode(myXpathString)).IsNullOrEmpty(); if (isEmpty) { // Do something } </code></pre> <p>I don't necessarily dislike this approach, but it seems like it results in a lot of memory management where a different solution might be better. Also, I'm not crazy about creating a "StringUtility" library since that approach takes me further away from the object-oriented design I'd like to follow.</p> <p>Any input would be helpful; if I'm just crazy and should use one of these approaches, let me know. I'm searching more for best practices than a solution, since I have several.</p> http://stackoverflow.com/questions/876440/how-to-move-from-windows-applications-programming-winforms-using-c-net-to-web/876452#876452 1 Answer by Ed Altorfer for How to move from windows applications programming (WinForms using C#.NET) to web applications programming (ASP.NET)? Ed Altorfer 2009-05-18T06:21:31Z 2009-05-18T06:21:31Z <p>A lot of people seem to be moving to web applications these days; the good news is that it isn't as hard as you might think. ASP.NET takes advantage of a lot of the same design patterns for the UI framework as WinForms, so it should be pretty straightforward.</p> <p>Also, moving to ASP.NET, you can still leverage all your knowledge about C#, since it's one of the supported languages for the technology. You'll be up and running in no time.</p> <p>There are a couple ways you can build user interfaces with ASP.NET, but the most common is ASP.NET WebForms. You can also use frameworks that provide some abstraction like ASP.NET MVC (similar to Ruby on Rails) if you want to separate your business logic and your interface a bit more.</p> <p>I'd suggest taking a look at <a href="http://www.asp.net" rel="nofollow">http://www.asp.net</a>, which has a ton of great resources for getting off the ground as well as videos, samples, and walkthroughs. Best of luck; I'm sure you'll be fine!</p> http://stackoverflow.com/questions/876095/why-have-a-create-method-instead-of-using-new/876201#876201 4 Answer by Ed Altorfer for Why have a Create method instead of using "new"? Ed Altorfer 2009-05-18T03:55:54Z 2009-05-18T03:55:54Z <p>The particular example you've posted wouldn't really have any advantage over using a normal constructor. There are two <strong>common</strong> patterns, however, which use a method like this to yield an object:</p> <p><strong>Singleton Pattern</strong></p> <p>The singleton pattern can be used when you want to prevent multiple instances of an object from being created but still want to leverage the object-oriented aspects of a class (e.g., fields, properties, parameterless methods). Example:</p> <pre><code>public class MySingletonClass { private MySingletonClass currentInstance = null; public MySingletonClass CreateInstance() { if (currentInstance == null) { currentInstance = new MySingletonClass(); } else { return currentInstance; } } } </code></pre> <p><strong>Factory Pattern</strong></p> <p>The factory pattern is a great opportunity to abstract the creation of concrete classes; for example, let's assume for a moment that you have some XML, and depending on which node (NodeA, NodeB, or NodeC) you see in the XML, you have a different class that will process it. Example:</p> <pre><code>public class MyXmlProcessorFactory { public static IMyXmlProcessor GetMyXmlProcessor(XmlDocument document) { XmlNode rootNode = document.DocumentElement; if (rootNode.SelectSingleNode("NodeA") != null) { return new NodeAMyXmlProcessor(); } else if (rootNode.SelectSingleNode("NodeB") != null) { return new NodeBMyXmlProcessor(); } else if (rootNode.SelectSingleNode("NodeC") != null) { return new NodeCMyXmlProcessor(); } else { return new DefaultMyXmlProcessor(); } } } </code></pre> http://stackoverflow.com/questions/876171/how-do-audit-a-code-base-to-find-code-no-longer-used-required/876179#876179 0 Answer by Ed Altorfer for How do audit a code base to find code no longer used/required? Ed Altorfer 2009-05-18T03:44:30Z 2009-05-18T03:44:30Z <p>Hey there,</p> <p>There are tools that help you identify dead code paths in your code and classes/methods that are unused. One of them is <a href="http://www.aivosto.com/project/project.html" rel="nofollow">Project Analyzer</a> for Visual Basic, but there are others as well. It really depends on what language you're using.</p> <p>One thing you might also consider is revisiting your design documentation, if you have it. Evaluate what your product is being used for and all the use cases. Then, look at your UML/class diagrams and try to identify whether you have objects and helpers that are unnecessary.</p> <p>This is also a really great time for you to contemplate architectural changes since you're going to be cutting a ton of code out of your code base anyway. Removal and re-architecture of spaghetti code can lead to huge performance and maintainability gains, and I commend you for taking on the audit.</p> http://stackoverflow.com/questions/864773/resource-for-learning-java-generics/864787#864787 0 Answer by Ed Altorfer for Resource for learning Java generics? Ed Altorfer 2009-05-14T17:53:52Z 2009-05-14T17:53:52Z <p>It sounds like maybe you're missing out on some design patterns and refactoring techniques. There's not really any way to learn this over night, but if you read up on some of the design patterns that are out there, it might get you thinking about how you could write code to be a little more generic and reusable.</p> <ul> <li><a href="http://www.javacamp.org/designPattern/" rel="nofollow">Design Patterns for Java</a></li> <li><a href="http://oreilly.com/catalog/9780596007126/" rel="nofollow">Head First Design Patterns</a></li> <li><a href="http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf" rel="nofollow">Generics in the Java Programming Language</a> (PDF)</li> <li><a href="http://hoskinator.blogspot.com/2006/06/10-tips-on-writing-reusable-code.html" rel="nofollow">10 Tips on Writing Reusable Code</a></li> </ul> http://stackoverflow.com/questions/864736/what-is-a-extensive-asp-net-mvc-sample-app-that-uses-the-entity-framework/864774#864774 2 Answer by Ed Altorfer for What is a extensive ASP.NET MVC sample app that uses the entity framework? Ed Altorfer 2009-05-14T17:51:28Z 2009-05-14T17:51:28Z <p>You might want to consider <a href="http://blogs.msdn.com/brada/archive/2008/01/29/asp-net-mvc-example-application-over-northwind-with-the-entity-framework.aspx" rel="nofollow">an example that has been built</a> using ASP.NET MVC and the Entity Framework using the Northwind database, which is a pretty good representation of a typical business-type database.</p> <p>Also, if you're not familiar with the web site already, <a href="http://asp.net" rel="nofollow">ASP.NET</a> has some great resources for <a href="http://www.asp.net/mvc/" rel="nofollow">ASP.NET MVC</a>.</p> http://stackoverflow.com/questions/864685/best-net-framework-2-0-book-for-c-libraries/864755#864755 0 Answer by Ed Altorfer for Best .NET Framework 2.0 book for C#, Libraries? Ed Altorfer 2009-05-14T17:47:52Z 2009-05-14T17:47:52Z <p>It sounds like you have a good grasp on C# itself, so you probably want to know what was in 2.0 that isn't in 3.0 or 3.5. For this reason, you might be interested in some of the following resources, namely the C# 2.0 standard:</p> <ul> <li><a href="http://www.ecma-international.org/publications/standards/Ecma-334.htm" rel="nofollow">ECMA C# 2.0 Standard</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0072262095" rel="nofollow">C# 2.0 - The Complete Reference</a></li> <li>Any of the C# books by <a href="http://www.apress.com/" rel="nofollow">Apress</a></li> </ul> <p>I particularly like the C# 2.0 Complete Reference book, and keep a copy on my desk at home, but the C# 2.0 standard is incomparably good as well; it's just a question of whether you can stay awake long enough to get through any of it. :)</p> http://stackoverflow.com/questions/864039/how-do-i-see-common-items-between-2-array-of-objects/864605#864605 0 Answer by Ed Altorfer for How do I see common Items between 2 array of Objects Ed Altorfer 2009-05-14T17:18:03Z 2009-05-14T17:18:03Z <p>You will need to override the object's Equals method. You can find <a href="http://msdn.microsoft.com/en-us/library/ms173147.aspx" rel="nofollow">some guidelines</a> at Microsoft's web site.</p> <p>I've provided a sample below:</p> <pre><code>public override bool Equals(System.Object obj) { if (obj != null &amp;&amp; obj is MyClass) { MyClass obj2 = (MyClass)obj; return (obj2.ID == this.ID); } } </code></pre> <p>If you do not override this method, any kind of sort/intersect/comparison will compare the objects based on their reference; so, if two objects refer to the same spot in memory, they are considered "equal."</p> http://stackoverflow.com/questions/324935/mysql-with-clause/864553#864553 0 Answer by Ed Altorfer for mysql "with" clause Ed Altorfer 2009-05-14T17:07:07Z 2009-05-14T17:07:07Z <p>You've got the syntax right:</p> <pre><code>WITH AuthorRating(AuthorName, AuthorRating) AS SELECT aname AS AuthorName, AVG(quantity) AS AuthorRating FROM Book GROUP By Book.aname </code></pre> <p>However, as others have mentioned, MySQL does not support this command. WITH was added in SQL:1999; the newest version of the SQL standard is SQL:2008. You can find some more information about databases that support SQL:1999's various features on <a href="http://en.wikipedia.org/wiki/SQL:1999" rel="nofollow">Wikipedia</a>.</p> <p>MySQL has traditionally lagged a bit in support for the SQL standard, whereas commercial databases like Oracle, SQL Server (recently), and DB2 have followed them a bit more closely. PostgreSQL is typically pretty standards compliant as well.</p> <p>You may want to look at MySQL's roadmap; I'm not completely sure when this feature might be supported, but it's great for creating readable roll-up queries.</p> http://stackoverflow.com/questions/864437/why-is-microsoft-not-developing-a-halo-like-next-gen-title-using-c/864474#864474 5 Answer by Ed Altorfer for Why is Microsoft not developing a Halo-like next gen title using C#? Ed Altorfer 2009-05-14T16:51:01Z 2009-05-14T16:51:01Z <p>Microsoft has a platform like this, called <a href="http://creators.xna.com/en-US/" rel="nofollow">XNA</a>, that they have been developing for the past three years. There are a number of proofs of concept, starter kits, and other resources for hobbyist developers and AAA studios.</p> <p>XNA enables all kinds of developers to use their existing C# skills and the power of the Xbox 360 / Windows to build games for either / both platforms. They haven't developed a commercial game themselves using the platform yet, but there have been a number of pretty cool projects to use XNA already. </p> <p>Take a look at some of the <a href="http://catalog.xna.com/en-US/gamescatalog.aspx" rel="nofollow">games that have been created</a> using XNA.</p> <p>Also, for the comments about C#'s performance, you might be interested in a <a href="http://www.codeguru.com/forum/showthread.php?p=506683" rel="nofollow">forum discussion</a> on the topic. It's definitely fast enough for many games; in fact, XNA's execution engine on the Xbox is optimized in a number of ways for game development scenarios and at reducing the cost of garbage collection (I have no source to cite, but I worked as an intern on the .NET execution engine for the Xbox 360).</p> http://stackoverflow.com/questions/826971/registry-watcher-c/849522#849522 7 Answer by Ed Altorfer for Registry Watcher C# Ed Altorfer 2009-05-11T18:55:39Z 2009-05-14T00:26:16Z <p>WMI can sometimes be interesting to work with...I think I understand your question, so take a look at the code snippet below and let me know if it's what you're looking for.</p> <pre><code>// --------------------------------------------------------------------------------------------------------------------- // &lt;copyright file="Program.cs" company=""&gt; // // &lt;/copyright&gt; // &lt;summary&gt; // Defines the WmiChangeEventTester type. // &lt;/summary&gt; // --------------------------------------------------------------------------------------------------------------------- namespace WmiExample { using System; using System.Management; /// &lt;summary&gt; /// &lt;/summary&gt; public class WmiChangeEventTester { /// &lt;summary&gt; /// Initializes a new instance of the &lt;see cref="WmiChangeEventTester"/&gt; class. /// &lt;/summary&gt; public WmiChangeEventTester() { try { // Your query goes below; "KeyPath" is the key in the registry that you // want to monitor for changes. Make sure you escape the \ character. WqlEventQuery query = new WqlEventQuery( "SELECT * FROM RegistryValueChangeEvent WHERE " + "Hive = 'HKEY_LOCAL_MACHINE'" + @"AND KeyPath = 'SOFTWARE\\Microsoft\\.NETFramework' AND ValueName='InstallRoot'"); ManagementEventWatcher watcher = new ManagementEventWatcher(query); Console.WriteLine("Waiting for an event..."); // Set up the delegate that will handle the change event. watcher.EventArrived += new EventArrivedEventHandler(HandleEvent); // Start listening for events. watcher.Start(); // Do something while waiting for events. In your application, // this would just be continuing business as usual. System.Threading.Thread.Sleep(100000000); // Stop listening for events. watcher.Stop(); } catch (ManagementException managementException) { Console.WriteLine("An error occurred: " + managementException.Message); } } /// &lt;summary&gt; /// &lt;/summary&gt; /// &lt;param name="sender"&gt; /// The sender. /// &lt;/param&gt; /// &lt;param name="e"&gt; /// The e. /// &lt;/param&gt; private void HandleEvent(object sender, EventArrivedEventArgs e) { Console.WriteLine("Received an event."); // RegistryKeyChangeEvent occurs here; do something. } /// &lt;summary&gt; /// &lt;/summary&gt; public static void Main() { // Just calls the class above to check for events... WmiChangeEventTester receiveEvent = new WmiChangeEventTester(); } } } </code></pre> http://stackoverflow.com/questions/856115/should-one-test-internal-implementation-or-only-test-public-behaviour/859592#859592 3 Answer by Ed Altorfer for Should one test internal implementation, or only test public behaviour? Ed Altorfer 2009-05-13T18:28:38Z 2009-05-13T18:28:38Z <p>There have been a lot of great responses to this question so far, but I want to add a few notes of my own. As a preface: I am a consultant for a large company that delivers technology solutions to a wide range of large clients. I say this because, in my experience, we are required to test much more thoroughly than most software shops do (save maybe API developers). Here are some of the steps we go through to ensure quality:</p> <ul> <li><strong>Internal Unit Test:</strong><br/> Developers are expected to create unit tests for all the code they write (read: every method). The unit tests should cover positive test conditions (does my method work?) and negative test conditions (does the method throw an ArgumentNullException when one of my required arguments is null?). We typically incorporate these tests into the build process using a tool like CruiseControl.net</li> <li><strong>System Test / Assembly Test:</strong><br /> Sometimes this step is called something different, but this is when we begin testing public functionality. Once you know all your individual units function as expected, you want to know that your external functions also work the way you think they should. This is a form of functional verification since the goal is to determine whether the entire system works the way it should. Note that this does not include any integration points. For system test, you should be using mocked-up interfaces instead of the real ones so that you can control the output and build test cases around it.</li> <li><strong>System Integration Test:</strong><br /> At this stage in the process, you want to connect your integration points to the system. For example, if you're using a credit card processing system, you'll want to incorporate the live system at this stage to verify that it still works. You would want to perform similar testing to system/assembly test.</li> <li><strong>Functional Verification Test:</strong> <br /> Functional verification is users running through the system or using the API to verify that it works as expected. If you've built an invoicing system, this is the stage at which you will execute your test scripts from end to end to ensure that everything works as you designed it. This is obviously a critical stage in the process since it tells you whether you've done your job.</li> <li><strong>Certification Test:</strong> <br /> Here, you put real users in front of the system and let 'em have a go at it. Ideally you've already tested your user interface at some point with your stakeholders, but this stage will tell you whether your target audience likes your product. You might've heard this called something like a "release candidate" by other vendors. If all goes well at this stage, you know you're good to move into production. Certification tests should always be performed in the same environment you'll be using for production (or an identical environment at least).</li> </ul> <p>Of course, I know that not everyone follows this process, but if you look at it from end to end, you can begin to see the benefits of the individual components. I haven't included things like build verification tests since they happen on a different timeline (e.g., daily). I personally believe that unit tests are critical, because they give you deep insight into which specific component of your application is failing at which specific use case. Unit tests will also help you isolate which methods are functioning correctly so that you don't spend time looking at them for more information about a failure when there's nothing wrong with them.</p> <p>Of course, unit tests could also be wrong, but if you develop your test cases from your functional/technical specification (you have one, right? ;)), you shouldn't have too much trouble. </p> http://stackoverflow.com/questions/849557/in-c-how-many-lines-before-a-class-should-be-consider-to-be-refactored/849578#849578 4 Answer by Ed Altorfer for In C# how many lines before a class should be consider to be refactored? Ed Altorfer 2009-05-11T19:12:20Z 2009-05-11T19:12:20Z <p>I wouldn't say that there's any "rule of thumb" for refactoring large classes. Sometimes a class really encapsulates a lot of business logic and should be as large as it is. However, you might consider asking yourself a few questions:</p> <ol> <li><p>(Assuming you're writing object oriented code) Is my code truly object-oriented? That is, does it follow the Single Responsibility Principle (thanks, Nebakanezer)? Is this class a helper class? If so, how could I refactor its methods into more appropriate object classes?</p></li> <li><p>Do I have a solid architecture? That is, am I making use of abstraction and inheritance rather than re-inventing the wheel in every class? Are overloaded methods calling base methods as appropriate?</p></li> <li><p>Do I really need all this code? Could some of the logic be externalized using xpath, lambda expressions, or some form of database driven expressions?</p></li> <li><p>Is the code extensible? Is it easy to maintain? Was it well-architected from the beginning, or are we always making small patches to try to fix problems?</p></li> </ol> <p>I hope that this helps a little; it can be difficult to refactor large classes, but I think if you start looking through my questions, you may find pretty quickly that there is room for improvement in your code...I know I typically do. </p> <p>Especially look at #1--it's really common for people to create a ton of helper classes all over the place, which is very anti-object oriented (in my opinion). That's a different topic, but you may want to see what really -belongs- in the class you've made and what could/should be somewhere else.</p> <p>As a rule of thumb, if the class is maintainable and flexible, it may not need to be changed. :)</p> http://stackoverflow.com/questions/848729/use-external-file-or-resource/849550#849550 0 Answer by Ed Altorfer for use external file or resource? Ed Altorfer 2009-05-11T19:04:11Z 2009-05-11T19:04:11Z <p>To more directly answer your question, the "best practice" would be to use a resource file for any localizable (even if you're not going to localize it) string in your application. This allows you compile-time access to the string and keeps it from being externalized as a separate file to deploy with your application.</p> <p>I suggest using this approach; settings are similar, but should not be used unless what you're storing there actually represents a setting. Constants are the other option, but in the case of a long string, I'd stay away from them, just for the sake of maintainability.</p> http://stackoverflow.com/questions/849422/practical-tips-debugging-deep-recursion/849457#849457 1 Answer by Ed Altorfer for Practical tips debugging deep recursion? Ed Altorfer 2009-05-11T18:40:29Z 2009-05-11T18:40:29Z <p>I know what a pain this can be. At my job, we are currently working with a 3rd party application that basically behaves as a black box, so we have to devise some interesting debugging techniques to help us work around issues.</p> <p>When I was taking a compiler theory course in college, we used a software library to visualize our trees; this might help you as well, as it could help you see what the tree looks like. In fact, you could build yourself a WinForms/WPF application to dump the contents of your tree into a TreeView control--it's messy, but it'll get the job done.</p> <p>You might want to consider some kind of debug output, too. I know you mentioned that your tree is large, but perhaps debug statements or breaks at key point during execution that you're having trouble visualizing would lend you a hand.</p> <p>Bear in mind, too, that intelligent debugging using Visual Studio can work wonders. It's tough to see how state is changing across multiple breaks, but Visual Studio 2010 should actually help with this.</p> <p>Unfortunately, it's not particularly easy to help you debug without further information. Have you identified the first depth at which it starts to break? Does it continue to break with higher search depths? You might want to evaluate your working cases and try to determine how it's different.</p> http://stackoverflow.com/questions/849149/connect-different-windows-user-in-sql-server-management-studio-2005-or-later/849432#849432 0 Answer by Ed Altorfer for Connect different Windows User in SQL Server Management Studio (2005 or later). Ed Altorfer 2009-05-11T18:32:54Z 2009-05-11T18:32:54Z <p>There are many places where someone might want to deploy this kind of scenario, but due to the way integrated authentication works, it is not possible.</p> <p>As gbn mentioned, integrated authentication uses a special token that corresponds to your Windows identity. There are coding practices called "impersonation" (probably used by the Run As... command) that allow you to effectively perform an activity as another Windows user, but there is not really a way to arbitrarily act as a different user (à la Linux) in Windows applications aside from that.</p> <p>If you really need to administer multiple servers across several domains, you might consider one of the following:</p> <ol> <li>Set up <a href="http://technet.microsoft.com/en-us/library/cc961481.aspx" rel="nofollow">Domain Trust</a> between your domains so that your account can access computers in the trusting domain</li> <li>Configure a SQL user (using mixed authentication) across all the servers you need to administer so that you can log in that way; obviously, this might introduce some security issues and create a maintenance nightmare if you have to change all the passwords at some point.</li> </ol> <p>Hopefully this helps!</p> http://stackoverflow.com/questions/837257/whats-the-best-way-to-store-calculate-user-scores/837585#837585 2 Answer by Ed Altorfer for What's the best way to store/calculate user scores? Ed Altorfer 2009-05-07T23:41:23Z 2009-05-07T23:41:23Z <p>I think that this is definitely a great question. I've had to build systems that have similar behavior to this--especially when the table with the scores in it is accessed pretty often (like in your scenario). Here's my suggestion to you:</p> <p>First, create some tables like the following (I'm using SQL Server best practices, but name them however you see fit):</p> <pre><code>UserAccount UserAchievement -Guid (PK) -Guid (PK) -FirstName -UserAccountGuid (FK) -LastName -Name -EmailAddress -Score </code></pre> <p>Once you've done this, go ahead and create a view that looks something like the following (no, I haven't verified this SQL, but it should be a good start):</p> <pre><code>SELECT [UserAccount].[FirstName] AS FirstName, [UserAccount].[LastName] AS LastName, SUM([UserAchievement].[Score]) AS TotalPoints FROM [UserAccount] INNER JOIN [UserAchievement] ON [UserAccount].[Guid] = [UserAchievement].[UserAccountGuid] GROUP BY [UserAccount].[FirstName], [UserAccount].[LastName] ORDER BY [UserAccount].[LastName] ASC </code></pre> <p>I know you've mentioned some concern about performance and a lot of queries, but if you build out a view like this, you won't ever need more than one. I recommend not making this a materialized view; instead, just index your tables so that the lookups that you need (essentially, UserAccountGuid) will enable fast summation across the table.</p> <p>I will add one more point--if your UserAccount table gets huge, you may consider a slightly more intelligent query that would incorporate the names of the accounts you need to get roll-ups for. This will make it possible not to return huge data sets to your web site when you're only showing, you know, 3-10 users' information on the page. I'd have to think a bit more about how to do this elegantly, but I'd suggest staying away from "IN" statements since this will invoke a linear search of the table.</p> http://stackoverflow.com/questions/213298/mmorpg-client-server-coding/213350#213350 2 Answer by Ed Altorfer for MMORPG Client/Server Coding Ed Altorfer 2008-10-17T18:44:28Z 2008-12-29T03:02:03Z <p>A lot of games use UDP for movement related activities--so, like, when you are walking, chances are, a bunch of UDP requests are being sent. The server still ultimately controls whether that's valid, but you don't necessarily care whether every single packet gets to the server. This is why a lot of game clients also use some kind of prediction mechanism.</p> <p>In terms of your second mention, yes, it's very common for all control to be managed by the server. You don't want clients to be broadcasting anything to the server; you should do error and input handling server side to prevent people from hacking. You might also limit input per second.</p> <p>Anyway, a combination of UDP and TCP would be appropriate--you just need to ask yourself, "Do I want reliability or speed?"</p> http://stackoverflow.com/questions/231753/microsoft-and-the-windows-api-war/231783#231783 2 Answer by Ed Altorfer for Microsoft and the Windows API War Ed Altorfer 2008-10-23T22:25:11Z 2008-10-23T22:25:11Z <p>For the sake of full disclosure, I will say right off the bat that I am a full-time .NET developer for a company that is partly owned by Microsoft.</p> <p>Having said that, no, I don't think that Microsoft is losing the API war, for several reasons.</p> <ul> <li>Windows Vista was the recipient of some pretty drastic additions and chages to the Windows API--in fact, one could argue (I won't go so far as to do so) that the focus of Windows Vista was to improve the Windows subsystem and API features.</li> <li>.NET, ASP.NET, ASP.NET MVC, WPF/E, WPF, WCF, IIS 7, and a whole host of other new technologies by Microsoft have been steadily gaining market share. I use a number of these technologies, and one of the biggest reasons I use them is for the well-designed APIs.</li> </ul> <p>I don't want to get into a religious war, but when I compare Microsoft APIs to competitors (like Java, Mac OSX, etc.), I find that I like Microsoft's style of architecture more. That isn't to say that other APIs aren't good as well, but I prefer Microsoft.</p> http://stackoverflow.com/questions/230677/mapping-strongly-typed-datasets-in-a-generic-filldataset-method-in-c 1 Mapping strongly-typed DataSets in a generic FillDataSet method in C#? Ed Altorfer 2008-10-23T17:39:40Z 2008-10-23T20:41:19Z <p><strong>Edit:</strong> I am using SqlDataAdapters to fill the data sets. Sorry--I should have been more clear.</p> <p>I'm working on a project where I need to fill a number of strongly-typed data sets with information from stored procedures. Right now, I have a generic method in my data access layer:</p> <pre><code>public static DataSet FillDataSet(DataSet dataSet, string storedProcedureName, Dictionary&lt;string, string&gt; parameters); </code></pre> <p>The problem with this is that I need to establish mappings between the returned recordsets from the stored procedure and the tables in my data sets. I have come up with two options for doing this:</p> <ul> <li>Add a new formal to my <code>FillDataSet</code> method (<code>KeyValuePair&lt;string, string&gt;[] mappings</code>) that would provide the information for the table mappings.</li> <li>Create a <code>DataSetMappingFactory</code> that would take a DataSet as a parameter and then add the appropriate mappings based on its type. If it were an unknown type, then it wouldn't add any mappings. Then, it would return the <code>DataSet</code> to the <code>FillDataSet</code> method.</li> </ul> <p>Do any of you have other thoughts about how I could approach this problem? Also, does anyone want to weigh in on an approach that would be best in terms of object-oriented design?</p> http://stackoverflow.com/questions/231206/database-design-hard-coded-row-id/231224#231224 0 Answer by Ed Altorfer for Database Design - Hard Coded Row ID Ed Altorfer 2008-10-23T19:55:48Z 2008-10-23T19:55:48Z <p>Maybe you could post an example to help us better understand, but if you have some rows that are designated as "system" entries, you could consider adding a column to the table called Order and then, when you create an entry that is designed to be the system entry, you can increment the Order column. </p> <p>For most other things, like lookup tables, you should be able to control the row IDs more explicitly and use them.</p> http://stackoverflow.com/questions/230829/what-is-a-good-non-wysiwyg-editor-for-html/230866#230866 2 Answer by Ed Altorfer for What is a good non-WYSIWYG editor for HTML? Ed Altorfer 2008-10-23T18:26:14Z 2008-10-23T18:26:14Z <p>I really like Microsoft Expression Web 2.0 or Microsoft SharePoint Designer 2007, depending on my needs.</p> <p>Specifically, Microsoft Expression Web 2.0 supports development of the basics (HTML, CSS, etc.) while including Intellisense for ASP.NET and PHP. </p> <p>Microsoft SharePoint Designer 2007 includes support for SharePoint Services and MOSS.</p> <p>I've heard people say that they like Dreamweaver, but it's a little on the bloated side for my taste. Both the tools I mentioned above allow for WYSIWYG editing, but they support all the features you listed as well. They also allow for doctype support and validation for accessibility, etc.</p> http://stackoverflow.com/questions/230397/is-there-a-clean-t-sql-query-i-can-use-to-verify-an-index-has-the-right-columns/230442#230442 3 Answer by Ed Altorfer for Is there a clean T-SQL query I can use to verify an index has the right columns? Ed Altorfer 2008-10-23T16:35:34Z 2008-10-23T17:49:23Z <p>I don't have a database immediately on-hand to test this, but you should be able to see if a column exists in an index by using the following IF EXISTS statement.</p> <p>I'm not sure whether you can alter an index on the fly.</p> <pre><code>IF EXISTS ( SELECT MyIndex.Name AS IndexName, Columns.name AS ColumnName FROM sys.indexes MyIndex INNER JOIN sys.index_columns IndexColumns ON MyIndex.index_id = IndexColumns.index_id AND MyIndex.object_id = IndexColumns.object_id INNER JOIN sys.columns Columns ON Columns.column_id = IndexColumns.column_id AND IndexColumns.object_id = Columns.object_id WHERE Columns.name = 'ColumnName' AND MyIndex.Name='IX_MyIndexName' ) </code></pre> http://stackoverflow.com/questions/1592291/what-is-the-email-subject-length-limit/1592300#1592300 Comment by Ed Altorfer on What is the email subject length limit? Ed Altorfer 2009-10-20T04:37:16Z 2009-10-20T04:37:16Z I agree with you for practical purposes, but I think that 256 is better than some of the other options you mentioned since it is more consistent with other products. http://stackoverflow.com/questions/1573638/is-this-a-good-enough-function-to-pad-0s-to-the-left-of-an-nvarchar/1573727#1573727 Comment by Ed Altorfer on Is this a good enough function to pad 0's to the left of an nvarchar? Ed Altorfer 2009-10-15T18:41:09Z 2009-10-15T18:41:09Z Yep—you could cast the result to NVARCHAR if you need to. http://stackoverflow.com/questions/1573544/is-it-wrong-to-have-db-server-installed-in-the-ci-server Comment by Ed Altorfer on Is it wrong to have DB Server installed in the CI Server Ed Altorfer 2009-10-15T16:44:16Z 2009-10-15T16:44:16Z Why is it actually necessary for you to do this? What CI product are you using? Are you concerned about performance if you separate CI from the database server? http://stackoverflow.com/questions/1250402/whats-an-extensible-way-of-implementing-server-side-command-processing-in-an-mmo/1252290#1252290 Comment by Ed Altorfer on What's an extensible way of implementing server-side command processing in an MMORPG? Ed Altorfer 2009-08-09T21:51:12Z 2009-08-09T21:51:12Z Thanks! I've read about this pattern already in relation to games, but I'm having a hard time figuring out how the commands will have access to the things they need. For example, how can a log in command attach the user token to an active user list once the command is successful and put a success message on the send queue? How can a character move request process the move on a map and then send an acknowledgement back to the client? Etc. Thanks again! http://stackoverflow.com/questions/1250402/whats-an-extensible-way-of-implementing-server-side-command-processing-in-an-mmo Comment by Ed Altorfer on What's an extensible way of implementing server-side command processing in an MMORPG? Ed Altorfer 2009-08-09T03:43:46Z 2009-08-09T03:43:46Z You can see that each of these processes is different and requires different information. On the server-side, how can I do something like:... http://stackoverflow.com/questions/876095/why-have-a-create-method-instead-of-using-new/876112#876112 Comment by Ed Altorfer on Why have a Create method instead of using "new"? Ed Altorfer 2009-05-18T03:46:19Z 2009-05-18T03:46:19Z As BillyONeal mentioned, this is -not- the Singleton pattern; Singleton forces only one instance of a class to ever be created. A great example of when you might want to use the Singleton pattern is for settings classes where only one should ever exist. http://stackoverflow.com/questions/864039/how-do-i-see-common-items-between-2-array-of-objects/864605#864605 Comment by Ed Altorfer on How do I see common Items between 2 array of Objects Ed Altorfer 2009-05-14T20:25:16Z 2009-05-14T20:25:16Z Your comments don't really give me enough detail to provide you with a better solution. If you could provide an example of what you're doing, it would make for a more succinct question. http://stackoverflow.com/questions/807653/game-development-in-vb-net/807684#807684 Comment by Ed Altorfer on Game Development in vb.Net Ed Altorfer 2009-05-14T18:22:27Z 2009-05-14T18:22:27Z As a caveat to this, you cannot use VB.NET to develop games for the Xbox 360 using XNA. Only C# 3.0 is supported. <a href="http://creators.xna.com/en-us/xnags_islive" rel="nofollow">creators.xna.com/en-us/xnags_islive</a> http://stackoverflow.com/questions/864437/why-is-microsoft-not-developing-a-halo-like-next-gen-title-using-c/864470#864470 Comment by Ed Altorfer on Why is Microsoft not developing a Halo-like next gen title using C#? Ed Altorfer 2009-05-14T18:16:54Z 2009-05-14T18:16:54Z I have to agree here. When people talk about garbage collection, they often forget that (de)allocation is not free. It's not like, if you don't use a garbage collector, your memory just magically gets cleaned up with no performance impact. Any time you manage memory (or any I/O for that matter), you're going to incur a performance impact. Jalf is right when he suggests that, in many allocation tests, C#/Java/(insert managed language here) performs as good as if not better than C++ when it comes to memory management because of the overhead of malloc. http://stackoverflow.com/questions/826971/registry-watcher-c/849513#849513 Comment by Ed Altorfer on Registry Watcher C# Ed Altorfer 2009-05-14T06:29:02Z 2009-05-14T06:29:02Z Let's not be rude, guys. The question asked for example code; also, one must bear in mind that some links become stale and example code will be archived here for the foreseeable future. :) http://stackoverflow.com/questions/856115/should-one-test-internal-implementation-or-only-test-public-behaviour/859592#859592 Comment by Ed Altorfer on Should one test internal implementation, or only test public behaviour? Ed Altorfer 2009-05-14T06:27:23Z 2009-05-14T06:27:23Z I agree to some extent, ChrisW, but I would posit that software which is developed at a reduced cost and higher effiency is inherently of a higher quality. Also, one could argue that, if it takes you a shorter time to build something with unit tests, you have more resources to allocate to more features, which benefits your audience and your company. Just my $0.02. I think you have the right idea. :) http://stackoverflow.com/questions/856115/should-one-test-internal-implementation-or-only-test-public-behaviour/859592#859592 Comment by Ed Altorfer on Should one test internal implementation, or only test public behaviour? Ed Altorfer 2009-05-13T21:04:13Z 2009-05-13T21:04:13Z ChrisW, feel free to name them as you see fit, of course; the names I provided are the names we use at our company. I've seen assembly/system test interchanged, but yeah. At the end of the day, it's the concept and execution that matters for us. http://stackoverflow.com/questions/826971/registry-watcher-c/849522#849522 Comment by Ed Altorfer on Registry Watcher C# Ed Altorfer 2009-05-11T19:47:43Z 2009-05-11T19:47:43Z Great, Andrew. Let me know if you have any trouble re-purposing it for your own use. You can ping me on AIM if you want--e4lt0rf3R (replace the numbers with letters). I will be happy to help you resolve any additional questions you have and then post a summary of them here. http://stackoverflow.com/questions/849557/in-c-how-many-lines-before-a-class-should-be-consider-to-be-refactored/849691#849691 Comment by Ed Altorfer on In C# how many lines before a class should be consider to be refactored? Ed Altorfer 2009-05-11T19:44:35Z 2009-05-11T19:44:35Z I love your word choice--a sick feeling. Haha. I get the same feeling whenever I see people implementing their own sorting algorithm just to sort an array of numbers. :) http://stackoverflow.com/questions/849557/in-c-how-many-lines-before-a-class-should-be-consider-to-be-refactored/849567#849567 Comment by Ed Altorfer on In C# how many lines before a class should be consider to be refactored? Ed Altorfer 2009-05-11T19:12:56Z 2009-05-11T19:12:56Z I love SRP. Nice comment.