User Peter Wone - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T01:57:24Z http://stackoverflow.com/feeds/user/19931 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1044590/most-professional-way-to-tell-a-developer-they-are-no-good/1789810#1789810 1 Answer by Peter Wone for most professional way to tell a developer they are no good Peter Wone 2009-11-24T12:36:11Z 2009-11-24T12:36:11Z <p>The best way to tell a programmer he's no good is "Your services are no longer required."</p> http://stackoverflow.com/questions/1746369/is-forcing-complex-passwords-more-important-than-salting/1752924#1752924 2 Answer by Peter Wone for Is forcing complex passwords "more important" than salting? Peter Wone 2009-11-18T00:50:52Z 2009-11-18T01:14:54Z <p>With the sole exception of a requirement for a long string, every constraint <em>reduces</em> the size of password phase space. They therefore represent a <em>decrease</em> in complexity, not an increase. You are providing a bunch of reliable assumptions for the cracker. In the early days of twin-primes encryption I exploited this reduction of phase space to great effect. At the time processors were so slow that people tended to use int32 arithmetic for speed. This allowed me to assume the primes were between 0 and four billion. People always picked large primes because conventional wisdom held that bigger was better. So I used a pre-computed dictionary of primes and worked down from a known ceiling, knowing that people generally chose keys close to that ceiling. This generally allowed me to crack their key in about 30 seconds. </p> <p>For this reason, I prefer minimum legth constraint and salting, with no other constraints.</p> http://stackoverflow.com/questions/1586697/exposing-sql-server-database-objects-as-files-in-a-file-system 1 Exposing SQL Server database objects as files in a file system Peter Wone 2009-10-19T02:21:31Z 2009-11-17T03:42:52Z <h1>There's more than one file system</h1> <p>Most version control tools operate on the local disk file system. </p> <p>Database objects for most relational database systems <em>do</em> exist in a file system, inasmuch as there is a textual name identifying the object and the creation script can be retrieved or at least generated using this name.</p> <p>But it isn't the local disk file system, and as a result they are invisible to tools like CVS or SVN, which operate strictly on the local disk file system.</p> <p>In order for SVN to be applied to database objects, they must be replicated into the local disk file system, and changes to the local disk file system must be replicated to the database.</p> <h1>Different mode of use</h1> <p>Unlike source code, of which each developer maintains a private working copy, developers tend to work on a shared database on a server somewhere on the network. While Visual Studio provides direct support for mount-on-demand project-local copies of the database, developers have shunned this facility because there is no convenient and reliable way to merge changes.</p> <p>However, once changes to the database structure are managed by a copy-merge version control system like CVS or SVN, propagation and merging will be mostly automatic (bar conflicts) and there is no longer any reason to share a database.</p> <h1>Ruling out SCC as an option</h1> <p>Microsoft SQL Management Studio supports version control for anything that implements the SCC spec. Microsoft only lists VSS (blech) but Google reveals a plethora of options. <em>However</em>, SCC is all about locking - double blech. </p> <h1>Replicating between file systems</h1> <p>The whole question now devolves to one of replicating between file systems. CodePlex contains an implementation for VS2005/SQL2005 but it doesn't work with VS2008/SQL2008.</p> <p>At this point I think the underpinning question of "how should I go about this" has been satisfactorily addressed, although I'm not sure how to award points.</p> <p>Thank you to all concerned for your input.</p> <p>Some concrete questions do arise, mostly to do with how to script out various types of schema object.</p> <ul> <li>How to extract <code>create</code> and <code>alter</code> scripts in dependency order for <ul> <li>table</li> <li>view </li> <li>stored procedure</li> <li>function</li> <li>trigger</li> <li>index</li> <li>foreign key</li> </ul></li> <li>How to extract table population scripts in dependency order</li> <li>How to efficiently detect changes to the schema (in the absence of triggers on <code>sys.objects</code> it will be necessary to poll; this had better be fast and cheap)</li> </ul> <h1>Detecting changes</h1> <p>It has come to my attention that it is possible to bind actions to changes in schema using policies. There remain the questions of dependency ordering and of how to script a table creation statement</p> http://stackoverflow.com/questions/1604472/microsoft-sqlserver-management-sdk-sfc-urn 0 Microsoft.SqlServer.Management.Sdk.Sfc.Urn Peter Wone 2009-10-22T00:57:30Z 2009-11-10T16:00:08Z <p>I have the SQL2008 version of SMO and although it uses this class internally I can't figure how to bring it into scope so I can declare variables to hold values of this type. </p> <p>Yes I know I could declare them as object but then I'd still be unable to cast them to pass typed parameters.</p> <p>What reference do I need to add to my project and what using statement do I need to bring <code>Urn</code> into scope?</p> http://stackoverflow.com/questions/173726/when-and-why-are-database-joins-expensive/174047#174047 116 Answer by Peter Wone for When and why are database joins expensive? Peter Wone 2008-10-06T12:16:04Z 2009-11-03T11:11:08Z <p>Denormalising to improve performance? It sounds convincing, but it doesn't hold water.</p> <p>Chris Date, which advanced the relational data model along with Dr Ted Codd, its creator, got tired of misinformed arguments against normalisation and systematically demolished them using scientific method - he got large databases and <em>tested</em> these assertions. I think he wrote it up in <em>Relational Database Writings 1988-1991</em> but this book was later rolled into edition six of <em>Introduction to Database Systems</em>. This is <em>the</em> definitive text on database theory and design, currently in its eighth edition. Chris Date was an expert in this field when most of us were still running around barefoot.</p> <p>He found that: </p> <ul> <li>Some of them hold for special cases</li> <li>All of them fail to pay off for general use</li> <li>All of them are significantly worse for other special cases </li> </ul> <p>It all comes back to mitigating the size of the working set. Joins involving properly selected keys with correctly set up indexes are cheap, not expensive, because they allow significant pruning of the result <em>before</em> the rows are materialised. </p> <p>Materialising the result involves bulk disk reads which are the most expensive aspect of the exercise by an order of magnitude. Performing a join, by contrast, logically requires retrieval of only the <em>keys</em>. In practice, not even the key values are fetched: the key hash values are used for join comparisons, mitigating the cost of multi-column joins and radically reducing the cost of joins involving string comparisons. Not only will vastly more fit in cache, there's a lot less disk reading to do. </p> <p>Moreover, a good optimiser will choose the most restrictive condition and apply it before it performs a join, very effectively leveraging the high selectivity of joins on indexes with high cardinality. </p> <p>Admittedly this type of optimisation can also be applied to denormalised databases, but the sort of people who <em>want</em> to denormalise a schema typically don't think about cardinality when (if) they set up indexes. </p> <p>It is important to understand that table scans (examination of every row in a table in the course of producing a join) are rare in practice. A query optimiser will choose a table scan only when one or more of the following holds.</p> <ul> <li>There are fewer than 200 rows in the relation (in this case a scan will be cheaper)</li> <li>There are no suitable indexes on the join columns (if it's meaningful to join on these columns then why aren't they indexed? fix it)</li> <li>A type coercion is required before the columns can be compared (WTF?! fix it or go home)</li> <li>One of the arguments of the comparison is an expression (no index)</li> </ul> <p>Performing an operation is more expensive than not performing it. However, performing the <em>wrong</em> operation, being forced into pointless disk I/O and then discarding the dross prior to performing the join you really need, is <em>much</em> more expensive. Even when the "wrong" operation is precomputed and indexes have been sensibly applied, there remains significant penalty. Denormalising to precompute a join - notwithstanding the update anomalies entailed - is a commitment to a particular join. If you need a <em>different</em> join, that commitment is going to cost you <em>big</em>.</p> <p>If anyone wants to remind me that it's a changing world, I think you'll find that bigger datasets on gruntier hardware just exaggerates the spread of Date's findings.</p> <p>For all of you who work on billing systems or junk mail generators (shame on you) and are indignantly setting hand to keyboard to tell me that you know for a fact that denormalisation is faster, sorry but you're living in one of the special cases - specifically, the case where you process <em>all</em> of the data, in-order. It's not a general case, and you <em>are</em> justified in your strategy.</p> <p>You are <em>not</em> justified in falsely generalising it. See the end of the notes section for more information on appropriate use of denormalisation in data warehousing scenarios.</p> <p>I'd also like to respond to </p> <blockquote> <p>Joins are just cartesian products with some lipgloss</p> </blockquote> <p>What a load of bollocks. Restrictions are applied as early as possible, most restrictive first. You've read the theory, but you haven't understood it. Joins are <em>treated</em> as cartesian products to which predicates apply <em>only</em> by the query optimiser. This is a symbolic representation (a normalisation, in fact) to facilitate symbolic decomposition so the optimiser can produce all the equivalent transformations and rank them by cost and selectivity so that it can select the best query plan.</p> <p>The only way you will ever get the optimiser to produce a cartesian product is to fail to supply a predicate: <code>SELECT * FROM A,B</code></p> <p><hr /></p> <h2>Notes</h2> <p><hr /></p> <p>David Aldridge provides some important additional information.</p> <p>There is indeed a variety of other strategies besides indexes and table scans, and a modern optimiser will cost them all before producing an execution plan. </p> <p>A practical piece of advice: if it can be used as a foreign key then index it, so that an index strategy is <em>available</em> to the optimiser.</p> <p>I used to be smarter than the MSSQL optimiser. That changed two versions ago. Now it generally teaches <em>me</em>. It is, in a very real sense, an expert system, codifying all the wisdom of many very clever people in a domain sufficiently closed that a rule-based system is effective.</p> <p><hr /></p> <p>"Bollocks" may have been tactless. I am asked to be less haughty and reminded that math doesn't lie. This is true, but not all of the implications of mathematical models should necessarily be taken literally. Square roots of negative numbers are very handy if you carefully avoid examining their absurdity (pun there) and make damn sure you cancel them all out before you try to interpret your equation.</p> <p>The reason that I responded so savagely was that the statement as worded says that </p> <blockquote> <p>Joins <em>are</em> cartesian products...</p> </blockquote> <p>This may not be what was meant but it <em>is</em> what was written, and it's categorically untrue. A cartesian product is a relation. A join is a function. More specifically, a join is a relation-valued function. With an empty predicate it will produce a cartesian product, and checking that it does so is one correctness check for a database query engine, but nobody writes unconstrained joins in practice because they have no practical value outside a classroom.</p> <p>I called this out because I don't want readers falling into the ancient trap of confusing the model with the thing modelled. A model is an approximation, deliberately simplified for convenient manipulation. </p> <p><hr /></p> <p>The cut-off for selection of a table-scan join strategy may vary between database engines. It is affected by a number of implementation decisions such as tree-node fill-factor, key-value size and subtleties of algorithm, but broadly speaking high-performance indexing has an execution time of <em>k</em> log <em>n</em> + <em>c</em>. The C term is a fixed overhead mostly made of setup time, and the shape of the curve means you don't get a payoff (compared to a linear search) until <em>n</em> is in the hundreds.</p> <p><hr /></p> <h2>Sometimes denormalisation is a good idea</h2> <p>Denormalisation is a commitment to a particular join strategy. As mentioned earlier, this interferes with <em>other</em> join strategies. But if you have buckets of disk space, predictable patterns of access, and a tendency to process much or all of it, then precomputing a join can be very worthwhile. </p> <p>You can also figure out the access paths your operation typically uses and precompute all the joins for those access paths. This is the premise behind data warehouses, or at least it is when they're built by people who know why they're doing what they're doing, and not just for the sake of buzzword compliance.</p> <p>A properly designed data warehouse is produced periodically by a bulk transformation out of a normalised transaction processing system. This separation of the operations and reporting databases has the very desirable effect of eliminating the clash between OLTP and OLAP (online transaction processing ie data entry, and online analytical processing ie reporting). </p> <p>An important point here is that apart from the periodic updates, the data warehouse is <em>read only</em>. This renders moot the question of update anomalies.</p> <p>Don't make the mistake of denormalising your OLTP database (the database on which data entry happens). It might be faster for billing runs but if you do that you will get update anomalies. Ever tried to get Reader's Digest to stop sending you stuff?</p> <p>Disk space is cheap these days, so knock yourself out. But denormalising is only part of the story for data warehouses. Much bigger performance gains are derived from precomputed rolled-up values: monthly totals, that sort of thing. It's <em>always</em> about reducing the working set.</p> http://stackoverflow.com/questions/364740/linq-2-sql-or-linq-entities/507390#507390 -1 Answer by Peter Wone for Linq 2 SQL or Linq Entities Peter Wone 2009-02-03T14:57:25Z 2009-10-27T04:47:23Z <p>We thought L2S was great until we tried to do updates. Then it was pathetic. My colleague was doing most of this work while I did other things. He talked about EF and the ways in which excessive configurability made it messy to use. </p> <p>I suggested that since we target MSSQL and that isn't going to change, he could hack out all the database provider abstraction stuff. Some time later he told me it was a good suggestion and his code was much simpler and less fiddly to maintain.</p> <p><hr /></p> <p>I'm curious as to the basis on which this answer has been voted <em>down</em>. It describes actual experience, and it discusses an alternate strategy and the relative success of that approach. Down-voting is for answers that are misleading, factually incorrect or just plain trolling. </p> <p>As it happens I have changed my position on the whole EF vs L2S thing, but that doesn't change the fact that down-voting something merely because it expresses an opinion different from your own is infantile and thoroughly counter to the spirit of StackOverflow.</p> http://stackoverflow.com/questions/1604472/microsoft-sqlserver-management-sdk-sfc-urn/1604515#1604515 0 Answer by Peter Wone for Microsoft.SqlServer.Management.Sdk.Sfc.Urn Peter Wone 2009-10-22T01:10:46Z 2009-10-22T01:10:46Z <p>Found it. There is a free-standing assembly</p> <pre><code>Microsoft.SqlServer.Management.Sdk.Sfc </code></pre> <p>Urn is defined in there now.</p> http://stackoverflow.com/questions/822781/is-there-a-catchy-term-for-repatriating-work-once-offshored/1586809#1586809 1 Answer by Peter Wone for Is there a catchy term for repatriating work once offshored? Peter Wone 2009-10-19T03:11:43Z 2009-10-19T03:11:43Z <p><strong>Retry</strong></p> <p>Face it, offshored projects only finish three ways:</p> <ul> <li>Retry</li> <li>Abort</li> <li>Ignore</li> </ul> http://stackoverflow.com/questions/1464069/equals-method-on-binary-object 0 Equals method on Binary object Peter Wone 2009-09-23T05:09:53Z 2009-09-23T07:39:08Z <p>The Microsoft documentation for </p> <pre><code>public bool Binary.Equals(Binary other) </code></pre> <p>gives no indication as to whether this tests equality of reference as with objects in general or equality of value as with strings.</p> <p>Can anyone clarify?</p> <p>John Skeet's answer inspired me to expand it to this:</p> <pre><code>using System; using System.Data.Linq; public class Program { static void Main(string[] args) { Binary a = new Binary(new byte[] { 1, 2, 3 }); Binary b = new Binary(new byte[] { 1, 2, 3 }); Console.WriteLine("a.Equals(b) &gt;&gt;&gt; {0}", a.Equals(b)); Console.WriteLine("a {0} == b {1} &gt;&gt;&gt; {2}", a, b, a == b); b = new Binary(new byte[] { 1, 2, 3, 4 }); Console.WriteLine("a {0} == b {1} &gt;&gt;&gt; {2}",a,b, a == b); /* a &lt; b is not supported */ } } </code></pre> http://stackoverflow.com/questions/16804/enterprise-reporting-solutions/144531#144531 14 Answer by Peter Wone for Enterprise Reporting Solutions Peter Wone 2008-09-27T21:38:24Z 2009-09-10T22:56:42Z <p>I'd like to make two contributions. One is very negative (CR is rubbish) and the other is very positive (SSRS is backing store independent and available at no cost).</p> <p>On a side note, if you mod an answer down then add a comment explaining why you think the answer is wrong or counterproductive, unless someone else already said the same thing. Even then, a simple "as above" would be helpful. </p> <h2>Crystal Reports is rubbish</h2> <p>Crystal Reports is an insult to the development community. Simple dialog resize bugs that would be the work of moments to fix have remained uncorrected over ten years and six major releases, so I really doubt that any attempt is ever made to address the tough stuff. Crystal Reports is profoundly untrustworthy, as this SQL demonstrates.</p> <pre><code>SELECT COUNT(*) FROM sometable WHERE 1=0 </code></pre> <p>This statement produces a result of one when it should produce zero. This is a repeatable off-by-one error in the heart of the Crystal Reports SQL engine. </p> <p>The support for CR is equally dismal, having been moved offshore many years ago. If you cough up $200 for a support call, an unintelligible foreigner will misunderstand your question and insult your intelligence until you give up, at which point he will - because you have chosen to give up - declare the call resolved.</p> <p>If it's really this bad why is it so popular? Great marketing. Management types see glossy adverts promising much, and because CR has been around so long they assume it's all true. When managers lack the technical expertise to make a decision, rather than allow a technical person to make the decision they fall back on precedent and repeat the mistakes of their peers. They also fail to realise that if they want to actually use the web delivery stuff they are up for a server licence. Also, longevity means it's easy to find people with CR experience. </p> <p>For the details and a good laugh I recommend these links.</p> <ul> <li><a href="http://secretgeek.net/CrystalDodo.asp" rel="nofollow">Clubbing the Crystal Dodo</a></li> <li><a href="http://msmvps.com/blogs/williamryan/archive/2004/11/07/18148.aspx" rel="nofollow">Crystal Reports "Sucks"</a></li> <li><a href="http://unbecominglevity.blogharbor.com/blog/%5Farchives/2005/12/21/1474036.html" rel="nofollow">Crystal Reports Sucks Donkey Dork </a></li> </ul> <p>Or just type "crystal reports sucks" into Google. For a balanced perspective, also try "crystal reports rocks". Don't worry, this won't take much of your time. There are <em>no</em> positive reviews outside their own marketing hype.</p> <p>Now for something more positive.</p> <h2>SQL Reports is effectively free</h2> <p>You can install it at no charge as part of <em>SQL Express with Advanced Services</em>. You can also install .NET 2.x which brings with it ADO.NET drivers for major database providers as well as generic OLEDB and ODBC support.</p> <p>Since SSRS uses ADO.NET, this means you can connect SSRS to anything to which you can connect ADO.NET, ie just about anything.</p> <p>The terms of the licence applying to SSRS as supplied with SQL Express require it to be deployed and installed as part of SQL Express. They don't have anything to say about where reports get their data.</p> <p>SQL Express is limited, but the accompanying SSRS has no such limitations. If your data is provided by another database engine you can support as many users as that engine is licensed to support. Don't get me wrong, at work we have dozens of licensed copies of MS SQL Server. I'm just saying that you can use SSRS against the backing store of your choice, without having to find or justify budget for it. What you will be missing is scheduling and subscription support. I speak from experience when I say that it is not profoundly difficult to write a service that fills the gap.</p> <p>SSRS fulfils every promise that CR makes. Easy to use, good support for user DIY, has a schema abstraction tool conceptually similar to CR BO but which works properly, high performance, schedulable, easy to use, stable, flexible, easy to extend, can be controlled interactively or programmatically. In the 2008 edition they even support rich-formatted flow-based templates (mail merge for form letters).</p> <p>It is the best reporting solution I have ever seen in twenty years of software development on platforms ranging from mainframes through minis to micros. It ticks every box I can think of and has no profound weakness I can recall. </p> <p>It does not address problems like heterogeneous data provision, but IMHO these can and should be addressed outside of the report proper. Plenty of data warehousing solutions (such as SSIS) provide tools for solving such problems, and it would be absurd to put a half-assed duplicate capability in the report engine.</p> http://stackoverflow.com/questions/763825/question-about-3rd-normal-form/1385743#1385743 0 Answer by Peter Wone for Question about 3rd Normal Form Peter Wone 2009-09-06T13:57:25Z 2009-09-06T13:57:25Z <p>To directly address the question asked, the violated property is FFD (full functional dependency on the key).</p> http://stackoverflow.com/questions/1371279/injecting-mouse-input-in-wpf-applications/1377173#1377173 0 Answer by Peter Wone for Injecting Mouse Input in WPF Applications Peter Wone 2009-09-04T04:01:43Z 2009-09-04T04:43:28Z <p>Your strategy is basically sound but in order to send a message to a window owned by another process you must first register the message.</p> <p><a href="http://www.codeguru.com/vb/gen/vb%5Fsystem/win32/article.php/c7401" rel="nofollow">Here is an article explaining the whole business</a>. The sample code is unfortunately in VB but I'm sure that won't stop you.</p> http://stackoverflow.com/questions/1376848/best-way-to-share-data-between-net-application-instance/1377099#1377099 0 Answer by Peter Wone for Best way to share data between .NET application instance? Peter Wone 2009-09-04T03:33:27Z 2009-09-04T03:33:27Z <p>If you reconsider and host using IIS you will find that with a single line in a config file you can make the ASP Global, Application and Session objects available. This trick is also very handy because it means you can share session state between an ASP application and a WCF service.</p> http://stackoverflow.com/questions/1376572/c-how-to-handle-constant-tables/1376582#1376582 0 Answer by Peter Wone for C#, how to handle constant tables Peter Wone 2009-09-03T23:57:30Z 2009-09-03T23:57:30Z <p>Enumerations, surely.</p> http://stackoverflow.com/questions/1251589/out-of-browser-web-application-running-at-start-up/1376564#1376564 0 Answer by Peter Wone for "Out of browser" web application running at Start-Up? Peter Wone 2009-09-03T23:53:46Z 2009-09-03T23:53:46Z <p>Assuming you are building for Windows, launching an executable at startup can be done several ways. </p> <p>For user session startup, you can achieve this either by putting a lnk file in the appropriate folder, or with a registry entry. For operating system startup, you can achieve this with a registry entry. There are several permutations:</p> <ul> <li>run application once on boot (UI not allowed)</li> <li>run application every boot (UI not allowed)</li> <li>start service every boot according to policy set in registry</li> <li>run application once on user session start</li> <li>run application every user session </li> </ul> <p>Since an out of browser application has UI I expect you mean <em>run application every user session</em> and in this case you may as well put an LNK file in the user's startup folder.</p> http://stackoverflow.com/questions/256893/serialport-and-the-bsod 1 SerialPort and the BSOD Peter Wone 2008-11-02T13:41:58Z 2009-08-31T19:00:33Z <p>I've written some C# code that checks whether a device is present on any SerialPort by issuing a command on the port and listening for a reply. When I just set the port speed, open the port, get the serial stream and start processing, it works 100% of the time. However, some of our devices work at different speeds and I am trying to probe for a device at various speeds to autonegotiate a connection as well as detect device presence.</p> <p>When I do all this in a single thread there are no problems. However, 3s timeout at ten speeds is 30s per serial port, and there may be several. Hence the desire to probe all ports concurrently.</p> <p>Sometimes this works. Sometimes Vista bluescreens. When I use threads to probe all the ports simultaneously it nearly always bluescreens. When I force everything to run in one thread it never happens.</p> <p>A USB-serial Prolific PL-2303 adaptor is in use with x64 drivers. </p> <p><hr /></p> <p>@Vinko - thanks for the tip on reading minidumps. </p> <p>As near as I can tell, the crux of the problem is that by starting a new asynchronous I/O operation <em>from a different thread</em> it is possible to give a whole new meaning to overlapped I/O, inducing a race condition inside the driver. Since the driver executes in kernel mode, <strong>BLAM!</strong></p> <h1>Epilogue</h1> <p>Except for kicking off, don't use BeginXxx outside of the callback handler and don't call BeginXxx until you've called EndXxx, because you'll induce a race condition in driver code that runs in kernel mode.</p> <h1>Postscript</h1> <p>I have found that this also applies to socket streams.</p> http://stackoverflow.com/questions/1175046/no-domaindatasource-in-toolbox-in-visual-studio 0 No DomainDataSource in toolbox in Visual Studio Peter Wone 2009-07-23T23:27:58Z 2009-07-24T06:57:39Z <p>In Brad Adams' blogged walkthrough of the new RIA goodies, he mentions that you can simply drag a DomainDataSource from the toolbox to your XAML. </p> <p>All of my RIA kit came from links from that blog and I definitely have the July CTP, yet in my toolbox there is conspicuous absence of DomainDataSource.</p> <p>What arcane rituals must I undertake to be worthy of toolboxification and the accompanying privileges of automated addition of references to project and XAML?</p> http://stackoverflow.com/questions/1175046/no-domaindatasource-in-toolbox-in-visual-studio/1176125#1176125 0 Answer by Peter Wone for No DomainDataSource in toolbox in Visual Studio Peter Wone 2009-07-24T06:57:39Z 2009-07-24T06:57:39Z <p>A helpful Microsoftie responded on another forum. If you right-click the Silverlight controls section of the toolbox for the context menu and add a control you can browse to Silverlight controls and tick DDS in the list. Too easy.</p> http://stackoverflow.com/questions/507478/linq-exclusion 2 LINQ exclusion Peter Wone 2009-02-03T15:10:12Z 2009-07-01T14:36:41Z <p>Is there a direct LINQ syntax for finding the members of set A that are absent from set B? In SQL I would write this</p> <pre><code>SELECT A.* FROM A LEFT JOIN B ON A.ID = B.ID WHERE B.ID IS NULL </code></pre> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182290#182290 131 Answer by Peter Wone for What are some funny loading statements to keep users amused? Peter Wone 2008-10-08T11:40:24Z 2009-07-01T03:31:30Z <p>Animate this:</p> <pre><code>Testing RAM..............OK Testing CPU..............OK Testing Primary Disk.....OK Testing Patience.......FAIL USER ERROR: OUT OF PATIENCE! </code></pre> http://stackoverflow.com/questions/998943/inhibiting-active-directory-updates 0 Inhibiting Active Directory updates Peter Wone 2009-06-15T23:26:03Z 2009-06-15T23:26:02Z <p>I'm responsible for some software that lives on a computer in a managed domain. The client is a mining giant and a third party manages the domain rather bureacratically.</p> <p>They have standard configurations they push out via Active Directory replication.</p> <p>Appropriate channels have been invoked for having the official configuration change made, but from experience I know this will take about six weeks before they make the wrong change and about six months before the dust settles.</p> <p>While I have local admin privileges on the server that is in my care, changes that I make (such as setting up MSMQ) are periodically overridden by AD updates.</p> <p>My question is: How can I inhibit AD updates? If I revoke Domain Admin permissions on the local registry files will that stop AD from turning off my services?</p> http://stackoverflow.com/questions/792735/why-does-this-code-work-without-the-unsafe-keyword/792861#792861 2 Answer by Peter Wone for Why does this code work without the unsafe keyword? Peter Wone 2009-04-27T09:40:04Z 2009-04-27T10:40:55Z <p>Whoops, I've muddled <code>unsafe</code> with <code>fixed</code>. Here's a corrected version:</p> <p>The reason that the sample code does not require tagging with the <code>unsafe</code> keyword is that it does not contain <em>pointers</em> (see below quote for why this is regarded as unsafe). You are quite correct: "safe" might better be termed "run-time friendly". For more information on this topic I refer you to Don Box and Chris Sells <em>Essential .NET</em></p> <p>To quote MSDN,</p> <blockquote> <p>In the common language runtime (CLR), unsafe code is referred to as unverifiable code. Unsafe code in C# is not necessarily dangerous; it is just code whose safety cannot be verified by the CLR. The CLR will therefore only execute unsafe code if it is in a fully trusted assembly. If you use unsafe code, it is your responsibility to ensure that your code does not introduce security risks or pointer errors.</p> </blockquote> <p>The difference between fixed and unsafe is that fixed stops the CLR from moving things around in memory, so that things outside the run-time can safely access them, whereas unsafe is about exactly the opposite problem: while the CLR can guarantee correct resolution for a dotnet reference, it cannot do so for a pointer. You may recall various Microsofties going on about how a reference is not a pointer, and this is why they make such a fuss about a subtle distinction.</p> http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792941#792941 1 Answer by Peter Wone for c# choosing class properties with a variable? Peter Wone 2009-04-27T10:10:18Z 2009-04-27T10:10:18Z <p>Call me Mr Silly, but why don't you change the WorkOrder constructor to take an <code>XmlNode</code> parameter, shovel all the ugly assignments into it, and just invoke it like this:</p> <pre><code>WorkOrder wo = new WorkOrder(xmlnode); </code></pre> http://stackoverflow.com/questions/792708/why-and-two-numbers-to-get-a-boolean/792815#792815 1 Answer by Peter Wone for Why AND two numbers to get a Boolean? Peter Wone 2009-04-27T09:28:55Z 2009-04-27T09:34:57Z <p>In C# use the <a href="http://msdn.microsoft.com/en-us/library/system.collections.bitarray%28VS.71%29.aspx" rel="nofollow">BitArray class</a> to directly index individual bits.</p> <p>To set an individual bit <em>i</em> is straightforward: </p> <pre><code>b |= 1 &lt;&lt; i; </code></pre> <p>To reset an individual bit <em>i</em> is a little more awkward:</p> <pre><code>b &amp;= ~(1 &lt;&lt; i); </code></pre> <p>Be aware that both the bitwise operators and the shift operators tend to promote everything to <code>int</code> which may unexpectedly require casting.</p> http://stackoverflow.com/questions/792798/unable-to-fetch-command-line-arguments-properly-in-c/792800#792800 1 Answer by Peter Wone for Unable to fetch command line arguments properly in C# Peter Wone 2009-04-27T09:22:40Z 2009-04-27T09:22:40Z <p>This is a well known parsing problem and there isn't a whole lot you can do about it besides get the whole command line as a single string and parse it yourself.</p> http://stackoverflow.com/questions/792753/is-the-last-comma-in-c-enum-required/792777#792777 2 Answer by Peter Wone for Is the last comma in C enum required? Peter Wone 2009-04-27T09:13:00Z 2009-04-27T09:19:51Z <p>As already stated it is not required. The reason that a trailing comma is supported is that it (assuming the items are laid out one to a line) it allows you to conveniently rearrange the order of items in an enumeration using cut/paste or drag/drop, and it also allows you to comment out the last item without producing a syntax error. Omitting the trailing comma is legal but loses these code maintenance advantages.</p> <p>I'd forgotten but Nick is quite right. I too have exploited the trailing comma with compiler directives. Without it, the conditional code would have been a lot messier and harder to read.</p> http://stackoverflow.com/questions/790827/learning-ins-and-outs-of-c/790842#790842 2 Answer by Peter Wone for Learning ins and outs of C# Peter Wone 2009-04-26T13:19:34Z 2009-04-26T13:19:34Z <p>You could also read The C# Language Specification which carries even more authority than Jon Skeet. In fact read <em>everything</em> linked from <a href="http://msdn.microsoft.com/en-au/vcsharp/aa336809.aspx" rel="nofollow">this page</a>. These resources have the considerable advantage of being (a) canon and (b) free.</p> <p>For those who aren't big readers there is also this collection of how-to <a href="http://msdn.microsoft.com/en-us/library/bb820895.aspx" rel="nofollow">videos</a>.</p> http://stackoverflow.com/questions/790494/whats-the-most-brilliant-use-of-templates-youve-ever-encountered/790834#790834 1 Answer by Peter Wone for What's the most brilliant use of templates you've ever encountered? Peter Wone 2009-04-26T13:13:56Z 2009-04-26T13:13:56Z <p>I rather like Microsoft's "smart pointers" that make elaborate use of templates to make COM less of a pig and code much more readable.</p> http://stackoverflow.com/questions/790824/visual-studio-integrated-web-server-error-without-elevation/790828#790828 -1 Answer by Peter Wone for Visual Studio Integrated Web Server error without elevation Peter Wone 2009-04-26T13:10:44Z 2009-04-26T13:10:44Z <p>When you run an ASP.NET project inside VS the debug webserver runs (as you say) without elevation which causes problems. Debugging is a privileged operation of exactly the sort that UAC is intended to suppress. The whole idea of UAC is that this sort of thing can't happen without your explicit intervention. </p> <p>So run VS with elevated permissions. The behaviour you are seeing is by design.</p> http://stackoverflow.com/questions/788939/how-to-invoke-if-the-form-is-not-active/790694#790694 0 Answer by Peter Wone for How to Invoke if the form is not active? Peter Wone 2009-04-26T11:45:09Z 2009-04-26T11:45:09Z <p>Split the problem into two parts. Log your text using <code>Trace.TraceInformation()</code> and implement a TraceListener that handles the display aspect. </p> <p>This way, you can redirect your log output to a file, or the Windows EventLog, or your UI, or whatever, simply with an entry in a config file. You don't have to pick just one. You can do all of the above if it helps.</p> <p>This is such a mundane and frequent problem that the MSDN sample for implementing a <code>TraceListener</code> is exactly what you need.</p> http://stackoverflow.com/questions/1746369/is-forcing-complex-passwords-more-important-than-salting/1752924#1752924 Comment by Peter Wone on Is forcing complex passwords "more important" than salting? Peter Wone 2009-11-20T01:49:25Z 2009-11-20T01:49:25Z By minimum password length I meant enforcing fairly long passwords. http://stackoverflow.com/questions/1653753/how-to-code-a-compiler-in-c/1653779#1653779 Comment by Peter Wone on How to code a compiler in C? Peter Wone 2009-10-31T08:43:22Z 2009-10-31T08:43:22Z So, you want to build a Jumbo Jet, only bigger and better, using only the pieces in the basic Meccano set? http://stackoverflow.com/questions/1586697/exposing-sql-server-database-objects-as-files-in-a-file-system/1606790#1606790 Comment by Peter Wone on Exposing SQL Server database objects as files in a file system Peter Wone 2009-10-23T04:25:50Z 2009-10-23T04:25:50Z This sounds very much like what I have in mind. I will indeed check out [sic] your work. http://stackoverflow.com/questions/1586697/exposing-sql-server-database-objects-as-files-in-a-file-system/1600925#1600925 Comment by Peter Wone on Exposing SQL Server database objects as files in a file system Peter Wone 2009-10-22T05:03:42Z 2009-10-22T05:03:42Z So essentially you're doing version control on daily snapshots of db structure? http://stackoverflow.com/questions/1586697/exposing-sql-server-database-objects-as-files-in-a-file-system/1586756#1586756 Comment by Peter Wone on Exposing SQL Server database objects as files in a file system Peter Wone 2009-10-21T01:41:42Z 2009-10-21T01:41:42Z Are you suggesting that I put triggers on the system tables? http://stackoverflow.com/questions/1586697/exposing-sql-server-database-objects-as-files-in-a-file-system/1592330#1592330 Comment by Peter Wone on Exposing SQL Server database objects as files in a file system Peter Wone 2009-10-21T01:41:00Z 2009-10-21T01:41:00Z Needing to educate the users, that's the kicker. Even if they listen, sometimes they will forget. http://stackoverflow.com/questions/1586697/exposing-sql-server-database-objects-as-files-in-a-file-system/1597085#1597085 Comment by Peter Wone on Exposing SQL Server database objects as files in a file system Peter Wone 2009-10-21T01:39:27Z 2009-10-21T01:39:27Z We too use Red Gate with much the same operations practices. I'm trying to improve the level of automation. http://stackoverflow.com/questions/1586697/exposing-sql-server-database-objects-as-files-in-a-file-system/1586756#1586756 Comment by Peter Wone on Exposing SQL Server database objects as files in a file system Peter Wone 2009-10-19T03:19:21Z 2009-10-19T03:19:21Z I just looked it up and as far as I can see it's sort of MSMQ using a database. I don't see how that's going to let me intercept updates to basically everything that isn't table data. http://stackoverflow.com/questions/1586697/exposing-sql-server-database-objects-as-files-in-a-file-system/1586756#1586756 Comment by Peter Wone on Exposing SQL Server database objects as files in a file system Peter Wone 2009-10-19T03:15:22Z 2009-10-19T03:15:22Z You're quite right, capturing changes to a folder on disk is quite easy, and a little service could easily push the changes to the server. But what is this SQL Server broker of which you speak? http://stackoverflow.com/questions/168427/compare-sql-server-reporting-services-to-crystal-reports/1414652#1414652 Comment by Peter Wone on Compare SQL Server Reporting Services to Crystal Reports Peter Wone 2009-10-18T11:57:40Z 2009-10-18T11:57:40Z +1 for presenting the only credible counterargument I have seen so far. I should point out that &quot;I don't know how to make it do X&quot; is not the same as &quot;It can't do X&quot;. Personally I think the Microsoft support is better than the CR support. http://stackoverflow.com/questions/1464069/equals-method-on-binary-object/1464115#1464115 Comment by Peter Wone on Equals method on Binary object Peter Wone 2009-09-23T05:46:48Z 2009-09-23T05:46:48Z I actually considered testing it like that but figured someone would just know off the cuff (and then SO went weird and I got obsessed with making it post). Thanks, I guess. http://stackoverflow.com/questions/54864/how-well-does-net-scale/55109#55109 Comment by Peter Wone on How well does .NET scale? Peter Wone 2009-09-17T00:53:58Z 2009-09-17T00:53:58Z This is a really good book. It ought to be taught at university. http://stackoverflow.com/questions/1385695/help-me-understand-this-short-chunk-of-code/1385719#1385719 Comment by Peter Wone on Help me understand this short chunk of code Peter Wone 2009-09-06T14:09:35Z 2009-09-06T14:09:35Z Yeah it is. Pax you should write textbooks! http://stackoverflow.com/questions/1376572/c-how-to-handle-constant-tables/1376582#1376582 Comment by Peter Wone on C#, how to handle constant tables Peter Wone 2009-09-06T13:46:14Z 2009-09-06T13:46:14Z I wouldn't throw them out. They are harmless, the compiler is stable and it would for some code represent a breaking change. But you are right that I wouldn't have added them in the first place. I've always found a language more interesting for what <i>can</i> be expressed than what can't. http://stackoverflow.com/questions/1371279/injecting-mouse-input-in-wpf-applications/1377173#1377173 Comment by Peter Wone on Injecting Mouse Input in WPF Applications Peter Wone 2009-09-04T04:45:45Z 2009-09-04T04:45:45Z Yeah I just noticed the part of your question where you mention that you are getting some mouse events firing, which implies it's all inproc.