User joseph.ferris - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T18:02:30Z http://stackoverflow.com/feeds/user/15906 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1780457/ever-had-to-dumb-down-for-a-job/1780533#1780533 6 Answer by joseph.ferris for Ever had to "dumb down" for a job? joseph.ferris 2009-11-23T00:16:46Z 2009-11-23T00:16:46Z <p>Let's answer your question with another question... You say that they do not appear to be aware of any other way to do things. The question is, would they be interested if they knew? The sad truth is that in this economy, holding out for the ideal job is not an option for everyone (speaking as someone who is recently unemployed).</p> <p>It really is a fine line. If you think that taking the job will dumb you down in the process, definitely skip it. If you still have a followup interview, take an arbitrary example that might exist in their coding style, pull yourself up to a whiteboard, and show them the how and why of what you know and what you propose another solution would be. Don't try to sell it as the "right" solution, just as an option. If they see the potential in it, there is a good chance that they might be interested in changing it.</p> <p>I previously (still feels weird saying that) worked at a shop that was just like the one you described. They really did not know any better. It is easy for a busy shop to get caught in a rut and as technology and methodologies move on, they do not have a chance to stay current. We were able to start by getting things up to the current framework version, then selling the developers features by going - "Hey, this is cool, check this out... See this for loop where you are just looking for a value, look at what LINQ can do." Getting them excited about how much more productive they could be was a selling point enough, and (almost) everyone started looking for ways to improve their code.</p> http://stackoverflow.com/questions/1612946/what-is-the-thing-that-irritates-you-while-doing-maintenance-coding/1724398#1724398 0 Answer by joseph.ferris for What is the thing that irritates you while doing maintenance coding? joseph.ferris 2009-11-12T18:35:19Z 2009-11-12T18:35:19Z <p>Developers who take offense to the fact that you changed "their code" and that there is nothing wrong with it. The problem is always "somewhere else" in "someone else's" code. So I guess it would be developers who presume he or she is infallible.</p> http://stackoverflow.com/questions/1702741/reduce-duplicated-code-in-controller-actions/1702787#1702787 0 Answer by joseph.ferris for Reduce Duplicated Code in Controller Actions joseph.ferris 2009-11-09T18:21:16Z 2009-11-09T18:21:16Z <p>For this specific example, Azam Sharp has a possible solution on his <a href="http://geekswithblogs.net/AzamSharp/archive/2008/02/24/119946.aspx" rel="nofollow">blog</a>. I literally stumbled across this article no more than five minutes ago. Hope it helps!</p> http://stackoverflow.com/questions/273108/which-programming-languages-have-helped-you-to-understand-programming-better/1689307#1689307 0 Answer by joseph.ferris for Which programming languages have helped you to understand programming better? joseph.ferris 2009-11-06T18:05:29Z 2009-11-06T18:46:53Z <p>Personally, no language has done this for me. Language is largely syntax. There are implementational differences between them (i.e. OOP vs. procedural, etc.) but I found that I learned the most by doing and refactoring. Creating something that works is not as easy at making something work correctly and efficiently. I think that this is something that applies to any language and is more a tool of the developer than a result of a language.</p> <p>If anything, language might help introduce you to concepts that you previously did not know existed, but the concepts generally transcend any single language.</p> http://stackoverflow.com/questions/1646264/how-to-train-new-programmer-without-giving-full-source-code-access/1646283#1646283 2 Answer by joseph.ferris for How to train new programmer without giving full source code access? joseph.ferris 2009-10-29T20:19:26Z 2009-10-29T20:19:26Z <p>If you do not want them to modify anything other than the Views and Controllers, it can be done. We do exactly that where I work. We use Team Foundation Server, and directly remove the "check-in" permissions. For us, they are not developers, but front-end designers.</p> <p>To see how it might work for you, though, we need to know if you are using a version control system, and what it is - since that is a fairly straightforward approach. Alternatively, if the rest of your code is in a different assembly, you could always just supply them with the DLL files and their references could be set up to only use the DLL references instead.</p> http://stackoverflow.com/questions/1645565/which-microsoft-certification-path/1645611#1645611 1 Answer by joseph.ferris for Which Microsoft certification Path joseph.ferris 2009-10-29T18:16:54Z 2009-10-29T18:16:54Z <p>As someone who conducts interviews, it is being honest to let you know that certifications are only marginally part of consideration. They might help you get in the door for an interview, but it is your skills and knowledge that will be best for career growth and job opportunities.</p> <p>That being said, between the course material for the 529 and the 503 courses, I have seen more projects (active and proposed) in-house that would benefit from the 503 track - although both would be good to know. My advise is to really learn the material and apply it as much as possible.</p> <p>Good luck with your next exam, whichever it is!</p> http://stackoverflow.com/questions/1645437/automatically-create-uml-diagrams-from-visual-studio-2008/1645539#1645539 0 Answer by joseph.ferris for Automatically Create UML diagrams from Visual Studio 2008 joseph.ferris 2009-10-29T18:05:02Z 2009-10-29T18:05:02Z <p>Visual Studio 2010 Architecture Edition is supposedly going to have some pretty decent UML support. I looked at it in Beta 1, but just pulled down the Professional version of Beta 2.</p> <p>Some more information is available from <a href="http://msdn.microsoft.com/en-us/library/bb385832%28VS.100%29.aspx#DesignApplication" rel="nofollow">MSDN</a>.</p> http://stackoverflow.com/questions/1643365/why-no-love-for-sql/1643832#1643832 0 Answer by joseph.ferris for Why no love for SQL? joseph.ferris 2009-10-29T13:43:43Z 2009-10-29T13:43:43Z <p>I don't dislike SQL, but I also don't want to have to write it as part of what I am developing. The DAL is not about speed to market - actually, I have never thought that there would be a DAL implementation that would be faster than direct queries from the code. But the goal of the DAL is to <em>abstract</em>. Abstraction comes at a cost, and here it is that it will take longer to implement.</p> <p>The benefits are huge, though. Writing native tests around the code, using expressive classes, strongly typed datasets, etc. We use a "DAL" of sorts, which is a pure DDD implementation using Generics in C#. So we have generic repositories, unit of work implementations (code based transactions), and logical separation. We can do things like mock out our datasets with little effort and actually develop ahead of database implementations. There was an upfront cost in building such a framework, but it is very nice that <em>business logic is the star of the show again</em>. We consume data as a resource now, and deal with it in the language we are natively using in the code. An added benefit of this approach is the clear separation it provides. I no longer see a database query in a web page, for example. Yes, that page needs data. Yes, the database is involved. But now, no matter where I am pulling data from, there is one (and only one) place to go into the code and find it. Maybe not a big deal on smaller projects, but when you have hundreds of pages in a site or dozens of windows in a desktop application, you truly can appreciate it.</p> <p>As a developer, I was hired to implement the requirements of the business using my logical and analytical skills - and our framework implementation allows for me to be more productive now. As a manager, I would rather have my developers using their logical and analytical skills to solve problems than to write SQL. The fact that we can build an entire application that uses the database without having the database until closer to the end of the development cycle is a beautiful thing. It isn't meant as a knock against database professionals. Sometimes a database implementation is more complex than the solution. SQL (and in our case, Views and Stored Procs, specifically) are an abstraction point where code can consume data as a service. In shops where there is a definite separation between the data and development teams, this helps to eliminate sitting in a holding pattern waiting for database implementation and changes. Developers can focus on the problem domain without hovering over a DBA and the DBA can focus on the correct implementation without a developer needing it <em>right now</em>.</p> http://stackoverflow.com/questions/1639773/design-aggregate-root-properly/1639882#1639882 1 Answer by joseph.ferris for Design Aggregate Root Properly joseph.ferris 2009-10-28T20:22:15Z 2009-10-28T20:22:15Z <p>I think you need to look at the aggregate boundaries and the entities as something more than just a hierarchy. Chances are, you will have a richer model than that.</p> <p>The first way to tell if your aggregate is right, is that you can look at each of the entities within it and ask "Does this need to be directly accessed?" If you answer yes, then that entity is likely not a part of the aggregate.</p> <p>Without knowing more about your domain, I might assume that Store is indeed an aggregate. Sales, on the other hand, are more complex. Yes, sales occur in a store, but do you have a need to look use a sale independently? If you need them outside of the scope of just working with a store, Sales is probably outside of that aggregate.</p> <p>I am imagining that both Styles and Colors are immutable and repeatable, so they would likely be Value Objects in this case. Are Zones unique to a store, or do they vary?</p> <p>Personally, I find value in identifying all of the items in the domain on paper (or whiteboard). I will go through a discovery phase with the stakeholder and just get them out there. Then, use these words as leaders in the conversation, trying to understand how they relate. If you interview the stakeholder well enough, the description he/she gives will actually define most of what you are looking for.</p> <p>Not to beat a dead horse, but the Evans book is definitely worth getting/reading. It is a little dry, but very insightful. For a quick jumpstart, you can read the <a href="http://www.infoq.com/minibooks/domain-driven-design-quickly" rel="nofollow">free book</a> up on InfoQ that is basically a summary of the Evans book.</p> http://stackoverflow.com/questions/1638240/interfaces-separated-from-the-class-implementation-in-separate-projects/1638688#1638688 1 Answer by joseph.ferris for Interfaces separated from the class implementation in separate projects? joseph.ferris 2009-10-28T17:10:39Z 2009-10-28T17:10:39Z <p>There are pros and cons to the approach, and you will also need to temper the decision with how it best fits into your architectural approach.</p> <p>On the "pro" side, you can achieve a level of separation to help enforce correct implementations of the interfaces. Consider that if you have junior- or mid-level developer working on implementations, the interfaces themselves can be defined in a project that they only have read access on. Perhaps a senior-level, team lead, or architect is responsible for the design and maintenance of the interfaces. If these interfaces are used on multiple projects, this can help mitigate the risk of unintentional breaking changes on other projects when only working in one. Also, if you work with third party vendors who you distribute an API to, packaging the interfaces is a very good thing to do.</p> <p>Obviously, there are some down sides. The assembly does not contain executable code. In some shops that I have worked at, they have frowned upon not having functionality in an assembly, regardless of the reason. There definitely is additional overhead. Depending on how you set up your physical file and namespace structure, you might have multiple assemblies doing the same thing (although not required).</p> <p>On a semi-random note, make sure to document your interfaces well. Documentation inheritance from interfaces using GhostDoc is a beautiful thing.</p> http://stackoverflow.com/questions/1626597/best-practice-should-functions-return-null-or-an-empty-object/1626831#1626831 3 Answer by joseph.ferris for Best Practice: Should functions return null or an empty object? joseph.ferris 2009-10-26T19:27:06Z 2009-10-26T19:27:06Z <p>I personally return a default instance of the object. The reason is that I expect the method to return zero to many or zero to one (depending on the method's purpose). The only reason that it would be an error state of any kind, using this approach, is if the method returned no object(s) and was always expected to (in terms of a one to many or singular return).</p> <p>As to the assumption that this is a business domain question - I just do not see it from that side of the equation. Normalization of return types is a valid application architecture question. At the very least, it is subject for standardization in coding practices. I doubt that there is a business user who is going to say "in scenario X, just give them a null".</p> http://stackoverflow.com/questions/1626411/is-a-404-redirect-a-legitimate-redirect/1626796#1626796 0 Answer by joseph.ferris for Is a "404 redirect" a legitimate redirect? joseph.ferris 2009-10-26T19:19:43Z 2009-10-26T19:19:43Z <p>I think bringing the user to a "did you mean" type of page would be my preference. If you have no suggestions for the "did you mean" content, then give them a real error page and 404 it. Otherwise, leave the pages as status 200 and let the user click through.</p> <p>I tend to use 301s to redirect previously known and well-established URLs that have changed for some reason. The reason I would worry about the automatic redirect approach is that a flaw in your detection algorithm could possible negatively impact SEO.</p> http://stackoverflow.com/questions/1626684/how-often-should-applications-be-stress-or-load-tested/1626728#1626728 4 Answer by joseph.ferris for How often should applications be stress or load tested? joseph.ferris 2009-10-26T19:06:46Z 2009-10-26T19:13:20Z <p>It really depends on how you want to address it for your company's needs. Personally, we load test our integration (test) builds daily - just like the builds go out. After the build runs at approx 1a, we have it scripted to be load tested as well. Our goal is specifically looking for build over build changes in performance. Even if we do not introduce changes into the code, the servers that the code is load tested on still recieves updates/patches/hot fixes/service packs/etc. At worst, once automated, it provides additional historical data.</p> <p>We are going this route (build relativity) because it is cost prohibitive to try and replicate our hardware environment in production. In the event that we see a sudden change (or gradual changes) to key performance monitors, we can look into what changesets were introduced at that time and isolate potential code changes that adversely impacted performance.</p> <p>From the sound of it, you are testing against a lab that replicates production? That is a different approach then we had, because we are going under the assumption that most of our bottlenecks would be code-induced and not directly dependent on hardware. We use VMs to approximate, but not duplicate, our production environment.</p> http://stackoverflow.com/questions/1579164/linq-help-sql-trace-returns-result-but-datacontext-returning-null/1618094#1618094 0 Answer by joseph.ferris for Linq help - Sql trace returns result, but datacontext returning null joseph.ferris 2009-10-24T14:04:16Z 2009-10-24T14:04:16Z <p>Do you get your result back if you change your statement, as follows (note the "Equals" instead of the "==")?</p> <pre><code>var adminCov = db.SearchAgg_AdminCovs.SingleOrDefault(l =&gt; l.AdminCovGuid.Equals(covSourceGuid)); </code></pre> <p>I have run into some comparison equality issues with GUIDs in the past (usually in Unit Testing), but the same might apply here.</p> http://stackoverflow.com/questions/1617296/windows-7-a-good-platform-for-developers/1617996#1617996 1 Answer by joseph.ferris for Windows 7, A Good Platform for Developers? joseph.ferris 2009-10-24T13:16:18Z 2009-10-24T13:16:18Z <p>I have two development machines - one a laptop and one a desktop - both running Windows 7. The desktop is considerable faster, not just in launching VS 2008, but the lag I was seeing with ReSharper on some projects is completely gone.</p> <p>On my laptop, Vista came installed and I have been running Windows 7 since the last beta. With Vista, VS felt sluggish. With W7, not only does it feel faster, I am running SQL Server Standard, a local SMTP Server (SmarterMail), hosting a Lucene.NET index, and running Velocity; all for a project that I am currently working on. And it is just as usable as it was when I just has VS on Vista on the same machine. I never expected I would be able to have all of that running on a laptop and still be usable, so my productivity on the train for my commute has skyrocketed.</p> <p>One of my favorite features of W7 is the preview pane in Windows Explorer. With it on, I can select a C# file and look at the source without having to open it in VS or a text editor. Really handy for when I need to look at something in another project. I seriously do not have a single complaint about this OS - something I have not been able to say in a long, long time.</p> http://stackoverflow.com/questions/1614945/is-invalid-user-input-a-valid-reason-for-throwing-an-exception/1615048#1615048 1 Answer by joseph.ferris for Is invalid user input a valid reason for throwing an exception? joseph.ferris 2009-10-23T18:06:58Z 2009-10-23T18:06:58Z <p>Generally no, but I can think of one exception to the rule that I have personally encountered.</p> <p>We require that our domain objects are valid at all times. If an attempt is made to create or pass bad data, we do thrown an exception from the domain object. In this case, though, it is an "exceptional circumstance". Why? The logic is that bad data should never make it into the domain. Somewhere along that call stack is a place where invalid data was able to be entered into the system - whether it was through a miscalculation, bad data from the underlying data source, or from user input.</p> <p>Another, ancillary reason we do this, is that the domain objects and their rules are encapsulated within a physically separated assembly. By doing this, we make sure that we provide as much information to the caller, as possible. Because of the implications of what is happening, the assumption is made that the caller will log this so that there is visibility into what truly is an issue - that of not validating the data.</p> <p>So, in the case where you are looking to see if the data has not been validated or that the rules to validate themselves are at odds with your data persistence methods/functionality, I think that it is perfectly valid to throw. In all other cases, I tend to avoid throwing for invalid input.</p> http://stackoverflow.com/questions/1614609/lucene-index-and-query-design-question-searching-people 0 Lucene Index and Query Design Question - Searching People joseph.ferris 2009-10-23T16:40:33Z 2009-10-23T17:52:59Z <p>I have recently just started working with Lucene (specifically, Lucene.Net) and have successfully created several indicies and have no problem with any of them. Previously having worked with Endeca, I find that Lucene is lightweight, powerful, and has a much lower learning curve (due mostly to a concise API).</p> <p>However, I have one specific index/query situation which I am having problems wrapping my head around. What I have is a person directory. People can be searched for in this application, with the goal of returning both exact and approximate matches. Right now, in the index I concatenate the "FirstName" and "LastName" into a single field called "FullName", adding a space between the two. So FirstName:Jon with LastName:Smith yield FullName:Jon Smith. I do anticipate the possibility of middle names and possibly suffix, but that is not important at the moment.</p> <p>I would like to do the equivalent of a fuzzy search on the name, so someone searching for "John Smith" would still get back "Jon Smith". I had thought about a multisearch, however, this becomes more involved if his name was actually "Jon Del Carmen" or "Jon Paul Del Carmen". I have nothing in what the user types in to delineate the first name or last name pieces.</p> <p>The only thought that I have is that I could replace spaces in the concatenated value with a character that would not be discarded. If I did this when I built the document for the index and also when I parsed the query, I could treat it as one larger word, right? Is there another way to do this that would work for both simple names ("Jon Smith") and also more complex names ("Jon Paul Del Carmen")?</p> <p>Any advice would truly be appreciated. Thanks in advance!</p> <p><strong>Edit: Additional detail follows.</strong></p> <p>In Luke, I put in the following query:</p> <pre><code>FullName:jonn smith~ </code></pre> <p>It is being parsed as:</p> <pre><code>FullName:jonn CreatedOn:smith~0.5 </code></pre> <p>With an Explanation of:</p> <pre><code>BooleanQuery:boost=1.0000 clauses=2, maxClauses=1024 Clause 0: SHOULD TermQuery:boost=1.0000 Term: field='FullName' text='jonn' Cluase 1: SHOULD FuzzyQuery: boost=1.0000 prefixLen=0, minSimilarity=0.5000 org.apache.lucene.search.FuzzyTermEnum: diff=-1.0000 FilteredTermEnum: Exception null </code></pre> <p>"CreatedOn" is another Field in the index. I tried putting quotes around the term "jonn smith", but it then treats it like a phrasequery, instead. I am sure that the problem is that I am just not doing something right, but being so green at all of this, I am not sure what that something truly is.</p> http://stackoverflow.com/questions/1614609/lucene-index-and-query-design-question-searching-people/1614998#1614998 0 Answer by joseph.ferris for Lucene Index and Query Design Question - Searching People joseph.ferris 2009-10-23T17:52:59Z 2009-10-23T17:52:59Z <p>My problem was with how I was building the index. What I ended up doing was making sure that it was not tokenizing the FullName, and the query started returning the correct results. The Explain results from above were due to an ID10T error on my part and is now returning correctly.</p> http://stackoverflow.com/questions/1447350/httpmodule-for-error-handling-and-missing-images 1 HttpModule for Error Handling and Missing Images joseph.ferris 2009-09-19T00:37:30Z 2009-10-23T16:49:41Z <p>I have an HttpModule that I have put together from cobbling a couple of different sources online together into something that (mostly) works with both traditional ASP.NET applications, as well as ASP.NET MVC applications. The largest part of this comes from the kigg project on CodePlex. My problem is in dealing with 404 errors due to a missing image. In the following code, I have had to explicitly look for an image being requested through the AcceptedTypes collection in the HttpContext's Request object. If I don't put in this check, even a missing image is causing a redirect to the 404 page defined in my section in the Web.config.</p> <p>The problem with this approach is that (beyond the fact it smells) is that this is just for images. I would basically have to do this with every single content type imaginable that I do not want this redirect behavior to happen on.</p> <p>Looking at the code below, can someone recommend some sort of refactoring that could allow for it to be more lenient with non-page requests? I would still want them in the IIS logs (so I would probably have to remove the ClearError() call), but I do not think that a broken image should impact the user experience to the point of redirecting them to the error page.</p> <p>The code follows:</p> <pre><code>/// &lt;summary&gt; /// Provides a standardized mechanism for handling exceptions within a web application. /// &lt;/summary&gt; public class ErrorHandlerModule : IHttpModule { #region Public Methods /// &lt;summary&gt; /// Disposes of the resources (other than memory) used by the module that implements /// &lt;see cref="T:System.Web.IHttpModule"/&gt;. /// &lt;/summary&gt; public void Dispose() { } /// &lt;summary&gt; /// Initializes a module and prepares it to handle requests. /// &lt;/summary&gt; /// &lt;param name="context"&gt; /// An &lt;see cref="T:System.Web.HttpApplication"/&gt; that provides access to the methods, properties, and events /// common to all application objects within an ASP.NET application.&lt;/param&gt; public void Init(HttpApplication context) { context.Error += this.OnError; } #endregion /// &lt;summary&gt; /// Called when an error occurs within the application. /// &lt;/summary&gt; /// &lt;param name="source"&gt;The source.&lt;/param&gt; /// &lt;param name="e"&gt;The &lt;see cref="System.EventArgs"/&gt; instance containing the event data.&lt;/param&gt; private void OnError(object source, EventArgs e) { var httpContext = HttpContext.Current; var imageRequestTypes = httpContext.Request.AcceptTypes.Where(a =&gt; a.StartsWith("image/")).Select(a =&gt; a.Count()); if (imageRequestTypes.Count() &gt; 0) { httpContext.ClearError(); return; } var lastException = HttpContext.Current.Server.GetLastError().GetBaseException(); var httpException = lastException as HttpException; var statusCode = (int)HttpStatusCode.InternalServerError; if (httpException != null) { statusCode = httpException.GetHttpCode(); if ((statusCode != (int)HttpStatusCode.NotFound) &amp;&amp; (statusCode != (int)HttpStatusCode.ServiceUnavailable)) { // TODO: Log exception from here. } } var redirectUrl = string.Empty; if (httpContext.IsCustomErrorEnabled) { var errorsSection = WebConfigurationManager.GetSection("system.web/customErrors") as CustomErrorsSection; if (errorsSection != null) { redirectUrl = errorsSection.DefaultRedirect; if (httpException != null &amp;&amp; errorsSection.Errors.Count &gt; 0) { var item = errorsSection.Errors[statusCode.ToString()]; if (item != null) { redirectUrl = item.Redirect; } } } } httpContext.Response.Clear(); httpContext.Response.StatusCode = statusCode; httpContext.Response.TrySkipIisCustomErrors = true; httpContext.ClearError(); if (!string.IsNullOrEmpty(redirectUrl)) { var mvcHandler = httpContext.CurrentHandler as MvcHandler; if (mvcHandler == null) { httpContext.Server.Transfer(redirectUrl); } else { var uriBuilder = new UriBuilder( httpContext.Request.Url.Scheme, httpContext.Request.Url.Host, httpContext.Request.Url.Port, httpContext.Request.ApplicationPath); uriBuilder.Path += redirectUrl; string path = httpContext.Server.UrlDecode(uriBuilder.Uri.PathAndQuery); HttpContext.Current.RewritePath(path, false); IHttpHandler httpHandler = new MvcHttpHandler(); httpHandler.ProcessRequest(HttpContext.Current); } } } } </code></pre> <p>Any feedback would be appreciated. The app that I am currently doing this with is an ASP.NET MVC application, but like I mentioned it is written to work with an MVC handler, but only when the CurrentHandler is of that type.</p> <p><strong>Edit:</strong> I forgot to mention the "hack" in this case would be the following lines in OnError():</p> <pre><code> var imageRequestTypes = httpContext.Request.AcceptTypes.Where(a =&gt; a.StartsWith("image/")).Select(a =&gt; a.Count()); if (imageRequestTypes.Count() &gt; 0) { httpContext.ClearError(); return; } </code></pre> http://stackoverflow.com/questions/1447350/httpmodule-for-error-handling-and-missing-images/1614666#1614666 0 Answer by joseph.ferris for HttpModule for Error Handling and Missing Images joseph.ferris 2009-10-23T16:49:41Z 2009-10-23T16:49:41Z <p>Ultimately, the problem was being caused by not distinguishing between the different types of Context provided by a traditional ASP.NET Application and an ASP.NET MVC Application. By providing a check to determine the type of context I was dealing with, I was able to respond accordingly.</p> <p>I have added separate methods for an HttpTransfer and MvcTransfer that allow for me to redirect to the error page, specifically when needed. I also changed the logic around so that I could easily get my YSOD on my local and development machines without the handler swallowing the exception.</p> <p>With the exception of the code used to log the exception to the database (denoted by a TODO comment), the final code that we are using is:</p> <pre><code>using System; using System.Net; using System.Security.Principal; using System.Web; using System.Web.Configuration; using System.Web.Mvc; using Diagnostics; /// &lt;summary&gt; /// Provides a standardized mechanism for handling exceptions within a web application. /// &lt;/summary&gt; public sealed class ErrorHandlerModule : IHttpModule { #region Public Methods /// &lt;summary&gt; /// Disposes of the resources (other than memory) used by the module that implements /// &lt;see cref="T:System.Web.IHttpModule"/&gt;. /// &lt;/summary&gt; public void Dispose() { } /// &lt;summary&gt; /// Initializes a module and prepares it to handle requests. /// &lt;/summary&gt; /// &lt;param name="context"&gt; /// An &lt;see cref="T:System.Web.HttpApplication"/&gt; that provides access to the methods, properties, and events /// common to all application objects within an ASP.NET application.&lt;/param&gt; public void Init(HttpApplication context) { context.Error += OnError; } #endregion #region Private Static Methods /// &lt;summary&gt; /// Performs a Transfer for an MVC request. /// &lt;/summary&gt; /// &lt;param name="url"&gt;The URL to transfer to.&lt;/param&gt; /// &lt;param name="currentContext"&gt;The current context.&lt;/param&gt; private static void HttpTransfer(string url, HttpContext currentContext) { currentContext.Server.TransferRequest(url); } /// &lt;summary&gt; /// Performs a Transfer for an MVC request. /// &lt;/summary&gt; /// &lt;param name="url"&gt;The URL to transfer to.&lt;/param&gt; /// &lt;param name="currentContext"&gt;The current context.&lt;/param&gt; private static void MvcTransfer(string url, HttpContext currentContext) { var uriBuilder = new UriBuilder( currentContext.Request.Url.Scheme, currentContext.Request.Url.Host, currentContext.Request.Url.Port, currentContext.Request.ApplicationPath); uriBuilder.Path += url; string path = currentContext.Server.UrlDecode(uriBuilder.Uri.PathAndQuery); HttpContext.Current.RewritePath(path, false); IHttpHandler httpHandler = new MvcHttpHandler(); httpHandler.ProcessRequest(HttpContext.Current); } #endregion #region Private Methods /// &lt;summary&gt; /// Called when an error occurs within the application. /// &lt;/summary&gt; /// &lt;param name="source"&gt;The source.&lt;/param&gt; /// &lt;param name="e"&gt;The &lt;see cref="System.EventArgs"/&gt; instance containing the event data.&lt;/param&gt; private static void OnError(object source, EventArgs e) { var httpContext = HttpContext.Current; var lastException = HttpContext.Current.Server.GetLastError().GetBaseException(); var httpException = lastException as HttpException; var statusCode = (int)HttpStatusCode.InternalServerError; if (httpException != null) { if (httpException.Message == "File does not exist.") { httpContext.Response.StatusCode = (int)HttpStatusCode.NotFound; httpContext.ClearError(); return; } statusCode = httpException.GetHttpCode(); } if ((statusCode != (int)HttpStatusCode.NotFound) &amp;&amp; (statusCode != (int)HttpStatusCode.ServiceUnavailable)) { // TODO : Your error logging code here. } var redirectUrl = string.Empty; if (!httpContext.IsCustomErrorEnabled) { return; } var errorsSection = WebConfigurationManager.GetSection("system.web/customErrors") as CustomErrorsSection; if (errorsSection != null) { redirectUrl = errorsSection.DefaultRedirect; if (httpException != null &amp;&amp; errorsSection.Errors.Count &gt; 0) { var item = errorsSection.Errors[statusCode.ToString()]; if (item != null) { redirectUrl = item.Redirect; } } } httpContext.Response.Clear(); httpContext.Response.StatusCode = statusCode; httpContext.Response.TrySkipIisCustomErrors = true; httpContext.ClearError(); if (!string.IsNullOrEmpty(redirectUrl)) { var mvcHandler = httpContext.CurrentHandler as MvcHandler; if (mvcHandler == null) { try { HttpTransfer(redirectUrl, httpContext); } catch (InvalidOperationException) { MvcTransfer(redirectUrl, httpContext); } } else { MvcTransfer(redirectUrl, httpContext); } } } #endregion } </code></pre> http://stackoverflow.com/questions/1609489/how-can-one-improve-their-architecture-skills/1609557#1609557 0 Answer by joseph.ferris for How can one improve their Architecture skills ? joseph.ferris 2009-10-22T19:51:22Z 2009-10-22T19:51:22Z <p>Reading about what to do is a good start, as others have mentioned. The best thing to do, though, is to apply what you are learning. I have a couple of "projects" that I am sure will never see the light of day as completed projects, but I use them to practice implementation, learn how to improve it (for better scalability, testability, etc), and take a distillate of what I am doing to apply to my day job.</p> <p>As far as books, I recommend any that address architectures specifically (such as "Scalable Internet Architectures"), <em>application</em> of design patterns, data architecture, and framework design.</p> http://stackoverflow.com/questions/1578230/c-asp-net-create-database-report/1578294#1578294 0 Answer by joseph.ferris for C#/ASP.NET: Create Database Report? joseph.ferris 2009-10-16T14:11:22Z 2009-10-16T14:11:22Z <p><a href="http://lmgtfy.com/?q=sql+server+charting+reporting+site%3Astackoverflow.com" rel="nofollow">http://lmgtfy.com/?q=sql+server+charting+reporting+site%3Astackoverflow.com</a></p> http://stackoverflow.com/questions/1567929/website-safe-data-access-architecture-question/1567958#1567958 0 Answer by joseph.ferris for Website Safe Data Access Architecture Question joseph.ferris 2009-10-14T17:57:00Z 2009-10-14T18:25:16Z <p>There are multiple things that you can do to protect your data. I would look at using SSL over https, providing authentication for the caller of the web services (maybe a public/private key system or client certificates), and looking to set IP restriction rules for the caller on the hosting server - at a minimum.</p> <p><strong>Edit:</strong> For some reason I had thought you said an application accessing a web service, although you say application to application. Don't know if you are going to use web services, but that is the path we have followed.</p> http://stackoverflow.com/questions/1561663/how-do-i-test-that-all-my-expected-web-config-settings-have-been-defined/1567095#1567095 0 Answer by joseph.ferris for How do I test that all my expected web.config settings have been defined? joseph.ferris 2009-10-14T15:29:23Z 2009-10-14T15:29:23Z <p>Ultimately, the web.config is an XML file. You could generate a schema to validate the sections required are present and that required values have been populated. Obviously, you couldn't contextually validate any sort of business logic that the configuration might contain, but you could use a combination of an XSD validation plus a lightweight class that is used to parse conditions within the file.</p> <p>Used in conjunction with a copy pre-build event you actually create a very nice test harness for your production quality configurations.</p> http://stackoverflow.com/questions/1492483/is-it-foolish-of-me-not-to-use-nhibernate-for-my-project/1492584#1492584 0 Answer by joseph.ferris for Is it foolish of me not to use NHibernate for my project? joseph.ferris 2009-09-29T13:32:21Z 2009-09-29T13:32:21Z <p>I think that it is a matter of balance of control. You say that you want control and you don't want mappings. If this control comes at the cost that there is an increased development and maintenance cost and that it takes longer to produce working code, then it is a problem.</p> <p>I personally don't see a problem in rolling a framework as long as it simplifies a repetitive task and makes development more productive and code more stable due to less room for interpretation. We have rolled our own framework, that includes a persistence/data access implementation. Our reasons for doing it, though, were specific. In this case, it was to work within a DDD environment that was much closer to what Evans describes than what most off the shelf products were providing.</p> <p>I think the difference is, though, that we understood that there was an upfront cost and that it would eventually balance itself out through savings in development time in the future. Of course, if you are writing code that you manually have to manage connections, map data, etc., you are probably going down the wrong path. At the very least, you could be using something like Enterprise Library to help you manage the tedium of connectivity and command construction. But, I also think, that if you have no reuse - nothing that is a "framework" type of implementation that you can abstract and apply to other projects, then you are creating a maintenance nightmare and time sink that you will be the sole owner of.</p> http://stackoverflow.com/questions/1451894/algorithm-for-reading-the-actual-content-of-news-articles-and-ignoring-noise-on/1452327#1452327 0 Answer by joseph.ferris for Algorithm for reading the actual content of news articles and ignoring "noise" on the page? joseph.ferris 2009-09-20T23:38:50Z 2009-09-20T23:38:50Z <p>Obviously not a whole solution, but instead of trying to find the relevant content, it might be easier to disqualify non-relevant content. You could classify certain types of noises and work on coming up with smaller solutions that eliminate them. You could have advertisement filters, navigation filters, etc.</p> <p>I think that the larger question is do you need to have one solution work on a wide range of content, or are you willing to create a framework that you can extend and implement on a site by site basis? On top of that, how often are you expecting change to the underlying data sources (i.e. volatility)?</p> http://stackoverflow.com/questions/1443271/domain-driven-design-layout-question/1451147#1451147 1 Answer by joseph.ferris for Domain Driven Design Layout Question joseph.ferris 2009-09-20T14:31:12Z 2009-09-20T14:31:12Z <p>You have two different "actions" related to the images. You have a "physical" process and a "logical" process. The logical process is persisting the information about the image into the domain repository, since it is part of the domain. The physical process of add (and delete) are a prerequisite to the logical process. </p> <p>Taking a step back, the physical process is completely independent of the logical process, but the opposite is not true. You obviously do not want to persist meta-information about the image (in the domain) if the image was not saved. Also, you don't want to remove the information from the domain if you cannot remove the physical file.</p> <p>The domain should contain the information required to remove the logical instance of the image from the datasource. Think of the domain as a physically separate application. In this case, the domain has no actual knowledge that the data it is persisting has anything to do with a physical file. Make sure to keep it this way.</p> <p>Generally, I have my entities in an assembly, then my repositories and domain services in another. The application services live outside of the domain model, but leverage it to do its work. So application services use one or domain services or other application services and domain services can use one or more repositories.</p> <p>Keeping this in mind, you have two places for the actual deletion logic, and a third place to coordinate them. Here is how it would work if I were doing it. The domain service will leverage the repository for the logical delete from the underlying datasource (as well as a retrieval which you will need, as well). It is not aware of anything else other than working with the domain object instance. I also would have an application service (outside of the domain) which specifically dealt with removing the physical instance. For argument sake, I will assume you have an "ImageRepository" class and an "ImageServices" class, which contain your domain repository and your domain services, respectively. Your ImageServices needs a Delete() method, as well as whatever Find() methods you are using. I usually explicitly call the find methods as FindBy...() (i.e, FindByKey(), FindByName(), etc.).</p> <p>You don't want to remove the logical instance if you haven't been able to remove the physical instance, so make sure you have a means of measuring success of the removal operation for the physical image. I would probably go with some sort of a custom exception in this case (since I would consider deleting a file to be a standard operation that should not commonly fail). This usually falls in the realm of "management". So usually I have an application service named something like "ImageManagementService". For simplicity sake, this service (since it is part of the application and not the domain) can have a private method to do the physical delete. Let's call it "DeleteImageFile()".</p> <p>The third place is a coordination of these two operations, also as an application service. I would just make this the public method in the "ImageManagementService". We can call this one "RemoveImage". This application service will do the following:</p> <ol> <li>Retrieve the instance information from the domain services (a passthrough call to your repository).</li> <li>Use the instance information to locate the physical file and remove it (the first application service mentioned, again).</li> <li>If the physical removal is successful, delete the instance (back to the domain service, facading the repository again).</li> </ol> <p>So, what happens is the application itself calls the "RemoveImage()" method from the "ImageManagementService" instance. Internally, "RemoveImage()" first calls the "FindBy..()" from the domain's "ImageServices" to get an instance from the domain. The filepath is used from there to call to the private "DeleteImageFile() method in the "ImageManagementService" instance. Upon success, it will then call the "Delete()" methods in the domain's "ImageService", which is acting as a facade to your repository.</p> <p>I think it is very important to focus on the separation of concerns in this case, because if you have an explicit separation (which you can do with different assemblies) you will become comfortable with knowing which kind of logic can go in which place. I highly recommend the Evan's book. Also, for a quick hit on the SOC concept as it relates to DDD, I recommend taking a look at Jeffrey Palermo's three part series on the "<a href="http://jeffreypalermo.com/blog/the-onion-architecture-part-1/" rel="nofollow">Onion Architecture</a>".</p> <p>Just a couple of notes as to why you would use a domain service instead of calling the repository directly from the application service. Primarily, the repository has more complicated instancing then the domain service. Remember, it is mostly a facade, but might have additional logic that does not fit in anywhere else in the domain. A good example of this might be if you wanted to enforce a unique filename. The domain object itself has no knowledge of other domain objects in other aggregates directly, so the domain service might check for an existing instance with the same name prior to a save operation. Very handy, indeed! Also, a domain service is not limited to a single repository. You can have a domain service coordinate efforts between multiple repositories. If you have overlapping aggregates, you might need to call work with two related aggregate roots at the same time. you can do this in the domain service, keeping that sort of logic in the domain and not bleeding into the application.</p> <p>Hope this helps. I am sure that there are other ways to do this, but this is the way that I have found success in my own applications with similar scenarios.</p> http://stackoverflow.com/questions/1421753/detecting-changes-in-entities-within-an-aggregate-root 0 Detecting Changes in Entities within an Aggregate Root joseph.ferris 2009-09-14T14:03:02Z 2009-09-16T20:19:36Z <p>I am looking to see what approaches people might have taken to detect changes in entities that are a part of their aggregates. I have something that works, but I am not crazy about it. Basically, my repository is responsible for determining if the state of an aggregate root has changed. Let's assume that I have an aggregate root called <code>Book</code> and an entity called <code>Page</code> within the aggregate. A <code>Book</code> contains one or more <code>Page</code> entities, stored in a <code>Pages</code> collection.</p> <p>Primarily, insert vs. update scenarios are done by inspecting the aggregate root and its entities to determine the presence of a key. If the key is present, it is presumed that the object has been, at one time, saved to the underlying data source. This makes it a candidate for an update; but it is not definitive based upon that alone for the entities. With the aggregate root the answer is obvious, since there is only one and it is the singular point of entry, it can be assumed that key presence will dictate the operation. It is an acceptable scenario, in my case, to save the aggregate root itself back again so that I can capture a modification date.</p> <p>To help facilitate this behavior for the entities themselves, my <code>EntityBase</code> class contains two simple properties: <code>IsUpdated()</code>, <code>IsDeleted()</code>. Both of these default to false. I don't need to know if it is new or not, because I can make that determination based upon the presence of the key, as mentioned previously. The methods on the implementation, in this case the Page, would have each method that changes the backing data set <code>IsUpdated()</code> to true.</p> <p>So, for example, Page has a method called <code>UpdateSectionName()</code> which changes the backing value of the <code>SectionName</code> property, which is read-only. This approach is used consistently, as it allows for a logical attachment point of validators in the method (preventing the entity from entering an invalid state) that performs that data setting. The end result is that I have to put a <code>this.IsUpdated() = true;</code> at the end of the method.</p> <p>When the aggregate root is sent into the repository for the <code>Save()</code> (a logic switch to either an <code>Insert()</code> or <code>Update()</code> operation), it can then iterate over the <code>Pages</code> collection in the <code>Book</code>, looking for any pages that have one of three scenarios:</p> <ol> <li>No key. A <code>Page</code> with no key will be inserted.</li> <li><code>IsDeleted = true;</code> A delete trumps an update, and the deletion will be committed - ignoring any update for the <code>Page</code>.</li> <li><code>IsUpdated = true;</code> An update will be committed for the Page.</li> </ol> <p>Doing it this way prevents me from just blindly updating everything that is in the Pages collection, which could be daunting if there were several hundred Page entities in the Book, for example. I had been considering retrieving a copy of the Book, and doing a comparison and only committing changes detected, (inserts, updates, and deletes based upon presence and/or comparison), but it seemed to be an awfully chatty way to go about it.</p> <p>The main drawback is that the developer has to remember to set IsUpdated in each method in the entity. Forget one, and it will not be able to detect changes for that value. I have toyed with the idea of some sort of a custom backing store that could transparently timestamp changes, which could in turn make <code>IsUpdated</code> a read-only property that the repository could use to aggregate updates.</p> <p>The repository is using a unit of work pattern implementation that is basing its actions on the timestamp generated when the aggregate root was added to it. Since there might be multiple entities queued for operations, entity operations are rolled up and executed immediately after the aggregate root operation(s) are executed that the entities belong to. I could see taking it a step further and creating another unit of work to just handle the entity operations and base them off some sort of event tracking used in the entity (which is how I am assuming that some of the ORM products on the market accomplish a similar level of functionality).</p> <p>Before I keep on moving in this direction, though, I would love to hear ideas/recommendations/experiences regarding this.</p> <p><strong>Edit:</strong> A few additional pieces of information that might be helpful to know:</p> <ol> <li>The current language that I am working with is C#, although I tried to keep as much language-specific information out as possible, because this is more of a theoretical discussion.</li> <li>The code for the repositories/services/entities/etc. is based upon Tim McCarthy's concept in his book, ".NET Domain-Driven Design with C#" and the supporting code on <a href="http://dddpds.codeplex.com/" rel="nofollow">CodePlex</a>. It provides a runnable understanding of the type of approach taken, although what I am working with has largely been rewritten from the ground up.</li> </ol> http://stackoverflow.com/questions/1421753/detecting-changes-in-entities-within-an-aggregate-root/1435235#1435235 0 Answer by joseph.ferris for Detecting Changes in Entities within an Aggregate Root joseph.ferris 2009-09-16T20:19:36Z 2009-09-16T20:19:36Z <p>In short, my answer is that I went with what I proposed. It is working, although I am sure that there is room for improvement. The changes actually took very little time, so I feel I didn't navigate too far from the KISS or YAGNI principals in this case. :-)</p> <p>I still feel that there is room for timing related issues on operations, but I should be able to work around them in the repository implementations. Not the ideal solution, but I am not sure that it is worth reinventing the wheel to correct a problem that can be avoided in less time than it takes to fix.</p> http://stackoverflow.com/questions/1416287/unit-testing-domain-services-against-a-real-database 0 Unit Testing Domain Services Against a Real Database joseph.ferris 2009-09-12T22:11:37Z 2009-09-15T21:02:56Z <p>I was wondering what approaches others might have for testing domain services against a database? I already have a series of mock repositories that I am able to use in the domain services for testing the domain services themselves. Part of the construction of these mock repositories is that they build out sample aggregates and associated entities and validate them against the same business rules that would otherwise be used within the model. This also provides a nice and simple means to detect potential impact points within the entities themselves, in the event that their interfaces change.</p> <p>The main problem that I see with live testing of my SQL-backed repositories is database consistency. For example, once a test is run the "create" aspects have already been run. Running them again would obviously cause failures, as the database is no longer pristine. I was considering create a mirrored database used just for this type of testing. It would be minimal, containing structure, programmability, constraints, etc. I would also provide a minimal set of data for certain established tests. My line of thinking is that I could have a stored procedure that I could call to reset the database to the "pristine" state with base data before the start of the test run.</p> <p>While this is not as important on a developer machine after the functionality has been initially verified, I am looking more into the importance of running these tests as part of the nightly build; so that in the event of a test failure, the build could be held back as to not foul the target deployment environment (specifically in this case, it would be the environment that the testing team uses).</p> <p>I do not necessarily think that the platform matters, but in case anyone has implementation specific concerns, my environment looks like the following:</p> <p>Windows 7 (Development) / Windows Server 2008 R2 (Server) Visual Studio 2008 Team Edition (C#) Microsoft SQL Server 2008 Standard (Development/Server)</p> <p>I am using Team Build to run my builds, but that is most likely not a factor in the scope of the question.</p> http://stackoverflow.com/questions/338156/table-naming-dilemma-singular-vs-plural-names/338570#338570 Comment by joseph.ferris on Table Naming Dilemma: Singular vs. Plural Names joseph.ferris 2009-11-23T16:40:18Z 2009-11-23T16:40:18Z What's up with the downvotes? Comments would be nice. Downvotes without discussion implies that the downvoters are actually downvoting a subjective answer to a subjective topic just based on the fact that he/she disagrees. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1729999#1729999 Comment by joseph.ferris on What is your best programmer joke? joseph.ferris 2009-11-20T13:53:04Z 2009-11-20T13:53:04Z No it is not. Baggins is his name. http://stackoverflow.com/questions/1770326/kannels-failed-on-status-page Comment by joseph.ferris on kannel's 'failed' on status page joseph.ferris 2009-11-20T13:09:22Z 2009-11-20T13:09:22Z This should be on serverfault.com. You probably aren't going to have the right target audience on here for your question. Marked to move. http://stackoverflow.com/questions/1127050/how-to-find-how-many-people-are-online-in-a-website/1127126#1127126 Comment by joseph.ferris on How to find how many people are online in a website joseph.ferris 2009-11-17T18:05:06Z 2009-11-17T18:05:06Z +1 That sounds like a very sound approach. Using the SQL Server for backing storage is required for web farm implementations (unless you use something like Velocity for a Session store). Bookmarked for future experimentation. Thanks! http://stackoverflow.com/questions/1127050/how-to-find-how-many-people-are-online-in-a-website/1127090#1127090 Comment by joseph.ferris on How to find how many people are online in a website joseph.ferris 2009-11-17T17:57:26Z 2009-11-17T17:57:26Z GA suffers from a lag time of up to 24 hours for data to be available. Also, I am not aware of any programmatic interface to GA (although, admittedly, I haven't looked). http://stackoverflow.com/questions/1703541/what-should-i-load-into-memory-when-my-app-loads/1703578#1703578 Comment by joseph.ferris on What should I load into memory when my app loads? joseph.ferris 2009-11-09T20:35:32Z 2009-11-09T20:35:32Z +1. Being stuck maintaining an application that loads everything up-front, I could not agree more. There is no reason to have to add time after compilation before you can actually begin execution. It makes those &quot;quick fixes&quot; anything but quick. http://stackoverflow.com/questions/252208/is-there-a-good-argument-for-software-patents/926965#926965 Comment by joseph.ferris on Is there a good argument for software patents? joseph.ferris 2009-11-09T19:09:19Z 2009-11-09T19:09:19Z Correct. It was Unisys patenting the LZW algorithm, which is used as the data compression algorithm in GIF formatted images, that spurred the creation of PNG. More information about the algorithm: <a href="http://en.wikipedia.org/wiki/Lempel%E2%80%93Ziv%E2%80%93Welch" rel="nofollow">en.wikipedia.org/wiki/&hellip;</a> http://stackoverflow.com/questions/1702741/reduce-duplicated-code-in-controller-actions/1702787#1702787 Comment by joseph.ferris on Reduce Duplicated Code in Controller Actions joseph.ferris 2009-11-09T18:56:21Z 2009-11-09T18:56:21Z @Robert - Generally, I agree. I am more for the general idea of the article, as opposed to the implementation. Good example of what a BaseController might do, though. http://stackoverflow.com/questions/1702741/reduce-duplicated-code-in-controller-actions/1702787#1702787 Comment by joseph.ferris on Reduce Duplicated Code in Controller Actions joseph.ferris 2009-11-09T18:22:47Z 2009-11-09T18:22:47Z Looking again - this does not directly address your needs, but I still think it could be adapted to what you are trying to do. http://stackoverflow.com/questions/1690740/who-are-some-famous-black-programmers Comment by joseph.ferris on Who are some famous black programmers? joseph.ferris 2009-11-06T22:14:24Z 2009-11-06T22:14:24Z @Joshua - Grow up. You are the one causing a problem here. Man up and walk away if all you can do is claim that you are a victim. Your question, I considered relevant. Your comments are hateful. Feel free to report me. While you are at it, randomly report people all over the site. I am not causing a problem and nothing will come of it. You, on the other hand, have a chip on your shoulder that does not belong on this site. http://stackoverflow.com/questions/1690740/who-are-some-famous-black-programmers Comment by joseph.ferris on Who are some famous black programmers? joseph.ferris 2009-11-06T22:05:40Z 2009-11-06T22:05:40Z @Joshua - The only thing racist here is you calling people racist. I personally don't have a problem with the question (and voted to reopen it). Of course, if you want to go around and act like a child, you get what you deserve. As far as you closing comment about asking about white programmers. Consider yourself reported for being offensive. http://stackoverflow.com/questions/1688000/how-can-i-calculate-how-many-nights-are-there-in-a-date-range Comment by joseph.ferris on How can I calculate how many nights are there in a date range? joseph.ferris 2009-11-06T14:43:41Z 2009-11-06T14:43:41Z Are you accounting for late arrivals, too? What if a person check's in after midnight? A late arrival that has a one day stay would still be leaving the same morning, but technically still stayed a &quot;night&quot;. http://stackoverflow.com/questions/449887/sending-e-mail-using-c/449897#449897 Comment by joseph.ferris on Sending E-mail using C# joseph.ferris 2009-11-06T12:13:39Z 2009-11-06T12:13:39Z The NetworkCredential class is overloaded. If you provide an empty constructor, it will create the instance with the current user. Alternatively, you could also encrypt the username and password and store it externally. It also depends on how you set up your mail server. You can set up an SMTP server on the localhost and allow it to be a relay for the loopback address, so that you can send email without credentials. We do the latter. It is lightweight, simple, and requires no storing of passwords (since anyone can relay from the loopback address - meaning IIS can, as well). http://stackoverflow.com/questions/1627689/how-to-search-for-text-fragments-in-a-database/1627700#1627700 Comment by joseph.ferris on How to search for text fragments in a database joseph.ferris 2009-11-01T18:21:54Z 2009-11-01T18:21:54Z If the OP is in an MS shop, I would recommend Lucene.Net. As of October 20th, it has passed its graduation vote to be be an official subproject of Apache. We are implementing Lucene.Net currently, and it has been a completely pleasant experience. You have such control over both searching and indexing that you can really squeeze performance out of it. http://stackoverflow.com/questions/1657034/free-html-editor-for-windows/1657049#1657049 Comment by joseph.ferris on Free HTML editor for Windows joseph.ferris 2009-11-01T12:43:40Z 2009-11-01T12:43:40Z VS start time can always be improved by simply turning off the Start Page. On my laptop with Windows 7, VS 2008 is up and running in about fifteen seconds. VS 2010 is up in about ten seconds. Considering the featureset, that is more than reasonable on any semi-modern piece of hardware.