User Richard E - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T17:10:19Zhttp://stackoverflow.com/feeds/user/39709http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1192951/quicker-quickest-way-to-get-number-of-files-in-a-directory-with-over-200-000-f6Quicker (quickest?) way to get number of files in a directory with over 200,000 filesRichard E2009-07-28T09:23:59Z2009-11-24T05:36:19Z
<p>I have some directories containing test data, typically over 200,000 small (~4k) files per directory.</p>
<p>I am using the following C# code to get the number of files in a directory:</p>
<pre><code>int fileCount = System.IO.Directory.GetFiles(@"C:\SomeDirectory").Length;
</code></pre>
<p>This is very, very slow however - are there any alternatives that I can use?</p>
<h2>Edit</h2>
<p>Each folder contains data for one day, and we will have around 18 months of directories (~550 directories). I am also very interested in performance enhancements people have found by reworking flat directory structures to more nested ones.</p>
http://stackoverflow.com/questions/1782258/win32-api-findfirstfile-and-findnextfile-performance-vs-command-line1Win32 API FindFirstFile and FindNextFile performance vs command lineRichard E2009-11-23T10:26:36Z2009-11-23T20:12:18Z
<p>We have encountered an unexpected performance issue when traversing directories looking for files using a wildcard pattern.</p>
<p>We have 180 folders each containing 10,000 files. A command line search using <code>dir <pattern> /s</code> completes almost instantly (<0.25 second). However, from our application the same search takes between 3-4 seconds.</p>
<p>We initially tried using <code>System.IO.DirectoryInfo.GetFiles()</code> with <code>SearchOption.AllDirectories</code> and have now tried the Win32 API calls <code>FindFirstFile()</code> and <code>FindNextFile()</code>.</p>
<p>Profiling our code using indicates that the vast majority of execution time is spent on these calls.</p>
<p>Our code is based on the following blog post:</p>
<p><a href="http://codebetter.com/blogs/matthew.podwysocki/archive/2008/10/16/functional-net-fighting-friction-in-the-bcl-with-directory-getfiles.aspx" rel="nofollow">http://codebetter.com/blogs/matthew.podwysocki/archive/2008/10/16/functional-net-fighting-friction-in-the-bcl-with-directory-getfiles.aspx</a></p>
<p>We found this to be slow so updated the <code>GetFiles</code> function to take a <code>string</code> search pattern rather than a predicate.</p>
<p>Can anyone shed any light on what might be wrong with our approach?</p>
http://stackoverflow.com/questions/1755953/most-efficient-way-to-create-and-write-multiple-10-kb-text-files1Most efficient way to create and write multiple 10 KB text files?Richard E2009-11-18T13:26:29Z2009-11-18T18:05:55Z
<p>We're using the following approach to writing out text files:</p>
<pre><code>public void WriteFile(string filePath, string contents)
{
if (string.IsNullOrEmpty(filePath)) { throw new ArgumentNullException("filePath"); }
if (contents == null) { throw new ArgumentNullException("contents"); }
if (File.Exists(filePath))
{
throw new InvalidOperationException(string.Format("The file '{0}' already exists", filePath));
}
StreamWriter sw = File.CreateText(filePath); // slow
sw.Write(contents);
sw.Close(); // slow
}
</code></pre>
<p>We are calling this function a large number of times, so performance is key. The two lines commented <code>slow</code> are where our application is spending most of its time.</p>
<p>The parameter <code>contents</code> contains, on average, about 10 KB of text.</p>
<p>Are there any other approaches in .NET or using the Win32 API that are known to have significantly better performance?</p>
<p>We have already tried the following:</p>
<pre><code>TextWriter tw = new StreamWriter(filePath);
tw.Write(contents);
tw.Close();
</code></pre>
<p>But have found the performance to be similar to our initial approach.</p>
<h2>Edit</h2>
<p>Based on suggestions we also tried:</p>
<pre><code>File.WriteAllText(filePath, contents);
</code></pre>
<p>However the performance of this is similar to the other approached listed above.</p>
http://stackoverflow.com/questions/759617/naming-conventions-one-rule-for-controllers-no-rules-for-models-and-views2Naming conventions - One rule for Controllers, no rules for Models and ViewsRichard E2009-04-17T08:50:43Z2009-11-18T08:36:22Z
<p>In ASP.NET MVC controllers exist in a folder called Controllers. Their names must end <code>Controller</code> otherwise things just don't work (you get an HTTP 404 error).</p>
<p>However, Model names don't have to end <code>Model</code> and View names don't have to end with <code>View</code>.</p>
<p>This seems inconsistent...why (from an MVC or design standpoint) do controller names have to end <code>Controller</code>?</p>
<p>Do other MVC frameworks have this requirement?</p>
<h2>Edit</h2>
<p>Since this appears to be the convention I am not advocating going against it (see <a href="http://en.wikipedia.org/wiki/Convention%5Fover%5FConfiguration" rel="nofollow">Convention over Configuration</a>!), but I want to understand the reasons behind it.</p>
http://stackoverflow.com/questions/516118/validate-all-aspx-ascx-and-html-files-when-building3Validate all ASPX, ASCX and HTML files when buildingRichard E2009-02-05T14:28:26Z2009-11-12T11:39:25Z
<p>Visual Studio will show errors in an AS?X or HTML file in the Error List window when you have that file open. However once you close the file the error(s) are removed from the Error List.</p>
<p>Is it possible to validate all AS?X and HTML files in one action (ideally as part of building) and show all errors at once?</p>
http://stackoverflow.com/questions/1721408/dependency-injection-is-this-how-its-meant-to-look2Dependency Injection - is this how it's meant to look?Richard E2009-11-12T10:51:46Z2009-11-12T10:56:44Z
<p>Our project is using constructor-based Dependency Injection (we're using Unity as our container) and we have a number of constructors which have acquired a large number of parameters.</p>
<p>For example:</p>
<pre><code> public FooRequestService(
ITransactionDataBuilder transactionDataBuilder,
IMapper<SaveFooRequest, FooRequestMessage> saveFooRequestToFooRequestMapper,
IFooRequestedThingRepository fooRequestedThingRepository,
IFooRequestedThingBuilder fooRequestedThingBuilder,
IMapper<IEnumerable<FooRequestedThing>, IEnumerable<FoundFooRequestedThing>> fooRequestedThingsToFoundFooRequestedThingsMapper,
IAutomatedFooWcfService automatedFooService,
IFooArrivalMessageProvider fooArrivalMessageProvider,
ISeatCancellation cancellation,
IPostSalesService postSalesService,
ITransactionEnquiryService transactionService,
IMapper<IEnumerable<FooRequestedThing>, List<ThingArrivedForFoo>> thingArrivalRequestDocumentMapper,
IMapper<SaveFooRejected, FooRejectedMessage> saveFooRejectedToFooRejectedMapper,
IPartialFooConfiguration partialFooConfiguration,
ICurrentDateTimeProvider currentDateTimeProvider,
IMapper<FooRequestMessage, List<FooRequested>> tracsFooRequestMapper,
IThreeWayMerger<Transaction, TransactionService.Contract.Transaction, NotifyFooRequestedRequest, SaveFooRequest> saveFooRequestMerger,
KioskWebServiceSoap kioskServiceGateway)
{
// code here to set injected values to member variables
}
</code></pre>
<p>This class has a total of around 370 lines of code and represents a core part of the system, hence the large number of dependencies.</p>
<ul>
<li>From a DI perspective, is is usual to have so many parameters passed to a constructor?</li>
<li>The general approach concerns me from an encapsulation and scoping aspect. All dependencies can be used from anywhere within a class, even if they should (strictly speaking) only be used from, for example, a single method</li>
</ul>
http://stackoverflow.com/questions/472879/format-string-as-uk-phone-number0Format string as UK phone numberRichard E2009-01-23T13:31:48Z2009-11-08T20:30:45Z
<p>I'm looking for a routine that will format a string of numbers as a UK phone number. The routine should account for UK area codes that require different formatting (i.e. London compared to Edinburgh compared to Worcester) as well as mobile numbers.</p>
<p>My phone numbers are stored in the database as strings, containing only numeric characters.</p>
<p>So far I have come up with this, but the performance seems poor.</p>
<pre><code>/// <summary>
/// Formats a string as a UK phone number
/// </summary>
/// <remarks>
/// 02012345678 becomes 020 1234 5678
/// 01311234567 becomes 0131 123 4567
/// 01905123456 becomes 01905 123456
/// 07816123456 becomes 07816 123456
/// </remarks>
public static string FormatPhoneNumber(string phoneNumber)
{
string formattedPhoneNumber = null;
if (!string.IsNullOrEmpty(phoneNumber))
{
System.Text.RegularExpressions.Regex area1 = new System.Text.RegularExpressions.Regex(@"^0[1-9]0");
System.Text.RegularExpressions.Regex area2 = new System.Text.RegularExpressions.Regex(@"^01[1-9]1");
string formatString;
if (area1.Match(phoneNumber).Success)
{
formatString = "0{0:00 0000 0000}";
}
else if (area2.Match(phoneNumber).Success)
{
formatString = "0{0:000 000 0000}";
}
else
{
formatString = "0{0:0000 000000}";
}
formattedPhoneNumber = string.Format(formatString, Int64.Parse(phoneNumber));
}
return formattedPhoneNumber;
}
</code></pre>
<p>Thoughts welcomed on how to improve this...</p>
<h2>Edit</h2>
<p>My initial thoughts are that I should store phone numbers as numeric fields in the database, then I can go without the Int64.Parse and <em>know</em> that they are truly numeric.</p>
<h2>Edit 2</h2>
<p>The phone numbers will all be UK geographic or UK mobile numbers, so special cases like 0800 do not need to be considered</p>
http://stackoverflow.com/questions/458291/edit-composite-key-value-using-linq2Edit composite key value using LINQRichard E2009-01-19T16:51:12Z2009-11-05T20:24:24Z
<p>I have a table which uses three columns as a composite key.</p>
<p>One of these column values is used as a sequence tracker for ordered related records. When I insert a new record I have to increment the sequence numbers for the related records that come after the new record.</p>
<p>I can do this directly in SQL Server Management Studio, but when I attempt this in LINQ I get the following error:</p>
<pre>
Value of member 'Sequence' of an object of type 'TableName' changed.
A member defining the identity of the object cannot be changed.
Consider adding a new object with new identity and deleting the existing one instead.
</pre>
<p>Can anyone suggest a way around this limitation?</p>
<p>(Adding a new record (as suggested by the error message) isn't really an option as the table with the composite key has a relationship with another table.)</p>
http://stackoverflow.com/questions/1681999/when-do-windows-xp-services-get-started/1682010#16820100Answer by Richard E for When do windows xp services get started?Richard E2009-11-05T16:57:03Z2009-11-05T16:57:03Z<p>Yes, using (by default) a built-in Windows account. In Services (run services.msc) there is a "Log On As" column that tells you the user that the service logs in as.</p>
http://stackoverflow.com/questions/1629539/use-of-square-brackets-around-javascript-variables1Use of [square brackets] around JavaScript variablesRichard E2009-10-27T09:05:13Z2009-10-27T13:18:02Z
<p>We have received some JavaScript from an agency that looks wrong, but works.</p>
<p>For some reason they are adding [square brackets] around variables, thus:</p>
<pre><code>var some_variable = 'to=' + [other_variable];
</code></pre>
<p>This works, but the square brackets seem completely superfluous.</p>
<p>Is there a purpose to this syntax or is it technically incorrect, but ignored by the browser?</p>
http://stackoverflow.com/questions/1624301/fixing-indentation-when-object-initializers-have-been-used0Fixing indentation when object initializers have been usedRichard E2009-10-26T11:29:59Z2009-10-26T12:50:28Z
<p>Is there a tool that will auto-indent code that uses <a href="http://weblogs.asp.net/dwahlin/archive/2007/09/09/c-3-0-features-object-initializers.aspx" rel="nofollow">object initializers</a> in the following manner:</p>
<pre><code>SomeType someType = new SomeType
{
Prop1 = "prop 1 value",
Prop2 = "prop 2 value",
Things = new List<Thing>
{
new Thing
{
ThingProp = "thing prop value"
}
}
};
</code></pre>
<p>i.e. using the same brace indenting rules as are commonly seen in other C# code.</p>
<p>ReSharper likes to indent more heavily but then won't maintain the intentation if the code changes later on (we have turned off various ReSharper options to prevent this from happening).</p>
<p>The standard Visual Studio 2008 formatting option (Ctrl-K-D) doesn't change the indentation of object initializers.</p>
<p>Class definitions are included below</p>
<pre><code>public class Thing
{
public string ThingProp { get; set; }
}
public class SomeType
{
public string Prop1 { get; set; }
public string Prop2 { get; set; }
public List<Thing> Things { get; set; }
}
</code></pre>
http://stackoverflow.com/questions/570160/throttling-login-attempts1Throttling login attemptsRichard E2009-02-20T16:11:30Z2009-10-23T16:43:25Z
<p>(This is in principal a language-agnostic question, though in my case I am using ASP.NET 3.5)</p>
<p>I am using the standard ASP.NET <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.login.aspx" rel="nofollow">login control</a> and would like to implement the following failed login attempt throttling logic.</p>
<ul>
<li>Handle the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.login.loginerror.aspx" rel="nofollow"><code>OnLoginError</code></a> event and maintain, in <a href="http://msdn.microsoft.com/en-us/library/ms972429.aspx" rel="nofollow">Session</a>, a count of failed login attempts</li>
<li>When this count gets to <em>[some configurable value]</em> block further login attempts from the originating IP address or for that user / those users for 1 hour</li>
</ul>
<p>Does this sound like a sensible approach? Am I missing an obvious means by which such checks could be bypassed?</p>
<p>Note: ASP.NET Session is associated with the user's browser using a cookie</p>
<h2>Edit</h2>
<p>This is for an administration site that is only going to be used from the UK and India</p>
http://stackoverflow.com/questions/1612887/can-i-have-a-variable-number-of-generic-parameters3Can I have a variable number of generic parameters?Richard E2009-10-23T11:40:27Z2009-10-23T11:50:07Z
<p>In my project I have the following three interfaces, which are implemented by classes that manage merging of a variety of business objects that have different structures.</p>
<pre><code>public interface IMerger<TSource, TDestination>
{
TDestination Merge(TSource source, TDestination destination);
}
public interface ITwoWayMerger<TSource1, TSource2, TDestination>
{
TDestination Merge(TSource1 source1, TSource2 source2, TDestination destination);
}
public interface IThreeWayMerger<TSource1, TSource2, TSource3, TDestination>
{
TDestination Merge(TSource1 source1, TSource2 source2, TSource3 source3, TDestination destination);
}
</code></pre>
<p>This works well, but I would rather have one <code>IMerger</code> interface which specifies a variable number of <code>TSource</code> parameters, something like this (example below uses <code>params</code>; I know this is not valid C#):</p>
<pre><code>public interface IMerger<params TSources, TDestination>
{
TDestination Merge(params TSource sources, TDestination destination);
}
</code></pre>
<p>It there any way to achieve this, or something functionally equivalent?</p>
http://stackoverflow.com/questions/721702/concatenating-an-array-of-strings-to-string1-string2-or-string32Concatenating an array of strings to "string1, string2 or string3"Richard E2009-04-06T14:28:22Z2009-10-16T01:44:32Z
<p>Consider the following code:</p>
<pre><code>string[] s = new[] { "Rob", "Jane", "Freddy" };
string joined = string.Join(", ", s);
// joined equals "Rob, Jane, Freddy"
</code></pre>
<p>For UI reasons I might well want to display the string <code>"Rob, Jane or Freddy"</code>.</p>
<p>Any suggestions about the most concise way to do this?</p>
<h2>Edit</h2>
<p>I am looking for something that is concise to type. Since I am only concatenating small numbers (<10) of strings I am not worried about run-time performance here.</p>
http://stackoverflow.com/questions/934946/best-practices-regarding-locations-for-asp-net-mvc-models0Best practices regarding locations for ASP.NET MVC modelsRichard E2009-06-01T14:00:02Z2009-10-05T19:30:46Z
<p>Are there any best practices that cover the places that ASP.NET MVC models should be defined?</p>
<p>A new ASP.NET MVC project has a nice neat Models folder for them to go in, but in a production environment they can come from other places:</p>
<ul>
<li>Third party class libraries</li>
<li>WCF services</li>
</ul>
<p>Is it acceptable for a strongly-typed view to use a class defined in such a location?</p>
http://stackoverflow.com/questions/1520195/how-do-you-know-who-is-fixing-the-build2How do you know who is fixing the build?Richard E2009-10-05T13:50:50Z2009-10-05T14:22:43Z
<p>We are working in a CI environment, with Enterprise Cruise running our builds. Developers all have CCTray installed locally to notify us if a build breaks.</p>
<p>CCTray has a menu option <em>Volunteer to fix build</em> that you can use to let your team know that you are fixing the build. However this doesn't work in our environment (reasons: Fix build not currently supported on projects monitored via HTTP).</p>
<p>So the question is - does anyone have a technique that they use in their team that allows someone to indicate that they are fixing a broken build?</p>
http://stackoverflow.com/questions/594378/lance-hunts-c-coding-standards-enum-confusion8Lance Hunt's C# Coding Standards - enum confusionRichard E2009-02-27T11:17:43Z2009-10-05T13:41:52Z
<p>My team has recently started using <a href="http://weblogs.asp.net/lhunt/pages/CSharp-Coding-Standards-document.aspx" rel="nofollow">Lance Hunt's C# Coding Standards</a> document as a starting point for consolidating our coding standards.</p>
<p>There is one item that we just don't understand the point of, can anyone here shed any light on it?</p>
<p>The item is number 77:</p>
<blockquote>
<p><em>Always validate an enumeration
variable or parameter value before
consuming it. They may contain any
value that the underlying Enum type
(default int) supports.</em></p>
<p><em>Example:</em></p>
<pre><code>public void Test(BookCategory cat)
{
if (Enum.IsDefined(typeof(BookCategory), cat))
{…}
}
</code></pre>
</blockquote>
http://stackoverflow.com/questions/1517409/im-an-asp-net-programmer-webforms-should-i-switch-to-mvc/1517465#15174651Answer by Richard E for I'm an ASP.NET programmer (Webforms). Should I switch to MVC?Richard E2009-10-04T21:46:01Z2009-10-04T21:46:01Z<p>If you are writing complex websites where the functionality you are trying to deliver has echos of classic Windows applications then I find that WebForms can be the best bet. Certainly ViewState can be (and often is) wielded without regard for the consequences (large postbacks etc). However the quality of most WebForms controls, and more recently the addition of the ListView control make it a very productive platform.</p>
<p>On the other hand, if you are crafting websites in conjunction with a design team who are specifying the exact HTML to render and the actual functionality is less complex then MVC can be great. MVC also pushes you down a coding model that is by default more suited to testability. There are lots of jQuery plug-ins that deliver rich UI features without lengthy coding but I have had minor quality issues with a few of the plug-ins I have used. Also most of the time I don't need <em>choice</em> of watermark or calendar controls - I just want one that works!</p>
<p>In summary - I think it depends on whether you are writing a web <em>site</em> or a web <em>application</em>.</p>
http://stackoverflow.com/questions/1454815/merging-two-objects-containing-properties-into-one-object0Merging two objects containing properties into one objectRichard E2009-09-21T14:29:04Z2009-09-21T14:43:52Z
<p>If I have two objects, <code>foo</code> and <code>bar</code>, delared using object initializer syntax...</p>
<pre><code>object foo = new { one = "1", two = "2" };
object bar = new { three = "3", four = "4" };
</code></pre>
<p>Is it possible to combine these into a single object, which would look like this...</p>
<pre><code>object foo = new { one = "1", two = "2", three = "3", four = "4" };
</code></pre>
http://stackoverflow.com/questions/1377897/getting-xml-serialization-to-automagically-ignore-non-serializable-properties0Getting XML serialization to automagically ignore non-serializable propertiesRichard E2009-09-04T08:16:31Z2009-09-17T02:03:44Z
<p>I'm using the .NET serialization classes to XML serialize and log argument values that get passed to certain functions in my application. To this end I need a means to XML serialize the property values of any classes that get passes, but <em>ignoring</em> any properties that cannot be XML serialized (e.g. any <code>Image</code> type properties).</p>
<p>I could go through my classes and mark such properties with the <code>[XmlIgnore]</code> attribute, but ideally I'd like a serializer that just skips over such properties.</p>
<p>Is this achievable?</p>
http://stackoverflow.com/questions/759863/asp-net-mvc-users-do-you-miss-anything-from-webforms12ASP.NET MVC users - do you miss anything from WebForms?Richard E2009-04-17T10:14:24Z2009-09-16T15:53:20Z
<p>There are lots of articles and discussions about the differences between ASP.NET WebForms and ASP.NET MVC that compare the relative merits of the two frameworks.</p>
<p>I have a different question for anyone who has experience using WebForms that has since moved to MVC:</p>
<p>What is the number one thing that WebForms had, that MVC doesn't, that you really miss?</p>
<h2>Edit</h2>
<p>No-one has mentioned the WebForms validation controls. I am now working on some code that has a few dependant validation rules and implementing client-side validation for these is proving slow.</p>
http://stackoverflow.com/questions/1432743/adding-jquery-conditional-validation-to-dynamically-generated-html1Adding jQuery conditional validation to dynamically-generated HTMLRichard E2009-09-16T12:47:11Z2009-09-16T15:04:33Z
<p>I have the following HTML scenario:</p>
<pre><code><div>
<input id="txt0" type="text" /><input type="checkbox" id="chk0" /></div>
<div>
<input id="txt1" type="text" /><input type="checkbox" id="chk1" /></div>
<!-- etc -->
<div>
<input id="txtN" type="text" /><input type="checkbox" id="chkN" /></div>
</code></pre>
<p>If checkbox <em>N</em> is checked, then textbox <em>N</em> is a mandatory field.</p>
<p>I've just started to work with a (the?) <a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/" rel="nofollow">jQuery validation</a> module and am trying to figure out how to achieve this validation, which seems just that bit more complex than the examples.</p>
<p>Conceptually I think I want to add a CSS class to my checkboxes, then use <code>addClassRules</code> to add a custom rule. However, the challenge is how to specify the relevant textbox for each checkbox.</p>
<p>My HTML is generated using ASP.NET MVC, so I could dynamically generate the JavaScript that would specify a rule for each checkbox, but this seems a bit long-winded.</p>
http://stackoverflow.com/questions/1432743/adding-jquery-conditional-validation-to-dynamically-generated-html/1433583#14335830Answer by Richard E for Adding jQuery conditional validation to dynamically-generated HTMLRichard E2009-09-16T15:04:33Z2009-09-16T15:04:33Z<p>Solved, using the following approach...</p>
<p>I updated my HTML to include a specific CSS class to my textboxes (<code>amount_text_box</code>), and used the following jQuery:</p>
<pre><code>$.validator.addClassRules("amount_text_box", { required: function(element) {
var chkId = element.id.replace(/txt/, "#chk");
return $(chkId)[0].checked;
}
</code></pre>
<p>One limitation is that this only fires when focus leaves the textbox - ideally the rule would also fire when the checkbox was clicked.</p>
http://stackoverflow.com/questions/1428154/dataannotationsmodelbinder-does-not-bind-with-a-list0DataAnnotationsModelBinder does not bind with a List<>Richard E2009-09-15T16:16:23Z2009-09-15T16:16:23Z
<p>I am trying to use the <a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24471" rel="nofollow">Data Annotations Model Binder Sample</a> to provide UI validation on my application. However it seems that this doesn't work if your ViewModel contains a property that is a generic list.</p>
<p>Can anyone shed any light on whether this is the case?</p>
<p>I'm using ASP.NET MVC 1.0</p>
http://stackoverflow.com/questions/528066/server-tag-in-onclientclick0Server tag in OnClientClickRichard E2009-02-09T13:05:58Z2009-09-11T17:38:52Z
<p>The following gives me an error of "The server tag is not well formed"</p>
<pre><code><asp:LinkButton ID="DeleteButton" runat="server" CommandName="Delete"
OnClientClick="return confirm('Are you sure you want to delete <%# Eval("Username") %>?');">
Delete
</asp:LinkButton>
</code></pre>
<p>(This is used in a data bound ListView that displays a list of users. When you click the delete button a JavaScript confirm dialog is used to ask you if you're sure)</p>
<p>So, how can I embed a server tag in a string that contains JavaScript?</p>
http://stackoverflow.com/questions/1404999/development-machines-and-anti-virus-policy1Development machines and anti-virus policyRichard E2009-09-10T12:29:48Z2009-09-10T13:27:52Z
<p>Our company uses Sophos Anti-Virus with a default configuration that performs on-access scanning on all files.</p>
<p>We are considering turning this off for source code files but are concerned about the potential risk this poses. In our case these files are .cs files containing C# source code.</p>
<p>Does this really pose a risk?</p>
<h1>Edit</h1>
<p>Within the company we have had a number of issues with viruses recently (all got caught by Sophos) and about 90% of these came from developer machines.</p>
<p>Developers are doing Windows dev work so have full admin rights on their machines.</p>
http://stackoverflow.com/questions/1341142/aop-unity-interceptors-and-asp-net-mvc-controller-action-methods0Aop, Unity, Interceptors and ASP.NET MVC Controller Action MethodsRichard E2009-08-27T13:36:02Z2009-08-29T18:12:32Z
<p>Using log4net we would like to log all calls to our ASP.NET MVC controller action methods.</p>
<p>The logs should include information about any parameters that were passed to the controller.</p>
<p>Rather than hand-coding this in each action method we hope to use an AoP approach with <a href="http://msdn.microsoft.com/en-us/library/dd140045.aspx" rel="nofollow">Interceptors via Unity</a>.</p>
<p>We already have this working with some other classes that use interfaces (using the <code>InterfaceInterceptor</code>). However, we're not sure how to proceed with our controllers. Should we re-work them slightly to use an interface, or is there a simpler approach?</p>
<h2>Edit</h2>
<p>The <a href="http://www.pnpguidance.net/Post/VirtualMethodInterceptorUnity12CastleDynamicProxyFans.aspx" rel="nofollow">VirtualMethodInterceptor</a> seems to be the correct approach, however using this results in the following exception:</p>
<pre>
System.ArgumentNullException: Value cannot be null.
Parameter name: str
at System.Reflection.Emit.DynamicILGenerator.Emit(OpCode opcode, String str)
at Microsoft.Practices.ObjectBuilder2.DynamicMethodConstructorStrategy.PreBuildUp(IBuilderContext context)
at Microsoft.Practices.ObjectBuilder2.StrategyChain.ExecuteBuildUp(IBuilderContext context)
</pre>
http://stackoverflow.com/questions/576990/should-i-ignore-the-occasional-invalid-viewstate-error14Should I ignore the occasional Invalid viewstate error?Richard E2009-02-23T09:21:33Z2009-08-29T16:07:39Z
<p>Every now and then (once every day or so) we're seeing the following types of errors in our logs for an ASP.NET 3.5 application</p>
<ul>
<li>Invalid viewstate</li>
<li>Invalid postback or callback argument</li>
</ul>
<p>Are these something that "just happens" from time-to-time with an ASP.NET application? Would anyone recommend we spend a lot of time trying to diagnose what's causing the issues?</p>
http://stackoverflow.com/questions/423638/stack-overflow-etiquette-for-thanking-users-who-answered-my-question13Stack Overflow etiquette for thanking users who answered my question [closed]Richard E2009-01-08T09:02:46Z2009-08-26T17:59:00Z
<p>Quite often a number of users will give similar answers to a question I post on Stack Overflow. Sometimes someone will give an answer that is interesting, but does not really help answer the question.</p>
<p>In all cases I feel a need to thank the people who replied to my question. Upvoting their reply isn't always appropriate, and only one reply can get the "answer crown". Commenting with a "thanks" comment on every response makes me feel like a bit of a bozo.</p>
<p>So, what's the etiquette?</p>
http://stackoverflow.com/questions/1322931/warning-file-controllername-actionmethodname-was-not-found0Warning: "File '../ControllerName/ActionMethodName' was not found."Richard E2009-08-24T15:03:10Z2009-08-24T15:15:57Z
<p>We're seeing the above warning on a View's form post...</p>
<pre><code><form action="../ControllerName/ActionMethodName" method="post">
</code></pre>
<p>Technically this warning is correct - there is no such file, but as we're using ASP.NET MVC this check isn't really sufficient.</p>
<p>This warning isn't stopping our application from working but we have a general "no compiler warnings" policy so would like to suppress it.</p>
<p>Is this possible?</p>
http://stackoverflow.com/questions/1782258/win32-api-findfirstfile-and-findnextfile-performance-vs-command-line/1782515#1782515Comment by Richard E on Win32 API FindFirstFile and FindNextFile performance vs command lineRichard E2009-11-23T15:02:48Z2009-11-23T15:02:48ZDoing the same analysis using our approach that used Win32 API calls shows that the disk operations are almost identical.http://stackoverflow.com/questions/1782258/win32-api-findfirstfile-and-findnextfile-performance-vs-command-line/1782299#1782299Comment by Richard E on Win32 API FindFirstFile and FindNextFile performance vs command lineRichard E2009-11-23T11:46:47Z2009-11-23T11:46:47ZIn our scenario we have 180 folders, each containing around 10,000 files. The split across multiple folders is what appears to kill the performance.http://stackoverflow.com/questions/1782258/win32-api-findfirstfile-and-findnextfile-performance-vs-command-lineComment by Richard E on Win32 API FindFirstFile and FindNextFile performance vs command lineRichard E2009-11-23T11:12:07Z2009-11-23T11:12:07Z@sharptooth: I have added a link to a post that contains the source code we usedhttp://stackoverflow.com/questions/1782258/win32-api-findfirstfile-and-findnextfile-performance-vs-command-line/1782299#1782299Comment by Richard E on Win32 API FindFirstFile and FindNextFile performance vs command lineRichard E2009-11-23T10:40:50Z2009-11-23T10:40:50ZOur approach is very similar to that Darinhttp://stackoverflow.com/questions/1782258/win32-api-findfirstfile-and-findnextfile-performance-vs-command-lineComment by Richard E on Win32 API FindFirstFile and FindNextFile performance vs command lineRichard E2009-11-23T10:33:46Z2009-11-23T10:33:46Z@Matt we're just doing a <code>dir /s</code> (have updated my post accordingly).http://stackoverflow.com/questions/1755953/most-efficient-way-to-create-and-write-multiple-10-kb-text-filesComment by Richard E on Most efficient way to create and write multiple 10 KB text files?Richard E2009-11-18T15:12:30Z2009-11-18T15:12:30Z@Timo: I am using a profiler to check for code bottlenecks, so I could have been more specific. "slow" in this context means "the area of code where most execution time is spent"http://stackoverflow.com/questions/1755953/most-efficient-way-to-create-and-write-multiple-10-kb-text-filesComment by Richard E on Most efficient way to create and write multiple 10 KB text files?Richard E2009-11-18T15:11:23Z2009-11-18T15:11:23Z@scraimer, @ApoY2k: I am writing out many different files, have updated the title to reflect this.http://stackoverflow.com/questions/1721621/which-http-redirects-status-code-to-use/1721634#1721634Comment by Richard E on Which Http redirects status code to use ?Richard E2009-11-12T11:41:45Z2009-11-12T11:41:45Z+1 for mention of SEO relevancehttp://stackoverflow.com/questions/1721408/dependency-injection-is-this-how-its-meant-to-look/1721423#1721423Comment by Richard E on Dependency Injection - is this how it's meant to look?Richard E2009-11-12T10:56:35Z2009-11-12T10:56:35ZI had been considering this. For example, we have a number of services that could be grouped by an object, as well as mappers which map between service and domain objects.http://stackoverflow.com/questions/1629539/use-of-square-brackets-around-javascript-variables/1629566#1629566Comment by Richard E on Use of [square brackets] around JavaScript variablesRichard E2009-10-27T09:13:26Z2009-10-27T09:13:26ZSo in my exampe a new array containing one element is getting created?http://stackoverflow.com/questions/1624301/fixing-indentation-when-object-initializers-have-been-used/1624333#1624333Comment by Richard E on Fixing indentation when object initializers have been usedRichard E2009-10-27T09:12:39Z2009-10-27T09:12:39ZI have tried both retyping the closing semicolon and Ctrl-K-D. In both scenarios the reformatting fails for everything after the <code>new List<Thing></code> in my posted examplehttp://stackoverflow.com/questions/1624301/fixing-indentation-when-object-initializers-have-been-used/1624333#1624333Comment by Richard E on Fixing indentation when object initializers have been usedRichard E2009-10-26T13:04:31Z2009-10-26T13:04:31ZIt looks like the auto-formatting fails when it hits any property that is a reference type that also uses object initialization in the same statement.
Note that it formats correctly while you type, but not if you are trying to re-format code that is badly indented.http://stackoverflow.com/questions/1624301/fixing-indentation-when-object-initializers-have-been-used/1624333#1624333Comment by Richard E on Fixing indentation when object initializers have been usedRichard E2009-10-26T12:26:23Z2009-10-26T12:26:23ZMy initial comment wasn't 100% correct - this works, but not for the <code>List<Thing></code> initializationhttp://stackoverflow.com/questions/1624301/fixing-indentation-when-object-initializers-have-been-used/1624333#1624333Comment by Richard E on Fixing indentation when object initializers have been usedRichard E2009-10-26T11:55:33Z2009-10-26T11:55:33ZThat stops ReSharper from meddling with the formatting, but sadly doesn't help with auto-formattinghttp://stackoverflow.com/questions/1612887/can-i-have-a-variable-number-of-generic-parameters/1612903#1612903Comment by Richard E on Can I have a variable number of generic parameters?Richard E2009-10-23T12:03:29Z2009-10-23T12:03:29ZMy thinking is that source1 .. sourcen indicates "these are the sources", whereas a chain of .Merge calls indicates that the merges are happening in that specific order.