User Greg Beech - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T22:38:40Z http://stackoverflow.com/feeds/user/13552 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1866533/returning-items-randomly-from-a-collection/1866558#1866558 6 Answer by Greg Beech for Returning items randomly from a collection Greg Beech 2009-12-08T12:07:44Z 2009-12-08T12:57:02Z <p>I wrote a TakeRandom extension method a while back which does this using a <a href="http://en.wikipedia.org/wiki/Fisher%E2%80%93Yates%5Fshuffle" rel="nofollow">Fisher-Yates shuffle</a>. It's pretty efficient as it only bothers to randomise the number of items that you actually want to return, and is guaranteed to be unbiased.</p> <pre><code>public static IEnumerable&lt;T&gt; TakeRandom&lt;T&gt;(this IEnumerable&lt;T&gt; source, int count) { var array = source.ToArray(); return ShuffleInternal(array, Math.Min(count, array.Length)).Take(count); } private static IEnumerable&lt;T&gt; ShuffleInternal&lt;T&gt;(T[] array, int count) { for (var n = 0; n &lt; count; n++) { var k = ThreadSafeRandom.Next(n, array.Length); var temp = array[n]; array[n] = array[k]; array[k] = temp; } return array; } </code></pre> <p>An implementation of ThreadSafeRandom can be <a href="http://blogs.msdn.com/pfxteam/archive/2009/02/19/9434171.aspx" rel="nofollow">found at the PFX team blog</a>.</p> http://stackoverflow.com/questions/1865734/sql-server-database-synchronization/1865752#1865752 0 Answer by Greg Beech for SQL Server DataBase Synchronization Greg Beech 2009-12-08T09:23:28Z 2009-12-08T09:23:28Z <p>SQL Server will manage the synchronization for you. See <a href="http://en.wikipedia.org/wiki/Database%5Ftransaction" rel="nofollow">database transactions</a> and <a href="http://en.wikipedia.org/wiki/Isolation%5F%28database%5Fsystems%29" rel="nofollow">isolation levels</a> for more details.</p> http://stackoverflow.com/questions/1841421/which-of-the-statement-are-true-about-the-passport-authentication/1841484#1841484 1 Answer by Greg Beech for which of the statement are true about the passport Authentication? Greg Beech 2009-12-03T17:20:25Z 2009-12-03T17:20:25Z <p>e. Passport authentication is deprecated in favour of Windows Live ID</p> <p>(<a href="http://en.wikipedia.org/wiki/Windows%5FLive%5FID#History" rel="nofollow">reference</a>)</p> http://stackoverflow.com/questions/1841365/is-it-better-to-store-platform-configuration-in-database-or-a-file/1841415#1841415 1 Answer by Greg Beech for is it better to store platform configuration in database or a file? Greg Beech 2009-12-03T17:11:51Z 2009-12-03T17:11:51Z <p>We store config settings in a key/value type table, something like:</p> <pre><code>CREATE TABLE Configuration.GlobalSettings ( SectionName VARCHAR(50), SettingName VARCHAR(50), SettingValue VARCHAR(1000), SettingType TINYINT ); </code></pre> <p>The <code>SectionName</code> &amp; <code>SettingName</code> are the primary key, we just split them up to make it easier to query what is in a section, and to allow the loading of individual sections into handlers rather than loading the whole lot at once. The <code>SettingValue</code> is a string, and then the <code>SettingType</code> is a discriminator that tells us how the setting value should be interpreted (e.g. 1 = string, 2 = bool, 3 = decimal, etc.).</p> <p>This means you don't have to change the table structure for new settings, just add a new one in the deployment script or wherever it is you set these things up.</p> <p>We find it a better way do do config than a file because it means you can easily programmatically change config values through an admin interface when needed, which can enforce logic around what can go into each setting. You can't do that so easily with a file (though, of course, it is possible).</p> http://stackoverflow.com/questions/407518/code-golf-leibniz-formula-for-pi 18 Code Golf: Leibniz formula for Pi Greg Beech 2009-01-02T17:42:45Z 2009-12-03T14:39:13Z <p>I recently posted <a href="http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion#406948">one of my favourite interview whiteboard coding questions</a> in "<a href="http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion">What's your more controversial programming opinion</a>", which is to write a function that computes Pi using the <a href="http://en.wikipedia.org/wiki/Leibniz_formula_for_pi" rel="nofollow">Leibniz formula</a>. </p> <p>It can be approached in a number of different ways, and the exit condition takes a bit of thought, so I thought it might make an interesting code golf question. Shortest code wins!</p> <blockquote> <p>Given that Pi can be estimated using the function 4 * (1 - 1/3 + 1/5 - 1/7 + ...) with more terms giving greater accuracy, write a function that calculates Pi to within 0.00001.</p> </blockquote> <p><strong>Edit: 3 Jan 2008</strong></p> <p>As suggested in the comments I changed the exit condition to be within 0.00001 as that's what I really meant (an accuracy 5 decimal places is much harder due to rounding and so I wouldn't want to ask that in an interview, whereas within 0.00001 is an easier to understand and implement exit condition).</p> <p>Also, to answer the comments, I guess my intention was that the solution should compute the number of iterations, or check when it had done enough, but there's nothing to prevent you from pre-computing the number of iterations and using that number. I really asked the question out of interest to see what people would come up with.</p> http://stackoverflow.com/questions/1838868/website-crash-with-millions-of-hit/1838875#1838875 8 Answer by Greg Beech for Website Crash with millions of HIT Greg Beech 2009-12-03T09:55:32Z 2009-12-03T09:55:32Z <p>Follow this procedure:</p> <ol> <li>Find out why it is crashing</li> <li>Solve that problem</li> <li>If not fixed, go to 1</li> </ol> http://stackoverflow.com/questions/1824870/classnametype-gettypesomenamespace-classname/1824908#1824908 2 Answer by Greg Beech for ClassName<Type.GetType("Somenamespace.ClassName")> Greg Beech 2009-12-01T09:04:38Z 2009-12-01T09:04:38Z <p>You can use Type.MakeGenericType and Activator.CreateInstance to make an instance of the generic type, e.g.</p> <pre><code>Type t = Type.GetType("mynamespce.a.b.c"); Type g = typeof(GenericClass&lt;&gt;).MakeGenericType(t); object x = Activator.CreateInstance(g); </code></pre> <p>But it won't be strongly typed as the type of generic class in your code, if that's what you're looking for. That isn't possible as C# doesn't allow you to work with open generic types.</p> http://stackoverflow.com/questions/1822270/setting-httpcontext-current-request-url-host/1822542#1822542 1 Answer by Greg Beech for Setting HttpContext.Current.Request.Url.Host Greg Beech 2009-11-30T21:32:43Z 2009-11-30T21:32:43Z <p>Use the <a href="http://msdn.microsoft.com/en-us/library/system.uribuilder.aspx" rel="nofollow"><code>UriBuilder</code></a> class to change URIs, e.g.</p> <pre><code>var original = HttpContext.Current.Request.Url; var changed = (new UriBuilder(original) { Host = "newDomain" }).Uri; </code></pre> <p>URIs are tricky little beasts with plenty of semantics you might not know or expect, so don't go using string functions on them unless you absolutely have to.</p> http://stackoverflow.com/questions/1819158/better-solution-replacing-the-foreach-loop-or-refining-it/1819247#1819247 2 Answer by Greg Beech for Better solution replacing the foreach loop or refining it Greg Beech 2009-11-30T11:22:31Z 2009-11-30T15:03:27Z <p>First look at the logic of what you're writing. You're checking whether the count of a collection is greater than zero inside a loop that iterates over it; this will always return true as the loop will not run if the collection contains anything. So what you're actually writing is this, when code that either always returns true or which cannot execute is removed:</p> <pre><code>foreach (BrowserEntity _browseEntity in this.entityModel.Entities) { if (_browseEntity.State != null) { this.grid.DataSource = this.entityModel.Entities; this.grid.Columns[6].Visible = true; break; } } </code></pre> <p>So you're assigning the data source a number of times, and never setting <code>Visible</code> to false, whereas I think what you're actually trying to write is something like this:</p> <pre><code>// bind the grid but hide column 6 this.grid.DataSource = this.entityModel.Entities; this.grid.Columns[6].Visible = false; // if there is any state then show column 6 foreach (BrowserEntity _browseEntity in this.entityModel.Entities) { if (_browseEntity.State != null) { this.grid.Columns[6].Visible = true; break; } } </code></pre> <p>Alternatively, using Linq, this could be written as the following, which achieves the same thing but is much clearer:</p> <pre><code>this.grid.DataSource = this.entityModel.Entities; this.grid.Columns[6].Visible = this.entityModel.Entities.Any(e =&gt; e.State != null); </code></pre> http://stackoverflow.com/questions/1757462/searching-and-ranking-short-phrases-e-g-movie-titles 3 Searching and ranking short phrases (e.g. movie titles) Greg Beech 2009-11-18T16:57:49Z 2009-11-30T08:22:02Z <p>I'm trying to improve our search capabilities for short phrases (in our case movie titles) and am currently looking at SQL Server 2008 Full Text Search, which provides some of the functionality we would like:</p> <ul> <li>Word stemming (e.g. "saw" also means "see", "seen", etc.)</li> <li>Synonyms (e.g. "6" is synonymous with "VI")</li> </ul> <p>However the ranking algorithm seems to be proving problematic, using <code>FREETEXTTABLE</code> with the search term and extracting the <code>RANK</code> field. For example when the user enters "saw" then the results we get with out catalogue are:</p> <pre><code>RANK | Title --------------------------------------------------------------------- 180 | The Exorcist: The version you've never seen 180 | Saw IV 180 | Saw V 180 | Anybody Here Seen Jeannie? 180 | Seeing Red </code></pre> <p>All of these have the same rank, even though it would be clear to a person that the second and third entries are a better match than the other stemmed terms.</p> <p>Similarly entering "moon" gives the following results:</p> <pre><code>RANK | Title --------------------------------------------------------------------- 144 | Pink Floyd - The Dark Side of the Moon 144 | Fly Me To The Moon 3D 144 | Twilight: New Moon 144 | Moon </code></pre> <p>And here although there are no stemming matches, it would be clear to a person that the best match for "moon" is "Moon" rather than longer titles which contain it only as part of the title, yet FTS ranks them equally.</p> <p>I'm guessing that it's probably something to do with the way SQL Server ranks results, which treats stemmed words and synonyms with equal weight to the original term, and takes into account word density for ranking which would be good with long passages of text, but doesn't really apply with short phrases like these. So I'm starting to thing that FTS isn't suitable for this job, unfortunately.</p> <p>I don't really want to re-invent the wheel, so are there any existing search solutions that would work for titles and give good rankings plus the stemming/thesaurus functionality? It would also be nice if it had a spell checker to implement "did you mean..." functionality like Google, so "saww" would be corrected to "saw" and "mon" to "moon", etc.</p> http://stackoverflow.com/questions/1807481/how-to-find-if-a-value-is-in-an-array-in-visual-c/1807491#1807491 2 Answer by Greg Beech for How to find if a value is in an array in Visual C# Greg Beech 2009-11-27T08:46:56Z 2009-11-27T08:46:56Z <p><a href="http://msdn.microsoft.com/en-us/library/system.linq.enumerable.contains.aspx" rel="nofollow">Enumerable.Contains</a> if you're using C# 3.0 or later.</p> <p>e.g. </p> <pre><code>var contained = myArray.Contains(4); </code></pre> http://stackoverflow.com/questions/1038466/logging-raw-http-request-response-in-asp-net-mvc-iis7 6 Logging raw HTTP request/response in ASP.NET MVC & IIS7 Greg Beech 2009-06-24T13:44:31Z 2009-11-26T13:48:54Z <p>I'm writing a web service (using ASP.NET MVC) and for support purposes we'd like to be able to log the requests and response in as close as possible to the raw, on-the-wire format (i.e including HTTP method, path, all headers, and the body) into a database. </p> <p>What I'm not sure of is how to get hold of this data in the least 'mangled' way. I can re-constitute what I believe the request looks like by inspecting all the properties of the <code>HttpRequest</code> object and building a string from them (and similarly for the response) but I'd really like to get hold of the actual request/response data that's sent on the wire.</p> <p>I'm happy to use any interception mechanism such as filters, modules, etc. and the solution can be specific to IIS7. However, I'd prefer to keep it in managed code only.</p> <p>Any recommendations?</p> <p><strong>Edit:</strong> I note that <code>HttpRequest</code> has a <a href="http://msdn.microsoft.com/en-us/library/system.web.httprequest.saveas.aspx" rel="nofollow"><code>SaveAs</code></a> method which can save the request to disk but this reconstructs the request from the internal state using a load of internal helper methods that cannot be accessed publicly (quite why this doesn't allow saving to a user-provided stream I don't know). So it's starting to look like I'll have to do my best to reconstruct the request/response text from the objects... groan.</p> <p><strong>Edit 2:</strong> Please note that I said the <em>whole</em> request including method, path, headers etc. The current responses only look at the body streams which does not include this information.</p> <p><strong>Edit 3:</strong> Does nobody read questions around here? Five answers so far and yet not one even hints at a way to get the whole raw on-the-wire request. Yes, I know I can capture the output streams and the headers and the URL and all that stuff from the request object. I already said that in the question, see:</p> <blockquote> <p>I can re-constitute what I believe the request looks like by inspecting all the properties of the HttpRequest object and building a string from them (and similarly for the response) but I'd really like to get hold of the actual request/response data that's sent on the wire.</p> </blockquote> <p>If you know the <em>complete</em> raw data (including headers, url, http method, etc.) simply cannot be retrieved then that would be useful to know. Similarly if you know how to get it all in the raw format (yes, I still mean including headers, url, http method, etc.) without having to reconstruct it, which is what I asked, then that would be very useful. But telling me that I can reconstruct it from the <code>HttpRequest</code>/<code>HttpResponse</code> objects is not useful. I know that. I already said it.</p> <p><hr /></p> <p><em>Please note: Before anybody starts saying this is a bad idea, or will limit scalability, etc., we'll also be implementing throttling, sequential delivery, and anti-replay mechanisms in a distributed environment, so database logging is required anyway. I'm not looking for a discussion of whether this is a good idea, I'm looking for how it can be done.</em></p> http://stackoverflow.com/questions/1038466/logging-raw-http-request-response-in-asp-net-mvc-iis7/1803766#1803766 0 Answer by Greg Beech for Logging raw HTTP request/response in ASP.NET MVC & IIS7 Greg Beech 2009-11-26T13:48:54Z 2009-11-26T13:48:54Z <p>OK, so it looks like the answer is "no you can't get the raw data, you have to reconstruct the request/response from the properties of the parsed objects". Oh well, I've done the reconstruction thing.</p> http://stackoverflow.com/questions/1802475/what-is-the-easiest-way-to-do-inter-process-communication-in-c/1802572#1802572 5 Answer by Greg Beech for What is the easiest way to do inter process communication in C#? Greg Beech 2009-11-26T09:27:24Z 2009-11-26T09:27:24Z <p>The easiest and most reliable way is almost certainly <a href="http://msdn.microsoft.com/en-us/library/system.runtime.remoting.channels.ipc.ipcchannel.aspx" rel="nofollow">IpcChannel</a> (a.k.a. Inter Process Communication Channel); that's what it's there for. You can get it up and running with a couple of lines of code and configuration.</p> http://stackoverflow.com/questions/1793575/sql-server-2008-performance-question/1793739#1793739 1 Answer by Greg Beech for SQL Server 2008 Performance Question Greg Beech 2009-11-24T23:39:31Z 2009-11-24T23:39:31Z <p>The best place to start diagnosing your problem is to determine whether you have a problem at all. Set a specific, measurable, business-oriented performance goal, and define exactly how long you think is reasonable for returning the data.</p> <p>If your answer is 8-12 minutes, then you don't have a problem, which is always a good thing.</p> <p>If your answer is less than that, then you now know that you have a problem, and how big the problem is (if you said 5 minutes then it's maybe not such a big problem, if you said 10 seconds then it's a much bigger issue). In this case, you'll probably want to start looking at the database performance counters to see whether it's got CPU/IO/memory/network bottlenecks, and looking at the execution plan for the query to see whether it could be improved by indexes (though this is unlikely for a SELECT *).</p> http://stackoverflow.com/questions/1786933/data-types-and-structs-in-c/1786938#1786938 5 Answer by Greg Beech for data types and structs in C# Greg Beech 2009-11-24T00:00:27Z 2009-11-24T00:00:27Z <p>It doesn't make any difference to the compiled code; <code>int</code> is synonymous with <code>System.Int32</code> and <code>string</code> is synonymous with <code>System.String</code>.</p> <p>However, using <code>int</code> and <code>string</code> etc. is more idiomatic.</p> http://stackoverflow.com/questions/1785787/net-request-getresponse-is-giving-me-a-protocolviolationexception-when-header/1785929#1785929 1 Answer by Greg Beech for .net request.GetResponse() is giving me a ProtocolViolationException when header last-modified contains string "Fri, 20 Nov 2009 15:53:16 E. Australia Standard Time" ? Greg Beech 2009-11-23T21:01:22Z 2009-11-23T21:01:22Z <p>Q1)</p> <p>If you refer to the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html" rel="nofollow">RFC 2616 Section 14</a>, you'll see that the definition of the Last-Modified header is:</p> <blockquote> <p>Last-Modified = "Last-Modified" ":" HTTP-date</p> </blockquote> <p>HTTP-date is specified <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html" rel="nofollow">in the same RFC, section 3</a>.</p> <blockquote> <pre><code> Sun, 06 Nov 1994 08:49:37 GMT ; RFC 822, updated by RFC 1123 Sunday, 06-Nov-94 08:49:37 GMT ; RFC 850, obsoleted by RFC 1036 Sun Nov 6 08:49:37 1994 ; ANSI C's asctime() format </code></pre> <p>The first format is preferred as an Internet standard and represents a fixed-length subset of that defined by RFC 1123 [8] (an update to RFC 822 [9]). The second format is in common use, but is based on the obsolete RFC 850 [12] date format and lacks a four-digit year. HTTP/1.1 clients and servers that parse the date value MUST accept all three formats (for compatibility with HTTP/1.0), though they MUST only generate the RFC 1123 format for representing HTTP-date values in header fields</p> </blockquote> <p>Since the date in your header matches the first of these, with only the time zone looking different, you can check <a href="http://tools.ietf.org/html/rfc1123#page-55" rel="nofollow">RFC 1123</a> to see if it's legal. Regarding time zones, this states.</p> <blockquote> <p>There is a strong trend towards the use of numeric timezone indicators, and implementations SHOULD use numeric timezones instead of timezone names. However, all implementations MUST accept either notation. If timezone names are used, they MUST be exactly as defined in RFC-822.</p> </blockquote> <p>From <a href="http://tools.ietf.org/html/rfc822#section-5" rel="nofollow">RFC 822 Section 5</a> we can see the definition of the zone: </p> <pre><code> zone = "UT" / "GMT" ; Universal Time ; North American : UT / "EST" / "EDT" ; Eastern: - 5/ - 4 / "CST" / "CDT" ; Central: - 6/ - 5 / "MST" / "MDT" ; Mountain: - 7/ - 6 / "PST" / "PDT" ; Pacific: - 8/ - 7 / 1ALPHA ; Military: Z = UT; ; A:-1; (J not used) ; M:-12; N:+1; Y:+12 / ( ("+" / "-") 4DIGIT ) ; Local differential ; hours+min. (HHMM) </code></pre> <p>As the time zone in the header is not listed here, we can therefore conclude that it is invalid, and that the server is in fact violating the protocol, so the exception appears reasonable.</p> <p>Q2)</p> <p>I'm afraid I don't know how you could handle it other than putting a proxy in the way that fixes up the header to be valid, or ask the people who write/maintain the Mongoose server to fix it (or fix it yourself and submit a patch, as it's an open source project).</p> <p>Q3)</p> <p>I've rarely (if ever) seen a web server that .NET has had problems calling, so I don't believe this type of issue is common on the internet in general.</p> http://stackoverflow.com/questions/1771795/select-vs-specifying-column-names/1771856#1771856 7 Answer by Greg Beech for Select * vs Specifying Column Names Greg Beech 2009-11-20T17:02:25Z 2009-11-20T17:02:25Z <p>It's nothing to do with performance, as the two options are <em>semantically completely different</em>.</p> <p>If you write <code>SELECT *</code> then you are saying "give me whatever columns are in the result set; for my purposes I do not care what they are or what order they are in".</p> <p>If you write <code>SELECT COL1, COL2, ...</code> then you are saying "give me the specific columns I have asked for, in the order I have asked for them in".</p> <p>Use whichever one matches your intention, not whichever one is currently faster on your current hardware and software version, with your current data set, as performance can change based on a lot of factors. And the difference is probably negligible enough that it won't matter anyway.</p> http://stackoverflow.com/questions/1771216/is-there-really-a-performance-hit-when-catching-exceptions/1771459#1771459 0 Answer by Greg Beech for Is there really a performance hit when catching exceptions Greg Beech 2009-11-20T16:02:06Z 2009-11-20T16:02:06Z <p>If you want to know how exceptions work in Windows SEH, then I believe <a href="http://www.microsoft.com/msj/0197/exception/exception.aspx" rel="nofollow">this article by Matt Pietrik</a> is considered the definitive reference. It isn't light reading. If you want to extend this to how exceptions work in .NET, then you need to read <a href="http://blogs.msdn.com/cbrumme/archive/2003/10/01/51524.aspx" rel="nofollow">this article by Chris Brumme</a>, which is most definitely the definitive reference. It isn't light reading either.</p> <p>The summary of Chris Brumme's article gives a detailed explanation as to why exception are significantly slower than using return codes. It's too long to reproduce here, and you've got a lot of reading to do before you can fully understand why.</p> http://stackoverflow.com/questions/1771165/cookie-not-deleting/1771186#1771186 3 Answer by Greg Beech for cookie not deleting Greg Beech 2009-11-20T15:24:36Z 2009-11-20T15:24:36Z <p>Clearing the cookies of the response doesn't instruct the browser to clear the cookie, it merely does not send the cookie back to the browser. To instruct the browser to clear the cookie you need to tell it the cookie has expired, e.g. </p> <pre><code>public static void Clear(string key) { var httpContext = new HttpContextWrapper(HttpContext.Current); _response = httpContext.Response; HttpCookie cookie = new HttpCookie(key) { Expires = DateTime.Now.AddDays(-1) // or any other time in the past }; _response.Cookies.Set(cookie); } </code></pre> http://stackoverflow.com/questions/1771055/is-this-good-xml/1771073#1771073 3 Answer by Greg Beech for Is this good XML? Greg Beech 2009-11-20T15:10:42Z 2009-11-20T15:10:42Z <p>Why do you think XML should be more like that? The first one is attribute-centric; what you're proposing is element-centric. Although nowadays element-centric has become more commonly used, there's certainly nothing wrong with the attribute-centric approach, and it can make some things clearer.</p> <p>As long as the XML has got a namespace, then there's nothing wrong with it.</p> http://stackoverflow.com/questions/1770643/is-there-a-difference-between-serializable-and-serializable-in-c/1770680#1770680 8 Answer by Greg Beech for is there a difference between [Serializable] and [Serializable()] in c#? Greg Beech 2009-11-20T14:12:21Z 2009-11-20T14:12:21Z <p>No, there is no difference. <code>[Serializable]</code> is just syntactic sugar for <code>[Serializable()]</code> because the C# syntax lets you miss out the constructor brackets if there is a default attribute constructor.</p> <p>Note that both are really syntactic sugar for <code>[SerializableAttribute()]</code> as attribute declarations also let you miss the Attribute suffix.</p> http://stackoverflow.com/questions/1769495/what-do-you-wish-fiddler-could-do-that-it-cant-or-that-you-cant-figure-out-h/1769552#1769552 1 Answer by Greg Beech for What do you wish Fiddler could do that it can't... or that you can't figure out how to do? Greg Beech 2009-11-20T10:18:12Z 2009-11-20T10:18:12Z <p>I'd like it to be able to format and pretty-print XML and JSON request/response bodies, e.g. so a raw:</p> <pre><code>&lt;SomeElement&gt;&lt;Nested&gt;&lt;MoreNested&gt;X&lt;/SomeElement&gt;&lt;/Nested&gt;&lt;/MoreNested&gt; </code></pre> <p>Could be displayed as:</p> <pre><code>&lt;SomeElement&gt; &lt;Nested&gt; &lt;MoreNested&gt;X&lt;/SomeElement&gt; &lt;/Nested&gt; &lt;/MoreNested&gt; </code></pre> <p>Would be really useful when looking at our API calls.</p> <p>I know it can do the XML tree view, but I'm more comfortable looking at raw markup so I can see exactly what's going on. I'd just like to look at the raw markup in a nicely formatted and coloured way!</p> http://stackoverflow.com/questions/1769358/use-of-using-keyword-in-c/1769387#1769387 2 Answer by Greg Beech for use of "using" keyword in c# Greg Beech 2009-11-20T09:38:22Z 2009-11-20T09:38:22Z <p>There are three uses:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/sf0df423.aspx" rel="nofollow">As a directive (two uses)</a> to import namespaces and alias types</li> <li><a href="http://msdn.microsoft.com/en-us/library/yh598w02.aspx" rel="nofollow">As a statement</a> to dispose of IDisposable objects at the end of the scope</li> </ul> <p>I don't believe I can explain more clearly than the MSDN articles in general terms. If you have trouble understanding them, you might be better to post a more specific question regarding the details you don't understand.</p> http://stackoverflow.com/questions/1765485/array-isreadonly-inconsistent-depending-on-interface-implementation 2 Array.IsReadOnly inconsistent depending on interface implementation Greg Beech 2009-11-19T18:24:43Z 2009-11-20T04:00:53Z <p>A typed array implements both the <code>System.Collections.IList</code> and <code>System.Collections.Generic.ICollection&lt;T&gt;</code> interfaces, which both have their own <code>IsReadOnly</code> properties. But what on earth is going on here?</p> <pre><code>var array = new int[10]; Console.WriteLine(array.IsReadOnly); // prints "False" var list = (System.Collections.IList)array; Console.WriteLine(list.IsReadOnly); // prints "False" var collection = (System.Collections.Generic.ICollection&lt;int&gt;)array; Console.WriteLine(collection.IsReadOnly); // prints "True" </code></pre> <p>The <code>IList</code> view of the array behaves as I'd expect, returning the same as the array itself, however the <code>ICollection&lt;T&gt;</code> view of the array returns true.</p> <p>Is there any rational explanation for this behaviour, or is it a compiler/CLR bug? (I'd be really surprised if it's the latter as you'd imagine this would have been found before now, but it's so counter-intuitive I can't think what the explanation could be...).</p> <p>I'm using C#3.0/.NET 3.5 SP1.</p> http://stackoverflow.com/questions/1756302/sql-server-full-text-search-error-full-text-crawl-manager-has-not-been-initializ 0 SQL Server full text search error: Full-text crawl manager has not been initialized. Greg Beech 2009-11-18T14:18:40Z 2009-11-18T14:18:40Z <p>I'm just trying out full text search in SQL Server 2008 and am failing at the first hurdle. I've created an index, but when I try to populate it using:</p> <pre><code>ALTER FULLTEXT INDEX ON TableName SET CHANGE_TRACKING AUTO; </code></pre> <p>I get the following error:</p> <blockquote> <p>Msg 7644, Level 17, State 1, Line 1</p> <p>Full-text crawl manager has not been initialized. Any crawl started before the crawl manager was fully initialized will need to be restarted. Please restart SQL Server and retry the command. You should also check the error log to fix any failures that might have caused the crawl manager to fail.</p> </blockquote> <p>Obviously I've tried restarting SQL Server, but still get the same message.</p> <p>I found a <a href="http://support.microsoft.com/kb/961662" rel="nofollow">KB article for SQL Server 2005</a> about an invalid <code>FTSGroup</code> registry key but I can't find any indication that this also applies to SQL Server 2008, my feeling is that it probably doesn't.</p> <p>Anybody know what's wrong and how to fix this issue?</p> http://stackoverflow.com/questions/1752350/generally-a-good-idea-to-always-hash-unique-identifiers-in-url/1752619#1752619 3 Answer by Greg Beech for Generally a Good Idea to Always Hash Unique Identifiers in URL? Greg Beech 2009-11-17T23:30:22Z 2009-11-17T23:30:22Z <p>Generally with web-sites you're <em>trying</em> to make them easy to crawl and get access to all the information so that you can get good search rankings and drive traffic to your site. Good web developers design their HTML with search engines in mind, and often also provide things like RSS feeds and site maps to make it easier to crawl content. So if you're trying to make crawling more difficult by not using sequential identifiers then (a) you aren't making it more difficult, because crawlers work by following links, not by guessing URLs, and (b) you're trying to make something more difficult that you also spend time trying to make easier, which makes no sense.</p> <p>If you need security then use <em>actual security</em>. Use checks of the principal to authorize or deny access to resources. Obfuscating URLs is no security at all.</p> <p>So I don't see any problem with using numeric identifiers, or any value in trying to obfuscate them.</p> http://stackoverflow.com/questions/1747654/cannot-modify-the-return-value-error-c/1747702#1747702 7 Answer by Greg Beech for Cannot modify the return value error c# Greg Beech 2009-11-17T09:49:02Z 2009-11-17T09:49:02Z <p>This is because <code>Point</code> is a value type (<code>struct</code>).</p> <p>Because of this, when you access the <code>Origin</code> property you're accessing a <em>copy</em> of the value held by the class, not the value itself as you would with a reference type (<code>class</code>), so if you set the <code>X</code> property on it then you're setting the property on the copy and then discarding it, leaving the original value unchanged. This probably isn't what you intended, which is why the compiler is warning you about it.</p> <p>If you want to change just the <code>X</code> value, you need to do something like this:</p> <pre><code>Origin = new Point(10, Origin.Y); </code></pre> http://stackoverflow.com/questions/1742665/array-more-efficient-than-dictionary/1742896#1742896 2 Answer by Greg Beech for Array more Efficient than Dictionary Greg Beech 2009-11-16T15:27:16Z 2009-11-16T15:27:16Z <p>The basic cycle of performance testing is as follows:</p> <ol> <li>Define performance requirements</li> <li>Measure actual performance</li> <li>If actual performance is >= requirements, stop</li> <li>Profile application and find bottleneck(s)</li> <li>Try to fix bottlenecks</li> <li>Go to 2</li> </ol> <p>By "define performance requirements" I mean you need concrete things that can be quantitatively measured, for example:</p> <blockquote> <p>We require that the application can handle at least 100 concurrent users, with think times centred around the mean using normal distribution, each having a time to last byte (TTLB) of no more than 2 seconds, carrying out the following set of key business scenarios: 50% browsing products, 10% purchasing products, 20% doing some other thing, 20% doing yet another thing.</p> </blockquote> <p>If you haven't done (1) then you cannot proceed to (2) so hang on until you've done that. If you've done (1) then you can follow the remainder of the steps, and the answer as to whether you need to optimise this code will drop out of that.</p> http://stackoverflow.com/questions/1741472/any-point-in-validating-smtp-addresses-with-a-regex/1741520#1741520 2 Answer by Greg Beech for Any point in validating SMTP addresses with a regex? Greg Beech 2009-11-16T11:10:05Z 2009-11-16T11:10:05Z <p>If you're sending mail using the <code>System.Net.Mail</code> then it's a good idea to use the <code>MailAddress</code> class to do the validation as then you know you can send the mail using those classes (it doesn't permit all technically valid email addresses, but there's no point in permitting addresses you can't send to).</p> <p>It's a shame there's no <code>TryParse</code> method as an invalid address isn't really an exceptional case, and it's not nice having to use exceptions for flow control in this way, but it's essentially the same way we do it.</p> <p>I did add a basic sanity check beforehand to mitigate the number of exceptions thrown on blatantly invalid addresses. Nothing fancy, just a check that there is an <code>@</code> and a <code>.</code> in reasonable positions. I can't remember off the top of my head but it was so simple I think I just used <code>String.IndexOf</code> rather than a regex. So yeah, I reckon something like that's worth doing, but don't spend too much time on it.</p> http://stackoverflow.com/questions/1866533/returning-items-randomly-from-a-collection/1866558#1866558 Comment by Greg Beech on Returning items randomly from a collection Greg Beech 2009-12-08T13:10:31Z 2009-12-08T13:10:31Z PS: I did check that the algorithm was unbiased... see: <a href="http://gregbeech.com/blog/determining-the-bias-of-a-shuffle-algorithm" rel="nofollow">gregbeech.com/blog/&hellip;</a> http://stackoverflow.com/questions/1866533/returning-items-randomly-from-a-collection/1866558#1866558 Comment by Greg Beech on Returning items randomly from a collection Greg Beech 2009-12-08T13:07:01Z 2009-12-08T13:07:01Z @Ryan - The Durstenfeld implementation can be written to reverse the list in either direction. While the reverse implementation is more commonly documented, the forward implementation is better here as it means it only has to shuffle the first n elements rather than all of them, as it doesn't need to shuffle elements that won't be returned. http://stackoverflow.com/questions/1866533/returning-items-randomly-from-a-collection/1866558#1866558 Comment by Greg Beech on Returning items randomly from a collection Greg Beech 2009-12-08T12:58:38Z 2009-12-08T12:58:38Z @Vilk - Yes, you're right, it did modify the original list. I've changed it so it doesn't now. It does unfortunately have to copy the collection to an array but that's pretty difficult to avoid (though I'm sure there is a way...) http://stackoverflow.com/questions/1866533/returning-items-randomly-from-a-collection/1866570#1866570 Comment by Greg Beech on Returning items randomly from a collection Greg Beech 2009-12-08T12:13:16Z 2009-12-08T12:13:16Z That will return duplicates though, which probably isn't what he's after. http://stackoverflow.com/questions/1865762/is-there-a-performance-difference-between-select-from-tablename-and-select-colu Comment by Greg Beech on Is there a performance difference between select * from tablename and select column1, column2 from tablename? Greg Beech 2009-12-08T09:29:29Z 2009-12-08T09:29:29Z And another: <a href="http://stackoverflow.com/questions/65512/which-is-faster-best-select-or-select-column1-colum2-column3-etc" rel="nofollow" title="which is faster best select or select column1 colum2 column3 etc">stackoverflow.com/questions/65512/&hellip;</a> http://stackoverflow.com/questions/1865762/is-there-a-performance-difference-between-select-from-tablename-and-select-colu Comment by Greg Beech on Is there a performance difference between select * from tablename and select column1, column2 from tablename? Greg Beech 2009-12-08T09:28:44Z 2009-12-08T09:28:44Z Duplicate: <a href="http://stackoverflow.com/questions/1771795/select-vs-specifying-column-names/1771856" rel="nofollow" title="select vs specifying column names">stackoverflow.com/questions/1771795/&hellip;</a> http://stackoverflow.com/questions/1843270/events-and-memory-leaks-in-net/1843365#1843365 Comment by Greg Beech on Events and Memory Leaks in .NET Greg Beech 2009-12-03T22:22:06Z 2009-12-03T22:22:06Z What? How does that have any relevance whatsoever? http://stackoverflow.com/questions/1841793/problems-connecting-to-my-database Comment by Greg Beech on Problems connecting to my database Greg Beech 2009-12-03T18:15:34Z 2009-12-03T18:15:34Z Define &quot;not working&quot;. For example, what error message do you get? http://stackoverflow.com/questions/1838759/html-creating-block Comment by Greg Beech on html - creating block Greg Beech 2009-12-03T09:31:41Z 2009-12-03T09:31:41Z Faster than what? http://stackoverflow.com/questions/1835155/a-way-to-generate-a-signature-or-a-hash-of-an-image-in-asp-net-for-duplicate-dete/1835223#1835223 Comment by Greg Beech on A way to generate a signature or a hash of an image in ASP.NET for duplicate detection? Greg Beech 2009-12-02T19:43:58Z 2009-12-02T19:43:58Z +1 for being the only person to point out that as a hash loses data then it can only be used as a starting point, and cannot be used to determine whether two things are actually equal. http://stackoverflow.com/questions/1823149/dynamic-method-dispatch-based-on-value-of-variable/1823171#1823171 Comment by Greg Beech on Dynamic method dispatch based on value of variable Greg Beech 2009-11-30T23:39:55Z 2009-11-30T23:39:55Z +1 exactly what I was going to say, but I type slower :-) http://stackoverflow.com/questions/1822270/setting-httpcontext-current-request-url-host/1822542#1822542 Comment by Greg Beech on Setting HttpContext.Current.Request.Url.Host Greg Beech 2009-11-30T23:33:35Z 2009-11-30T23:33:35Z @coffeeaddict - Why would you do it using string replacements when I've pointed out that's a bad idea and given you a one-liner that does it using a proper API? http://stackoverflow.com/questions/1812848/speedup-a-php-web-site Comment by Greg Beech on Speedup a php web site Greg Beech 2009-11-28T15:56:37Z 2009-11-28T15:56:37Z How long is a piece of string and how much longer can it be? http://stackoverflow.com/questions/170284/examples-of-programmers-being-stupid/446120#446120 Comment by Greg Beech on Examples of programmers being stupid Greg Beech 2009-11-28T12:56:07Z 2009-11-28T12:56:07Z @Kyralessa - Yes I know. I said that in the answer. That was the whole point of the answer. You're taking that quote out of context; it was replying to tharkun with the meaning that the block does not have any other functionality as written. http://stackoverflow.com/questions/1810028/how-to-print-1-to-100-without-any-looping-using-c/1810097#1810097 Comment by Greg Beech on How to print 1 to 100 without any looping using C# Greg Beech 2009-11-27T18:30:52Z 2009-11-27T18:30:52Z No way apart from, say, recursion. Or using gotos. Or using multiple print statements. Like in all the other answers before yours...?