User Harry - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:19:51Z http://stackoverflow.com/feeds/user/30576 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1893975/dotnetnuke-vs-sitefinity/1898042#1898042 1 Answer by Harry for DotNetNuke vs Sitefinity Harry 2009-12-13T22:29:39Z 2009-12-13T22:29:39Z <p>I have used sitefinity (community ed) on a couple of sites. It isn't brilliant (webforms instead of MVC) but for clients who are not programmers it is quite a nice backend management system. Drag and drop template driving page creation is quite good.</p> <p>I havent touched DNN for a couple of years, it was quite the resource hog last time i looked at it.</p> http://stackoverflow.com/questions/307291/how-does-the-google-did-you-mean-algorithm-work 49 How does the Google "Did you mean?" Algorithm work? Harry 2008-11-20T23:34:51Z 2009-12-12T22:35:40Z <p>I've been developing an internal website for a portfolio management tool. There is a lot of text data, company names etc. I've been really impressed with some search engines ability to very quickly respond to queries with "Did you mean: xxxx".</p> <p>I need to be able to intelligently take a user query and respond with not only raw search results but also with a "Did you mean?" response when there is a highly likely alternative answer etc</p> <p>[I'm developing in <a href="http://en.wikipedia.org/wiki/ASP.NET" rel="nofollow">ASP.NET</a> (VB - don't hold it against me! )]</p> <p>UPDATE: OK, how can I mimic this without the millions of 'unpaid users'?</p> <ul> <li>Generate typos for each 'known' or 'correct' term and perform lookups?</li> <li>Some other more elegant method?</li> </ul> http://stackoverflow.com/questions/1872142/sql-database-dilemma-optimize-for-querying-or-writing 0 SQL Database dilemma : Optimize for Querying or Writing? Harry 2009-12-09T07:15:43Z 2009-12-09T07:31:33Z <p>I'm working on a personal project (Search engine) and have a bit of a dilemma. At the moment it is optimized for writing data to the search index and significantly slow for search queries.</p> <p>The DTA (Database Engine Tuning Adviser) recommends adding a couple of Indexed views inorder to speed up search queries. But this is to the detriment of writing new data to the DB.</p> <p>It seems I can't have one without the other!</p> <p>This is obviously not a new problem. What is a good strategy for this issue?</p> http://stackoverflow.com/questions/1175119/is-microsoft-ccr-gaining-any-traction/1858244#1858244 0 Answer by Harry for Is Microsoft CCR gaining any traction? Harry 2009-12-07T06:36:38Z 2009-12-07T06:36:38Z <p>I have been enjoying using the CCR in two major projects so far. The first one is terrible (didn't really get the Causality pattern idea) And the second one is coming along brilliantly (Web crawler)</p> <p>Both projects are utilize the message based paradigm to avoid waiting for slow running IO operations. The CCR is quite good to work with once you solve the lack of a compatable ORM mapper. (I'm considering releasing some of the plumbing code that i've written to save other people the heart ache)</p> <p>Having said that, RX looks quite interesting. I'm curious how it compares in terms of Error handling, speed and reliability.</p> http://stackoverflow.com/questions/525154/concurrency-and-coordination-runtime-ccr-learning-resources 9 Concurrency and Coordination Runtime (CCR) Learning Resources Harry 2009-02-08T04:26:05Z 2009-12-07T06:26:08Z <p>I have recently been learning the in's and out's of the <a href="http://msdn.microsoft.com/en-us/library/bb905450.aspx" rel="nofollow">Concurrency and Coordination Runtime (CCR).</a> Finding good learning resources for this relatively new technology has been quite difficult.</p> <p>(A quick google search brings up "Creedence Clearwater Revival" as the top result!)</p> <p>Some of the resources I have found:</p> <ul> <li><a href="http://www.robochamps.com/rc/data/learningarea/141076-cover-df.pdf" rel="nofollow">Free e-book chapter</a> from WROX on the Robotics Developer Studio</li> <li><a href="http://www.infoq.com/articles/Using-CCR" rel="nofollow">Good Article/post</a> on InfoQ</li> <li><a href="http://blogs.msdn.com/pollrobots/archive/2008/07/22/ccr-utilities-part-1.aspx" rel="nofollow">Robotic's Member blog</a></li> <li>Very active <a href="http://social.msdn.microsoft.com/forums/en-US/roboticsccr/threads/" rel="nofollow">MSDN CCR Forum</a> - Got plenty of help from here!</li> <li><a href="http://msdn.microsoft.com/en-au/magazine/cc163556.aspx" rel="nofollow">Great MSDN Magazine</a> by Jeffrey Richter</li> <li>Official <a href="http://msdn.microsoft.com/en-us/library/bb905450.aspx" rel="nofollow">CCR User Guide</a> - Didn't find this very helpful</li> <li>Great <a href="http://iodyne.blogspot.com/" rel="nofollow">blogging series</a> on CCR</li> <li>iodyner <a href="http://iodyne.blogspot.com/" rel="nofollow">CCR Related Blog</a> - Update: <a href="http://iodyner.spaces.live.com/" rel="nofollow">Moved to here</a></li> <li>Eight or so <a href="http://channel9.msdn.com/tags/CCR/" rel="nofollow">Videos</a> on Channel9.msdn.com</li> <li><a href="http://channel9.msdn.com/wiki/ccrpatterns/" rel="nofollow">CCR Patterns page</a> on MS Robotics Studio - I haven't read this yet</li> <li>4 x <a href="http://stackoverflow.com/questions/tagged/ccr">CCR Questions</a> on Stackoverflow - Most of the questions have been Mine! LOL</li> <li><a href="http://blogs.msdn.com/msroboticsstudio/archive/2009/04/22/rds-2008-standard-edition-and-ccr-and-dss-toolkit-2008-available-on-msdn.aspx" rel="nofollow">CCR and DSS toolkit</a> has now been released to MSDN Members</li> </ul> <p>Do you have any good learning resources for the CCR?</p> <p>I really hope that Microsoft will publish more material, so far it has been too Robotics specific. I believe that MS needs to acknowledge that most people are using the CCR in issolation from the DSS and Robotics Studio.</p> http://stackoverflow.com/questions/498429/what-is-your-favourite-asychronous-pattern 3 What is your favourite asychronous pattern? Harry 2009-01-31T07:08:19Z 2009-12-07T06:25:32Z <p>I'm currently trying to get my head around the CCR as a Asynchronous programming model. In the past i've used the standard begin/end methods. I primary develop in VB.net and have been looking with longing at the Yield/Enumerator tricks.</p> <p>What is your favourite asychronous pattern?</p> http://stackoverflow.com/questions/680448/asp-net-mvc-how-to-add-a-code-behind-page-to-a-view 3 ASP.net MVC - How to add a Code-Behind page to a View Harry 2009-03-25T06:37:55Z 2009-12-01T23:07:19Z <p>I notice with the latest version of ASP.net MVC that view's no longer default to having code-behind classes. Which of course was a much request (read demanded) feature.</p> <p>Only I currently need one behind a partial view i'm creating...</p> <p><em>How do I go about adding a page behind now?</em></p> http://stackoverflow.com/questions/1824220/c-system-net-webexception-retrieving-custom-404-message 1 C# System.Net.WebException Retrieving custom 404 message Harry 2009-12-01T05:44:18Z 2009-12-01T07:27:15Z <p>I'm working on a client for a webservice that returns standard Status Codes (404, 200 etc) as well a custom json message.</p> <p>I haven't been able to find a property of the WebException that contains the custom message.</p> <p>Any ideas on how to get a hold of the message?</p> http://stackoverflow.com/questions/1824220/c-system-net-webexception-retrieving-custom-404-message/1824549#1824549 0 Answer by Harry for C# System.Net.WebException Retrieving custom 404 message Harry 2009-12-01T07:27:15Z 2009-12-01T07:27:15Z <p>Simple solution:</p> <p>The WebException has the actual WebResponse available in the Response property. From here it is simply a matter of handling the response as per normal:</p> <pre><code> private static JsonParseException ProcessException(WebException webEx) { var stream = webEx.Response.GetResponseStream(); using (var memory = new MemoryStream()) { var buffer = new byte[4096]; var read = 0; do { read = stream.Read(buffer, 0, buffer.Length); memory.Write(buffer, 0, read); } while (read &gt; 0); memory.Position = 0; int pageSize = (int)memory.Length; byte[] bytes = new byte[pageSize]; memory.Read(bytes, 0, pageSize); memory.Seek(0, SeekOrigin.Begin); string data = new StreamReader(memory).ReadToEnd(); memory.Close(); DefaultMeta meta = JsonConvert.DeserializeObject&lt;DefaultMeta&gt;(data); return new JsonParseException(meta.Meta, meta.Meta.Error, webEx); } } </code></pre> <p>I'm using the NewtonSoft Json library to deserialise the Json response</p> http://stackoverflow.com/questions/905005/python-and-intellisense 6 Python and Intellisense Harry 2009-05-25T01:02:23Z 2009-11-26T11:03:32Z <p>Ok newbee question: <strong>Is there an equivalent to 'intellisense' for Python?</strong></p> <p>Perhaps i shouldn't admit it but I find having intellisense really speeds up the 'discovery phase' of learning a new language. For instance switching from VB.net to C# was a breeze due to snippets and intellisense helping me along.</p> http://stackoverflow.com/questions/891766/asp-net-mvc-where-did-the-password-retrieval-go 0 ASP.net MVC - Where did the Password retrieval go? Harry 2009-05-21T07:25:28Z 2009-11-24T13:00:02Z <p>Was it my imagination or did the earlier releases of ASP.net MVC have built in password retrieval?</p> <p>I'm not seeing it in version 1.0</p> http://stackoverflow.com/questions/664869/backup-mssql-via-c 3 backup MSSQL via C# Harry 2009-03-20T03:26:24Z 2009-11-24T01:26:53Z <p>How easy is it to backup a Database via C# code? I see lots of related questions, but no real answers.</p> http://stackoverflow.com/questions/1775050/linq-to-sql-where-or-operator 1 Linq To Sql 'Where Or' operator Harry 2009-11-21T09:45:57Z 2009-11-21T09:50:18Z <p>I need to create a query which checks if a field (string) contains one or more words supplied at run time.</p> <p>Basically I need to be able to ask a WhereOr question. This seems like it should be a common issue when dealing with LinqToSql.</p> <p>I found the following <a href="http://refactormycode.com/codes/1097-generic-linq-where-clause-oring-together-many" rel="nofollow">reference</a> but can't make sense out of it - and have no idea how to use it in my project.</p> <p>i've tried the following loop:</p> <pre><code> var query = from d in context.Domains select d; for (int i = 0; i &lt; words.Length; i++) { query = query.Where(d =&gt; d.Name.Contains(words[i])); } </code></pre> <p>but this builds a SQL query with <em>WHERE AND</em> Clauses NOT <em>Where OR</em></p> http://stackoverflow.com/questions/1719264/how-to-extract-the-sql-command-from-a-complied-linq-query 0 How to extract the Sql Command from a Complied Linq Query Harry 2009-11-12T01:22:48Z 2009-11-13T22:30:14Z <p>In normal (not compiled) Linq to Sql queries you can extract the SQLCommand from the IQueryable via the following code:</p> <pre><code>SqlCommand cmd = (SqlCommand)table.Context.GetCommand(query); </code></pre> <p>Is it possible to do the same for a compiled query?</p> <p>The following code provides me with a delegate to a compiled query:</p> <pre><code> private static readonly Func&lt;Data.DAL.Context, string, IQueryable&lt;Word&gt;&gt; Query_Get = CompiledQuery.Compile&lt;Data.DAL.Context, string, IQueryable&lt;Word&gt;&gt;( (context, name) =&gt; from r in context.GetTable&lt;Word&gt;() where r.Name == name select r); </code></pre> <p>When i use this to generate the IQueryable and attempt to extract the SqlCommand it doesn't seem to work. When debugging the code I can see that the SqlCommand returned has the 'very' useful CommandText of '<strong>SELECT NULL AS [EMPTY]</strong>'</p> <pre><code> using (var db = new Data.DAL.Context()) { IQueryable&lt;Word&gt; query = Query_Get(db, "word"); SqlCommand cmd = (SqlCommand)db.GetCommand(query); Console.WriteLine(cmd != null ? cmd.CommandText : "Command Not Found"); } </code></pre> <p>I can't find anything in google about this particular scenario, as no doubt it is not a common thing to attempt...</p> <p>So.... Any thoughts?</p> http://stackoverflow.com/questions/725489/does-anyone-know-what-cooliris-was-developed-in 1 Does anyone know what Cooliris was developed in? Harry 2009-04-07T12:38:39Z 2009-11-13T13:28:23Z <p>I'm not sure if you have heard about this cool 3d wall application called <a href="http://www.cooliris.com/?s=1" rel="nofollow">CoolIris?</a> It features some very smooth rendering and is quite slick.</p> <p>Does anyone know what this was written in? Java?</p> http://stackoverflow.com/questions/1143680/asp-net-performance-and-compile-queries/1719292#1719292 0 Answer by Harry for ASP.net Performance and Compile Queries Harry 2009-11-12T01:30:13Z 2009-11-12T01:30:13Z <p>Question 1: Every request to an IIS Web server is handled by an existing thread from the application's threadpool</p> <p>Question 2: Already answered by Joel</p> <p>Question 3: It is Static so is only either created (or compiled) once when the application is started</p> http://stackoverflow.com/questions/1647267/net-4-0-memory-mapped-files-verses-rdms-storage 0 .Net 4.0 Memory-Mapped Files verses RDMS Storage Harry 2009-10-30T00:02:50Z 2009-10-30T00:27:00Z <p>I'm interested in people's thoughts comparing storing data in a traditional SQL based Database or utilising a <a href="http://msdn.microsoft.com/en-us/library/dd997372%28VS.100%29.aspx" rel="nofollow">Memory-Mapped File</a> such as the one in the new .Net 4.0 runtime. The data in question would be arrays of simple structures.</p> <p>Obvious pros and cons:</p> <p><strong>SQL Database Pros</strong></p> <ol> <li>Adhoc query support</li> <li>SQL Management Tools</li> <li>Schema changes (adding more columns and setting default values)</li> </ol> <p><strong>Memory-Mapped Pros</strong></p> <ol> <li>Lighter overhead? (this is an assumption on my part)</li> <li>Shareable between process threads</li> <li>Any others?</li> </ol> <p>Is it worth it for performance gains?</p> http://stackoverflow.com/questions/1251447/asp-net-mvc-futures-asynccontroller-handling-server-validation 1 ASP.net MVC Futures AsyncController: Handling server validation Harry 2009-08-09T14:04:01Z 2009-10-21T03:00:02Z <p>I want to be able to check the form inputs prior to launching a long running asynchronous task.</p> <p>Two approaches that come to mind:</p> <ol> <li>Check values on the Begin method and throw an exception? </li> <li>Post to a normal (synchronous method) which validates as per normal. redirects to the asynchonrous method if no errors found.</li> </ol> <p>Throwing an exception i thought would be a simple solution. I can't return the view from the begin method, so the exception is handled on the end method. Only it isn't getting across to the end method (I thought this was the normal pattern)</p> <p>Validating in a normal synchronous method is fine... but how do i transfer or redirect the request to the asynchronous method???</p> http://stackoverflow.com/questions/501845/do-any-or-mappers-provide-asynchronous-methods 3 Do any OR Mappers provide Asynchronous Methods? Harry 2009-02-01T23:40:06Z 2009-10-05T17:12:54Z <p>Do any .Net O/R (object/Relational) Mappers provide Asynchronous methods out of the box?</p> <p>I don't want to have to write the boiler plate for the asynchronous method if possible</p> <p>I have rolled my own DAL with Asynchronous methods using the CCR framework. The CCR basically demands that I don't block any of it's threads waiting for IO responses.</p> <p>The good part about my solution so far is that it is down to the bare minimum. But as this project grows in terms of scale and functionality, I am facing the mildly daunting task of maintaining raw SQL queries and boiler plate code.</p> <p>BUT on the other hand if the O/R mapper Asynchronous methods are really just a messy hack that adds oddles of complexity I am not better off.</p> <p>Please don't focus on alternatives to Asynchronous programming.</p> http://stackoverflow.com/questions/1376507/calculating-the-percentage-difference-between-two-values 1 Calculating the percentage difference between two values Harry 2009-09-03T23:33:41Z 2009-09-03T23:58:08Z <p>Before you start laughing at such a simple question let me explain:</p> <p>I am trying to determine how much change (percentage %) there is in an account over various indicators. This is not particularly hard. But how do you generally handle the cases where the current value is zero or the previous value is zero?</p> <p>i.e.</p> <p>This week: Earnings = $<strong>25.6</strong></p> <p>Last week: Earnings = $<strong>0.0</strong></p> <p>I currently calculate the % difference by the following formula:</p> <pre><code>If (CurrentValue &gt; 0.0 &amp;&amp; PreviousValue &gt; 0.0) { return (CurrentValue - PreviousValue) / PreviousValue; } return 0.0; </code></pre> <p>if the earnings were zero in the previous week - what should the % difference be? <strong>+Infinity</strong>?<br /> And inversely if the current week is zero? <strong>-Infinity</strong>?</p> <p>Then to complicate things how would you handle this in a Linq-To-SQL query</p> <pre><code>Upside_Earnings = (statistics.Where(d =&gt; d.DateTime &gt; first_startdate &amp;&amp; d.DateTime &lt;= first_enddate).Average(e =&gt; (double)e.Earnings) &gt; zero &amp;&amp; statistics.Where(d =&gt; d.DateTime &gt; second_startdate &amp;&amp; d.DateTime &lt;= second_enddate).Average(e =&gt; (double)e.Earnings) &gt; zero) ? ((statistics.Where(d =&gt; d.DateTime &gt; first_startdate &amp;&amp; d.DateTime &lt;= first_enddate).Average(e =&gt; (double)e.Earnings) - statistics.Where(d =&gt; d.DateTime &gt; second_startdate &amp;&amp; d.DateTime &lt;= second_enddate).Average(e =&gt; (double)e.Earnings)) / statistics.Where(d =&gt; d.DateTime &gt; second_startdate &amp;&amp; d.DateTime &lt;= second_enddate).Average(e =&gt; (double)e.Earnings)) : zero, </code></pre> http://stackoverflow.com/questions/863253/python-and-collective-intelligence 1 Python and Collective Intelligence Harry 2009-05-14T13:11:53Z 2009-08-27T21:27:59Z <p>I'm currently reading a great book called 'Programming Collective Intelligence' by Toby Segaran (which i highly recommend)</p> <p>The code examples are all written in Python, and as I have already learnt one new language this year (graduating from VB.net to C#) i'm not keen to jump on another learning curve.</p> <p>This leaves my with the issue of translating the python examples into C#. </p> <p>Question is: How critical is it that the code stay in python? Are there thing in python that I can't do in a normal managed statically typed language?</p> http://stackoverflow.com/questions/1341114/time-out-issue-in-wcf/1341227#1341227 7 Answer by Harry for Time out issue in WCF. Harry 2009-08-27T13:48:01Z 2009-08-27T13:48:01Z <p>The forum post you mention is a red herring. The error message clearly states that you need to increase the timeout property in the WCF client and service. (if you change it in the service i have found that it doesn't always get picked up by the client when it is updated)</p> <p>In Visual studio goto the Tools menu, there you will find the 'WCF Service Configuration Editor'. Load your projects web.config and define a new Binding for your service.</p> <p>The setting to change is the SendTimeout value. It is 60 seconds by default.</p> <pre><code>&lt;system.serviceModel&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;binding name="WCFBinding" sendTimeout="00:02:00"&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; </code></pre> http://stackoverflow.com/questions/264216/-getjson-returning-cached-data-in-ie8 17 $.getJSON returning cached data in IE8 Harry 2008-11-05T02:46:44Z 2009-08-19T07:19:20Z <p>Hey all, I'm playing around with ASP.net MVC and JQuery at the moment. I've come across behavour which doesn't seem to make sense. </p> <p>I'm calling JQuery's $.getJSON function to populate some div's. The event is triggered on the $(document).ready event. This works perfectly.</p> <p>There is a small AJAX.BeginForm which adds another value to be used when populating the divs. It calls the remote function correctly and upon success calls the original javascript function to repopulate the divs.</p> <p>Here is the weird part: In FireFox and Chrome - Everything works. BUT In IE8 (Beta) this second call to the populate Div script (which calls the $.getJSON function) gets cached data and does not ask the server!</p> <p>Hope this question makes sense: In a nut shell - Why is $.getJSON getting cached data? And why is it only effecting IE8?</p> http://stackoverflow.com/questions/486352/understanding-users-does-performance-trump-looks 1 Understanding Users - Does Performance Trump Looks? Harry 2009-01-28T03:13:04Z 2009-08-06T15:47:16Z <p>It seems to me that whenever a GUI (Graphical User Interface) is involved, the look and feel of the interface nearly always trumps the performance of the application.</p> <p>Is this a universal phenomenon?</p> http://stackoverflow.com/questions/294138/merging-dictionaries-in-c/1236968#1236968 1 Answer by Harry for Merging dictionaries in C# Harry 2009-08-06T04:26:12Z 2009-08-06T04:26:12Z <p>Hey All here is my answer:</p> <pre><code>using System.Collections.Generic; namespace HelperMethods { public static class MergeDictionaries { public static void Merge&lt;TKey, TValue&gt;(this IDictionary&lt;TKey, TValue&gt; first, IDictionary&lt;TKey, TValue&gt; second) { if (second == null) return; if (first == null) first = new Dictionary&lt;TKey, TValue&gt;(); foreach (var item in second) if (!first.ContainsKey(item.Key)) first.Add(item.Key, item.Value); } } } </code></pre> http://stackoverflow.com/questions/264366/performance-tuning-wcf-service 0 Performance Tuning WCF Service Harry 2008-11-05T04:47:39Z 2009-07-30T10:18:04Z <p>What is the single most important performance tuning area for a WCF Web service? </p> <ul> <li>ASP.net Thread settings?</li> <li>WCF throttling?</li> </ul> http://stackoverflow.com/questions/441684/if-linq-to-sql-development-is-dead-does-it-matter 1 If LINQ-to-SQL development is dead - Does it Matter? Harry 2009-01-14T02:14:08Z 2009-07-30T06:05:34Z <p>What major features are missing from Linq-to-Sql?</p> <ul> <li>Compatibility with other major SQL Database Engines (MySQL etc)</li> <li>Mapping Many-to-Many relationships</li> <li>Any others?</li> </ul> <p>I have already developed a major project with Linq-to-Sql at it's DAL Heart. i hadn't developed using a relational data mapper before, so it was a learning curve coming from datasets. But i didn't find any major problems which couldn't be solved with Linq-to-Sql. My testing concluded that it was significantly faster than Linq-to-Entities.</p> <p>So what major features are missing from Linq-to-Sql? </p> <p>I guess what i am trying to ask is if development on Linq-to-Sql is ceased - will it matter?</p> <p><hr /></p> <p>Duplicate Question</p> <p><a href="http://stackoverflow.com/questions/252683/is-linq-to-sql-doa">http://stackoverflow.com/questions/252683/is-linq-to-sql-doa</a></p> http://stackoverflow.com/questions/633501/asp-net-mvc-how-to-change-the-textbox-class-upon-validation-failure 0 ASP.net MVC How to change the Textbox Class upon validation failure? Harry 2009-03-11T06:04:45Z 2009-07-28T11:00:01Z <p>I notice in the default MVC template project that the Account registration fields are highlighted via a class change.</p> <p>I can't seem to get the same behavour out of my own code (in the same project - same CSS etc)</p> <p>What might be stopping this from occuring?</p> <p><strong>Update</strong></p> <p>I believe this relates to <a href="http://stackoverflow.com/questions/633365/asp-net-mvc-rc2-validationmessage-and-checkbox-conflict/633400#633400">one of my other questions</a> Because I was having trouble with NullReferenceExceptions I have changed the Html.ValidationMessage fields to have different names than the target fields.</p> <p>So really, I need to resolve <a href="http://stackoverflow.com/questions/633365/asp-net-mvc-rc2-validationmessage-and-checkbox-conflict/633400#633400">this</a> question</p> http://stackoverflow.com/questions/806453/sitefinity-using-built-in-captcha 0 Sitefinity Using built in Captcha Harry 2009-04-30T11:23:03Z 2009-07-22T14:57:23Z <p>Does anyone know how to tie a custom control (simple ASP.net Form) with sitefinity's Captcha control?</p> <p>Can't seem to find the control (in the drag and drop sense) in amongst the SiteFinity.Web.UI</p> http://stackoverflow.com/questions/539761/detecting-blocked-threads 0 Detecting Blocked Threads Harry 2009-02-12T02:26:58Z 2009-07-18T23:11:35Z <p>I have a theory regarding trouble shooting a Asynchronous Application (I'm using the CCR) and I wonder if someone can confirm my logic.</p> <p>If a CCR based multi-threaded application using the default number of threads (i.e. one per core) is slower than the same application with double the threads specified - does this means that threads are being blocked somewhere in the code</p> <p>What do think? Is this a quick and valid way to detect if threads are being inadvertantly being blocked?</p> http://stackoverflow.com/questions/1220807/nolock-with-linq-to-sql/1220812#1220812 Comment by Harry on NOLOCK with Linq to SQL Harry 2009-12-18T14:36:52Z 2009-12-18T14:36:52Z Would have to aggree with Matt on the content stealing. Matt took the time to write the post on his blog. Now SOF is getting the traffic http://stackoverflow.com/questions/482408/limitations-of-running-multiple-instances-of-ms-sql-express/482448#482448 Comment by Harry on Limitations of Running Multiple Instances of MS SQL EXPRESS Harry 2009-12-13T22:31:42Z 2009-12-13T22:31:42Z I ended up joining BizSpark. Great initiative by MS! Thanks for supporting startups! http://stackoverflow.com/questions/1872142/sql-database-dilemma-optimize-for-querying-or-writing/1872169#1872169 Comment by Harry on SQL Database dilemma : Optimize for Querying or Writing? Harry 2009-12-09T07:38:41Z 2009-12-09T07:38:41Z The database is already optimized for the writing operations (including where constraints etc used by the writing program) http://stackoverflow.com/questions/1872142/sql-database-dilemma-optimize-for-querying-or-writing/1872207#1872207 Comment by Harry on SQL Database dilemma : Optimize for Querying or Writing? Harry 2009-12-09T07:37:53Z 2009-12-09T07:37:53Z Data lag is perfectly fine in this project http://stackoverflow.com/questions/1872142/sql-database-dilemma-optimize-for-querying-or-writing/1872207#1872207 Comment by Harry on SQL Database dilemma : Optimize for Querying or Writing? Harry 2009-12-09T07:37:18Z 2009-12-09T07:37:18Z interesting idea. This was something that I expected to be suggested (Or something like it) http://stackoverflow.com/questions/1872142/sql-database-dilemma-optimize-for-querying-or-writing Comment by Harry on SQL Database dilemma : Optimize for Querying or Writing? Harry 2009-12-09T07:17:01Z 2009-12-09T07:17:01Z Initial ideas: Query against a Database Snapshot? http://stackoverflow.com/questions/1824220/c-system-net-webexception-retrieving-custom-404-message Comment by Harry on C# System.Net.WebException Retrieving custom 404 message Harry 2009-12-01T06:05:43Z 2009-12-01T06:05:43Z This isn't code specific - it is a general problem. http://stackoverflow.com/questions/1775050/linq-to-sql-where-or-operator/1775057#1775057 Comment by Harry on Linq To Sql 'Where Or' operator Harry 2009-11-21T10:38:10Z 2009-11-21T10:38:10Z Wonder why this wasn't backed into LinqToSql http://stackoverflow.com/questions/1775050/linq-to-sql-where-or-operator Comment by Harry on Linq To Sql 'Where Or' operator Harry 2009-11-21T09:48:58Z 2009-11-21T09:48:58Z found an interesting resource: <a href="http://www.albahari.com/nutshell/predicatebuilder.aspx" rel="nofollow">albahari.com/nutshell/predicatebuilder.aspx/&hellip;</a> http://stackoverflow.com/questions/1647267/net-4-0-memory-mapped-files-verses-rdms-storage Comment by Harry on .Net 4.0 Memory-Mapped Files verses RDMS Storage Harry 2009-10-30T00:11:02Z 2009-10-30T00:11:02Z <a href="http://en.wikipedia.org/wiki/Memory-mapped_file" rel="nofollow">en.wikipedia.org/wiki/Memory-mapped_file</a> a good reference for Memory-Mapped-Files http://stackoverflow.com/questions/1647267/net-4-0-memory-mapped-files-verses-rdms-storage Comment by Harry on .Net 4.0 Memory-Mapped Files verses RDMS Storage Harry 2009-10-30T00:04:00Z 2009-10-30T00:04:00Z I'm also curious to know if this is ultimately what SQLServer uses behind the covers http://stackoverflow.com/questions/288810/get-the-subdomain-from-a-url/288922#288922 Comment by Harry on Get the subdomain from a URL Harry 2009-10-15T22:09:20Z 2009-10-15T22:09:20Z -1 that is a lame answer http://stackoverflow.com/questions/267067/would-you-go-back-to-vb-net-after-getting-c/286152#286152 Comment by Harry on Would you go back to VB.NET after getting C#? Harry 2009-09-03T23:56:08Z 2009-09-03T23:56:08Z I have since converted to C# is my primary language. Very hard to go back and work in VB.net! Still believe in my point though - I don't even use the snippets other than the for and foreach and property shortcuts http://stackoverflow.com/questions/1376507/calculating-the-percentage-difference-between-two-values Comment by Harry on Calculating the percentage difference between two values Harry 2009-09-03T23:50:53Z 2009-09-03T23:50:53Z Thanks for your help guys/girls http://stackoverflow.com/questions/1376507/calculating-the-percentage-difference-between-two-values/1376542#1376542 Comment by Harry on Calculating the percentage difference between two values Harry 2009-09-03T23:50:08Z 2009-09-03T23:50:08Z Great idea. 2560% is potentially more meaningful to the user. And it allows the various zero cases to sort amoungst themselves.