User Dan Esparza - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T15:20:27Zhttp://stackoverflow.com/feeds/user/19020http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/284324/what-is-the-best-way-to-build-xml-in-c-code6What is the best way to build XML in C# code?Dan Esparza2008-11-12T15:37:41Z2009-11-19T22:22:22Z
<p>Please indicate your best practices for building XML using C#. </p>
<p><strong>Edit:</strong></p>
<p><em>With the help of <a href="http://stackoverflow.com/users/811/shog9">Shog9</a>, I just learned about the "community wiki" feature, and happily turned it on.</em> </p>
<p>If you like a particular answer, vote it up. If you don't like a particular answer, feel free to shake your fist violently in the air and vote it down.</p>
http://stackoverflow.com/questions/282377/visual-studio-how-do-i-show-all-classes-inherited-from-a-base-class5Visual Studio: How do I show all classes inherited from a base class?Dan Esparza2008-11-11T22:36:11Z2009-11-03T04:05:35Z
<p>In Visual Studio, How do I show all classes inherited from a base class? </p>
<p><strong>For example</strong>, in ASP.NET MVC there are several 'ActionResult' types -- and they all inherit from / implement the base class 'ActionResult'. </p>
<p>It looks like unless you just 'know' that 'View' and 'Json' are valid 'ActionResult' types, there is no way you can easily find this information out. </p>
<p><em>Please prove me wrong.</em></p>
<p>Is there something in the object browser that makes this easy to find out?</p>
<p>I'm even up for suggestions of tools outside of Visual Studio to discover this information about various classes. For example: is there something in Resharper that will help me out?</p>
http://stackoverflow.com/questions/1602578/c-what-is-the-fastest-way-to-generate-a-unique-filename0C#: What is the fastest way to generate a unique filename?Dan Esparza2009-10-21T18:12:26Z2009-10-21T19:09:31Z
<p>I've seen several suggestions on naming files randomly, including using </p>
<pre><code>System.IO.Path.GetRandomFileName()
</code></pre>
<p>or using a </p>
<pre><code>System.Guid
</code></pre>
<p>and appending a file extension. </p>
<p>My question is: <strong>What is the fastest way to generate a unique filename?</strong></p>
http://stackoverflow.com/questions/1371349/what-are-good-online-training-outlets-for-development-skills2What are good online training outlets for development skills?Dan Esparza2009-09-03T03:51:25Z2009-10-13T03:02:26Z
<p><strong>What are good online training outlets for development skills?</strong> </p>
<p>Specifically, I'm looking for video tutorials, remote training, or anything that <em>won't require me to travel to a training facility</em>. </p>
<p>Note: This is for development skills, which can range from abstract concepts like <em>'Building large, scalable systems'</em> to <em>'Learning C# 3.0'</em></p>
http://stackoverflow.com/questions/1534740/javascript-navigation-in-visual-studio-20081Javascript navigation in Visual Studio 2008Dan Esparza2009-10-07T23:17:19Z2009-10-07T23:17:19Z
<p><strong>Is there a way to turn on the navigation bar when editing javascript in Visual Studio 2008?</strong> </p>
<p>Basically, I'm looking for a way to quickly navigate to a method in the javascript file. </p>
<p>I'm open to looking at Visual Studio plugins that will enable this behavior.</p>
http://stackoverflow.com/questions/337763/linq-to-sql-multiple-single-dbml-per-project4LINQ to SQL: Multiple / Single .dbml per project?Dan Esparza2008-12-03T16:29:53Z2009-10-06T21:37:15Z
<p>I've read Rick Strahl's article on <a href="http://www.west-wind.com/weblog/posts/246222.aspx" rel="nofollow">Linq to SQL DataContext Lifetime Management</a> hoping to find some answers on how I would manage my .dbml files since they are so closely related to DataContext. Unfortunately, Rick's article seems to be focused on <em>DataContext lifetime at runtime</em> though, and my question is concerned with how the .dbml's should be organized at <em>design time</em>. </p>
<p>The general question of 'Best practices with .dbml's' <a href="http://stackoverflow.com/questions/33664/best-practices-for-managing-linq-to-sql-dbml-files">has been asked and answered here</a>, and the answers have focused on external tools to manage the .dbml. </p>
<p>I'm asking a more focused question of <strong>when and why should you <em>not</em> have a single .dbml file in your LINQ to SQL based project</strong>? </p>
http://stackoverflow.com/questions/299367/how-do-i-setup-configure-elmah-on-godaddy-asp-net-hosting2How do I setup / configure ELMAH on GoDaddy ASP.NET hostingDan Esparza2008-11-18T16:57:23Z2009-09-29T14:14:23Z
<p><em>FYI: ELMAH is the Exception logging framework <a href="http://www.codinghorror.com/blog/archives/001118.html" rel="nofollow">that is mentioned on Coding Horror here</a>.</em></p>
<p>How do I setup / configure ELMAH on GoDaddy ASP.NET hosting? I seem to get 404 errors when trying to access elmah.axd. I have followed <a href="http://code.google.com/p/elmah/wiki/DotNetSlackersArticle" rel="nofollow">all of the instructions here</a> to modify my web.config and bin deploy the Elmah assembly.</p>
<p>I was using the BETA 2 binary download listed here: <a href="http://code.google.com/p/elmah/downloads/list" rel="nofollow">http://code.google.com/p/elmah/downloads/list</a></p>
http://stackoverflow.com/questions/307696/does-microsoft-skydrive-have-an-api4Does Microsoft SkyDrive have an API?Dan Esparza2008-11-21T03:04:58Z2009-09-27T14:41:48Z
<p>So with the <a href="http://lifehacker.com/5094242/skydrive-will-upgrade-to-25gb-of-online-storage" rel="nofollow">recent news that Microsoft Skydrive is going to get bumped to 25GB of storage</a> per account, does anyone know if SkyDrive has an API? </p>
<p>(And if so, where are the docs?)</p>
http://stackoverflow.com/questions/1464008/whats-quicker-serving-a-static-html-file-from-the-filesystem-or-from-memcache/1464047#14640470Answer by Dan Esparza for What's quicker: serving a static HTML file from the filesystem or from MemCache?Dan Esparza2009-09-23T04:59:24Z2009-09-23T04:59:24Z<p>It depends on whether the filesystem is local or over the network. It also depends on what your network connection speeds are. </p>
<p>Data will change based on how the file is used and whether or not the web servers are in a cluster (and if the individual web servers need to generate the file once and then cache it).</p>
<p><strong>I'd be willing to bet that serving a local file from the filesystem is going to be faster than using Memcache to serve the file (especially if it's a fast SATA drive) -- simply because you're cutting out the network layer of the equation.</strong> </p>
<p>Even when installed locally, your app would need to use the network stack to access Memcache, and that's going to involve some overhead. </p>
http://stackoverflow.com/questions/1461937/is-the-http-head-verb-useful-in-web-development1Is the HTTP 'HEAD' verb useful in web development?Dan Esparza2009-09-22T18:52:30Z2009-09-22T19:04:48Z
<p>I've read the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html" rel="nofollow">w3.org spec on the 'HEAD' verb</a>, and I guess I'm missing something. I can't see how it would be useful. </p>
<p><strong>Is the HTTP 'HEAD' verb useful in web development?</strong> </p>
<p>If so, how?</p>
http://stackoverflow.com/questions/1456975/what-are-common-windows-service-design-patterns2What are common Windows service design patterns?Dan Esparza2009-09-21T21:27:16Z2009-09-22T16:23:23Z
<p>Where can I find good information on <strong>common design patterns that might be employed when building a new Windows service?</strong></p>
<p>*<em>Update: I'm asking if there are common designs that are used when constructing a service.</em> </p>
<p><em>For example: I have seen a single task get executed on a timer (this seems very common when constructing a service). I've also seen 'queue workers' deployed as services. Are there other common design patterns when designing software to be run as a service?</em></p>
http://stackoverflow.com/questions/769432/ihttphandler-vs-ihttpmodule6IHttpHandler vs IHttpModuleDan Esparza2009-04-20T18:05:36Z2009-09-22T14:04:45Z
<p>My question is simple (although the answer will most likely not be): I'm trying to decide how to implement a server side upload handler in C# / ASP.NET. </p>
<p>I've used both HttpModules (IHttpModule interface) and HttpHandlers (IHttpHandler interface) and it occurs to me that I could implement this using either mechanism. It also occurs to me that I don't understand the differences between the two.</p>
<p>So my question is this: <strong>In what cases would I choose to use IHttpHandler instead of IHttpModule (and vice/versa)?</strong></p>
<p><em>Is one executed much higher in the pipeline? Is one much easier to configure in certain situations? Does one not work well with medium security?</em></p>
http://stackoverflow.com/questions/1452380/good-jquery-interview-questions1Good jQuery interview questions? [closed]Dan Esparza2009-09-21T00:04:04Z2009-09-21T16:54:34Z
<p>What are some good interview questions to give to a candidate for a <em>web development</em> position that involves a lot of jQuery?</p>
http://stackoverflow.com/questions/1435736/jquery-t-shirt0jQuery t-shirt? [closed]Dan Esparza2009-09-16T22:00:41Z2009-09-16T22:03:26Z
<p>OK -- I admit, this is <em>barely programming related</em>. </p>
<p>But this is about a t-shirt with the name of one of my favorite web frameworks plastered on the front of it. </p>
<p><strong>Where can I get a cool jQuery t-shirt?</strong> </p>
<p>I know <a href="http://www.flickr.com/photos/rj3/3919119469/in/set-72157622242551503/" rel="nofollow">they exist</a>.</p>
<p>I just don't know where to get one.</p>
http://stackoverflow.com/questions/1432873/c-isodbcserveravailable/1433179#14331790Answer by Dan Esparza for C# IsODBCServerAvailableDan Esparza2009-09-16T14:03:02Z2009-09-16T14:08:42Z<p>There is no .NET API for this (that I know of), but there is a native ODBC API for this, <a href="http://msdn.microsoft.com/en-us/library/ms711004%28VS.85%29.aspx" rel="nofollow">detailed on the Microsoft site here</a>. There is also a nice <a href="http://www.devtoolshed.com/content/get-list-odbc-data-source-names-programatically-using-c" rel="nofollow">code sample that might help you over here</a> that lists User and System DSNs. There is also a code sample at CodeProject that <a href="http://www.codeproject.com/KB/database/sdbODBCMngr.aspx" rel="nofollow">looks like it gets the driver list</a>.</p>
<p>If you're in a hurry, here is the first article samples (to get user and system DSNs) in all their plagiarized glory:</p>
<p><strong>Get system DSNs:</strong></p>
<pre><code>/// <summary>
/// Gets all System data source names for the local machine.
/// </summary>
public System.Collections.SortedList GetSystemDataSourceNames()
{
System.Collections.SortedList dsnList = new System.Collections.SortedList();
// get system dsn's
Microsoft.Win32.RegistryKey reg = (Microsoft.Win32.Registry.LocalMachine).OpenSubKey("Software");
if (reg != null)
{
reg = reg.OpenSubKey("ODBC");
if (reg != null)
{
reg = reg.OpenSubKey("ODBC.INI");
if (reg != null)
{
reg = reg.OpenSubKey("ODBC Data Sources");
if (reg != null)
{
// Get all DSN entries defined in DSN_LOC_IN_REGISTRY.
foreach (string sName in reg.GetValueNames())
{
dsnList.Add(sName, DataSourceType.System);
}
}
try
{
reg.Close();
}
catch { /* ignore this exception if we couldn't close */ }
}
}
}
return dsnList;
}
</code></pre>
<p><strong>Get User DSN's:</strong></p>
<pre><code>/// <summary>
/// Gets all User data source names for the local machine.
/// </summary>
public System.Collections.SortedList GetUserDataSourceNames()
{
System.Collections.SortedList dsnList = new System.Collections.SortedList();
// get user dsn's
Microsoft.Win32.RegistryKey reg = (Microsoft.Win32.Registry.CurrentUser).OpenSubKey("Software");
if (reg != null)
{
reg = reg.OpenSubKey("ODBC");
if (reg != null)
{
reg = reg.OpenSubKey("ODBC.INI");
if (reg != null)
{
reg = reg.OpenSubKey("ODBC Data Sources");
if (reg != null)
{
// Get all DSN entries defined in DSN_LOC_IN_REGISTRY.
foreach (string sName in reg.GetValueNames())
{
dsnList.Add(sName, DataSourceType.User);
}
}
try
{
reg.Close();
}
catch { /* ignore this exception if we couldn't close */ }
}
}
}
return dsnList;
}
</code></pre>
<p><strong>Get all DSN's:</strong></p>
<pre><code>// Returns a list of data source names from the local machine.
public System.Collections.SortedList GetAllDataSourceNames()
{
// Get the list of user DSN's first.
System.Collections.SortedList dsnList = GetUserDataSourceNames();
// Get list of System DSN's and add them to the first list.
System.Collections.SortedList systemDsnList = GetSystemDataSourceNames();
for (int i = 0; i < systemDsnList.Count; i++)
{
string sName = systemDsnList.GetKey(i) as string;
DataSourceType type = (DataSourceType)systemDsnList.GetByIndex(i);
try
{
// This dsn to the master list
dsnList.Add(sName, type);
}
catch
{
// An exception can be thrown if the key being added is a duplicate so
// we just catch it here and have to ignore it.
}
}
return dsnList;
}
</code></pre>
<p><strong>Bind them to a combo box:</strong></p>
<pre><code>// fill data source names
DevToolShed.OdbcDataSourceManager dsnManager = new DevToolShed.OdbcDataSourceManager();
System.Collections.SortedList dsnList = dsnManager.GetAllDataSourceNames();
for (int i = 0; i < dsnList.Count; i++)
{
string sName = (string)dsnList.GetKey(i);
DevToolShed.DataSourceType type = (DevToolShed.DataSourceType)dsnList.GetByIndex(i);
cbxDataSourceName.Items.Add(sName + " - (" + type.ToString() + " DSN)");
}
</code></pre>
<p>Full source code is available at the link, above.</p>
http://stackoverflow.com/questions/1428438/define-jquery-eq/1429093#14290930Answer by Dan Esparza for Define jQuery "eq"Dan Esparza2009-09-15T19:11:29Z2009-09-15T19:11:29Z<p>It sounds like you might be getting caught up on the word 'index'. </p>
<p>In this case, 'index' refers to a specific item in a collection of items. So <strong>eq</strong> will give you access to a single item within a matched set of elements.</p>
http://stackoverflow.com/questions/1427280/good-c-resources-for-a-c-programmer/1427297#14272971Answer by Dan Esparza for Good C++ resources for a C# programmerDan Esparza2009-09-15T13:51:05Z2009-09-15T13:51:05Z<p>The definitive resource might be <a href="http://www.research.att.com/~bs/" rel="nofollow">Bjarne's website</a>, or the <a href="http://www.research.att.com/~bs/books.html" rel="nofollow">book he's written</a>. </p>
<p>From my own experience, pointer management and memory management are probably going to be your biggest hangups coming from a C# (or managed programming) background.</p>
http://stackoverflow.com/questions/1427261/what-is-system-linq-expressions-in-c-used-for/1427287#14272871Answer by Dan Esparza for What is System.Linq.Expressions in C# used for?Dan Esparza2009-09-15T13:48:13Z2009-09-15T13:48:13Z<p>This is also covered pretty extensively <a href="http://stackoverflow.com/questions/16322/all-about-linq">here on SO</a>.</p>
http://stackoverflow.com/questions/1423460/asp-net-web-page-designing-best-practices/1423511#14235111Answer by Dan Esparza for ASP.NET – Web page designing - Best PracticesDan Esparza2009-09-14T19:42:49Z2009-09-14T19:42:49Z<p>I don't know ... it seems like <a href="http://stackoverflow.com/questions/597971/web-development-net-best-practices">that question</a> has <a href="http://stackoverflow.com/questions/1418221/best-practices-in-building-asp-net-application">been asked</a> <a href="http://stackoverflow.com/questions/1127856/what-are-best-practices-for-asp-net-application-deployment">and answered</a> <a href="http://stackoverflow.com/questions/715968/asp-net-mvc-best-implementation-practices">before</a>.</p>
http://stackoverflow.com/questions/1416351/asp-net-does-every-httprequest-get-its-own-thread0ASP.NET: Does every HttpRequest get its own thread?Dan Esparza2009-09-12T22:49:19Z2009-09-12T22:55:05Z
<p>In ASP.NET, does every HttpRequest get its own thread?</p>
<p><strong><em>Update</strong> - To clarify, I'm asking specifically about incoming requests.</em></p>
http://stackoverflow.com/questions/1413548/visual-studio-find-unused-code2Visual Studio: Find unused code?Dan Esparza2009-09-11T22:27:07Z2009-09-11T23:19:55Z
<p><strong>In Visual Studio 2008, how can I easily find unused code in a source file?</strong> </p>
<p>I've got a source file with 2800+ lines of code in it, and doing an individual 'find all references' would get a bit tedious.</p>
http://stackoverflow.com/questions/1413548/visual-studio-find-unused-code/1413655#14136550Answer by Dan Esparza for Visual Studio: Find unused code?Dan Esparza2009-09-11T23:02:39Z2009-09-11T23:02:39Z<p>I didn't see it mentioned here, so I'll include a link to it:</p>
<p><a href="http://ndepend.com/" rel="nofollow">NDepend</a> looks like it's a helpful tool for this.</p>
http://stackoverflow.com/questions/1413577/what-process-returns-the-404-not-found-error/1413611#14136110Answer by Dan Esparza for What process returns the "(404) Not Found" errorDan Esparza2009-09-11T22:44:29Z2009-09-11T22:44:29Z<p>I believe (if you truly are connecting to a server which is simply not responding) it might be the .NET network stack itself that is throwing the exception -- probably related to a connection timeout.</p>
http://stackoverflow.com/questions/1407032/silly-visual-studio-pending-changes-question/1407067#14070672Answer by Dan Esparza for Silly Visual Studio Pending Changes QuestionDan Esparza2009-09-10T18:57:21Z2009-09-10T18:57:21Z<p>I have to manage lots of changes every day in Visual Studio, and I've got a few tips for you, but no silver bullet:</p>
<p><strong>Use Ctrl-A</strong> to select all items and then press a checkbox to toggle the checkboxes for all items. This can be useful when performing changes to only a few items -- just uncheck everything, then make sure you have only the items checked that you'd like to update.</p>
<p><strong>Use Ctrl-Click</strong> (then right-click) to 'Undo' selected changes. By default, the undo action will only apply to the selected items.</p>
<p>You might want to experiment with <strong>using multiple Workspaces</strong> -- and then filtering changes by workspace or by solution.</p>
http://stackoverflow.com/questions/1400784/net-what-is-the-gac-what-problem-does-it-solve3.NET: What is the GAC? What problem does it solve? [closed]Dan Esparza2009-09-09T16:47:07Z2009-09-09T16:52:02Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/1268342/what-is-the-gac-in-net">What is the GAC in .NET?</a> </p>
</blockquote>
<p>Basic information for a seasoned .NET developer, but not so obvious for a newbie:</p>
<p><strong>What is the GAC?</strong> What problem does it solve?</p>
http://stackoverflow.com/questions/1383551/hacker-proofing-a-jar-file/1383610#13836103Answer by Dan Esparza for Hacker proofing a jar fileDan Esparza2009-09-05T15:35:00Z2009-09-05T15:35:00Z<p>I think this is more about hardening the access path to the jar, more than anything else. </p>
<ol>
<li>Try to determine what user context
will actually be executing the code
that will access the .jar. Lock
down access to the jar to read-only
access from only that user. How you do this
will depend on if you're using the jar from
a web app or a desktop .exe, and it will also
depend on the operating system you're running
under.</li>
<li>If possible -- sign the jar and
validate the signature from the
executable code. This will at least
tell you if the .jar has been
tampered with. You can then have
some logic to stop the executing application
from using the .jar (and log and display an error).
See <a href="http://java.sun.com/j2se/1.3/docs/tooldocs/win32/jarsigner.html" rel="nofollow">jarsigner docs</a> for more information.</li>
</ol>
http://stackoverflow.com/questions/1380401/asp-net-form-submission-problem/1380442#13804421Answer by Dan Esparza for asp.net form submission problemDan Esparza2009-09-04T16:58:04Z2009-09-04T16:58:04Z<p>It's a bit unclear, but my guess is that you're trying to do a 'form post' to the other .php page after your data is written to the database.</p>
<p>You can more information from <a href="http://www.hanselman.com/blog/HTTPPOSTsAndHTTPGETsWithWebClientAndCAndFakingAPostBack.aspx" rel="nofollow">this wonderful Scott Hanselman article</a>, but here is the summary:</p>
<pre><code>public static string HttpPost(string URI, string Parameters)
{
System.Net.WebRequest req = System.Net.WebRequest.Create(URI);
req.Proxy = new System.Net.WebProxy(ProxyString, true);
//Add these, as we're doing a POST
req.ContentType = "application/x-www-form-urlencoded";
req.Method = "POST";
//We need to count how many bytes we're sending. Post'ed Faked Forms should be name=value&
byte [] bytes = System.Text.Encoding.ASCII.GetBytes(Parameters);
req.ContentLength = bytes.Length;
System.IO.Stream os = req.GetRequestStream ();
os.Write (bytes, 0, bytes.Length); //Push it out there
os.Close ();
System.Net.WebResponse resp = req.GetResponse();
if (resp== null) return null;
System.IO.StreamReader sr = new System.IO.StreamReader(resp.GetResponseStream());
return sr.ReadToEnd().Trim();
}
</code></pre>
http://stackoverflow.com/questions/1375409/reset-view-in-visual-studio-2008/1375442#13754423Answer by Dan Esparza for Reset View in Visual Studio 2008?Dan Esparza2009-09-03T19:29:26Z2009-09-03T19:29:26Z<p>I believe this will reset your settings to their factory state:</p>
<pre><code>devenv.exe /resetsettings
</code></pre>
<p>In the future, you might want to consider exporting your settings (after you get them where you want them) using the <strong>"Tools/Import and Export Settings ..." wizard</strong> in Visual Studio. </p>
<p>If you reset in the future, you can then either use the wizard, or use the command</p>
<pre><code>devenv /resetsettings {SettingsFile}
</code></pre>
<p>Where {SettingsFile} is your previously exported settings</p>
http://stackoverflow.com/questions/869928/standard-ratings-for-code-smells2Standard ratings for code smells?Dan Esparza2009-05-15T17:27:46Z2009-09-02T00:32:18Z
<p>It occurs to me (as I'm reviewing some old code) that there may be a standard way of rating <a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them">code smells</a> and I'm just not familiar with it. </p>
<p>To be clear: I'm <a href="http://en.wikipedia.org/wiki/Code%5Fsmell" rel="nofollow">familiar</a> with a few <a href="http://www.soberit.hut.fi/mmantyla/BadCodeSmellsTaxonomy.htm" rel="nofollow">taxonomies</a> of <a href="http://www.codinghorror.com/blog/archives/000589.html" rel="nofollow">code smells</a>, what I'm looking for is a standard rating system for code smells. (Where one would be able to fairly objectively state that one piece of code smelled worse than another).</p>
<p><em>Extra points for finding an existing system that contains witty references to smelly objects.</em></p>
http://stackoverflow.com/questions/1349470/asp-net-mvc-models-directory-what-is-it-good-for1ASP.NET MVC "Models" directory: What is it good for?Dan Esparza2009-08-28T21:29:41Z2009-08-31T11:52:40Z
<p>The default ASP.NET MVC project sets up a "Models" directory that I don't know that I've ever used in the handful of MVC projects I've worked on. Normally, I have a separate 'library' project that stores business logic classes.</p>
<p>Now I'm curious: <strong>Am I missing something big by not taking advantage of the default ASP.NET "Models" directory?</strong> Is there some built-in functionality that uses this nicely?</p>
http://stackoverflow.com/questions/1691861/jquery-compiled-with-google-closure-compiler/1691874#1691874Comment by Dan Esparza on jQuery compiled with Google Closure CompilerDan Esparza2009-11-13T19:15:38Z2009-11-13T19:15:38Z"minimally helpful" - Ha!http://stackoverflow.com/questions/111102/how-does-a-javascript-closure-work/111111#111111Comment by Dan Esparza on How does a javascript closure work ?Dan Esparza2009-11-13T19:10:48Z2009-11-13T19:10:48ZMoved to new location on his site: <a href="http://blog.morrisjohns.com/javascript_closures_for_dummies.html" rel="nofollow">blog.morrisjohns.com/javascript_closures_for_dumm…</a>http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/953638#953638Comment by Dan Esparza on What was the strangest coding standard rule that you were forced to follow?Dan Esparza2009-10-28T19:33:28Z2009-10-28T19:33:28ZActually -- she was a contractor. Didn't have much senority in terms of years.http://stackoverflow.com/questions/1602578/c-what-is-the-fastest-way-to-generate-a-unique-filename/1602706#1602706Comment by Dan Esparza on C#: What is the fastest way to generate a unique filename?Dan Esparza2009-10-21T18:46:41Z2009-10-21T18:46:41ZThat actually creates a file. I think you mean System.IO.Path.GetRandomFileName()http://stackoverflow.com/questions/1602578/c-what-is-the-fastest-way-to-generate-a-unique-filename/1602591#1602591Comment by Dan Esparza on C#: What is the fastest way to generate a unique filename?Dan Esparza2009-10-21T18:19:27Z2009-10-21T18:19:27ZWOW! Do you have a link source that describes this implementation guarantee?http://stackoverflow.com/questions/1602578/c-what-is-the-fastest-way-to-generate-a-unique-filenameComment by Dan Esparza on C#: What is the fastest way to generate a unique filename?Dan Esparza2009-10-21T18:18:31Z2009-10-21T18:18:31Z@Anders: Good point. I have a folder path already -- so I mean 'unique within a given file folder'http://stackoverflow.com/questions/1602578/c-what-is-the-fastest-way-to-generate-a-unique-filenameComment by Dan Esparza on C#: What is the fastest way to generate a unique filename?Dan Esparza2009-10-21T18:17:17Z2009-10-21T18:17:17ZAn excellent question. The answer is that I'm trying to squeeze every ounce of performance out of this file system intensive application.http://stackoverflow.com/questions/299367/how-do-i-setup-configure-elmah-on-godaddy-asp-net-hosting/1492823#1492823Comment by Dan Esparza on How do I setup / configure ELMAH on GoDaddy ASP.NET hostingDan Esparza2009-09-29T17:37:06Z2009-09-29T17:37:06ZHmmm ... it seems like this would be a late (muddled) response that's nothing more than spam. I don't like spam. http://stackoverflow.com/questions/1473309/i-need-a-simple-example-of-asp-net-routing/1474201#1474201Comment by Dan Esparza on I need a simple example of asp.net routingDan Esparza2009-09-25T02:53:26Z2009-09-25T02:53:26ZAFAIK this will redirect ALL 404's to the new page, unless this is in a location element. See <a href="http://msdn.microsoft.com/en-us/library/b6x6shw7(VS.71).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a> for more info.http://stackoverflow.com/questions/1473309/i-need-a-simple-example-of-asp-net-routing/1473375#1473375Comment by Dan Esparza on I need a simple example of asp.net routingDan Esparza2009-09-25T02:51:28Z2009-09-25T02:51:28Z@Fredou: You don't have to create a file if you use an HTTPModulehttp://stackoverflow.com/questions/1474377/json-library-for-cComment by Dan Esparza on JSON library for C#Dan Esparza2009-09-24T21:59:42Z2009-09-24T21:59:42ZDo you mean consuming, creating or both?http://stackoverflow.com/questions/1461809/caching-compiled-lambda-expressions/1461825#1461825Comment by Dan Esparza on Caching compiled lambda expressionsDan Esparza2009-09-22T18:42:40Z2009-09-22T18:42:40Z+1 for "Oh, and your singleton cache isn't thread-safe by the way."http://stackoverflow.com/questions/1461072/c-how-to-convert-a-list-of-objects-to-a-list-of-a-single-property-of-that-objec/1461090#1461090Comment by Dan Esparza on C#: How to convert a list of objects to a list of a single property of that object?Dan Esparza2009-09-22T16:30:17Z2009-09-22T16:30:17ZTrue, but the question was "How can this be done" ... not "How can this be done with the least amount of fluff". No disrespect intended, Jon. (Please don't smite me).http://stackoverflow.com/questions/1456975/what-are-common-windows-service-design-patterns/1460938#1460938Comment by Dan Esparza on What are common Windows service design patterns?Dan Esparza2009-09-22T16:20:43Z2009-09-22T16:20:43ZThanks for the point in the right direction!http://stackoverflow.com/questions/1456975/what-are-common-windows-service-design-patternsComment by Dan Esparza on What are common Windows service design patterns?Dan Esparza2009-09-22T15:50:21Z2009-09-22T15:50:21ZI have added clarification. Please let me know if I'm still being unclear.