User RoadWarrior - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T08:27:09Z http://stackoverflow.com/feeds/user/13118 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1841950/nullreferenceexception-mystery/1842081#1842081 1 Answer by RoadWarrior for NullReferenceException mystery RoadWarrior 2009-12-03T18:53:43Z 2009-12-03T18:53:43Z <p>As Ben says in the comments, the null reference is coming from: </p> <p>EEMSReports.My.MyApplication.Main(String[] Args) in 17d14f5c-a337-4978-8281-53493378c1071.vb : line 81</p> <p>This indicates a temporary compiler-generated file. From memory, it's possible that this is a bug in the C# compiler, where it deletes the temporary file before trying to use it. But I would set Visual Studio to break on unhandled exceptions, and then see where the exception is thrown. </p> http://stackoverflow.com/questions/1841609/what-could-cause-a-windows-service-to-hang-when-a-console-app-doing-the-exact-sam/1841788#1841788 2 Answer by RoadWarrior for What could cause a Windows Service to hang when a Console App doing the exact same thing using the exact same base libraries doesn't? RoadWarrior 2009-12-03T18:10:16Z 2009-12-03T18:25:11Z <p>You can debug a Windows service by <a href="http://sleeksoft.co.uk/public/techblog/articles/20051128_1.html" rel="nofollow">running it interactively within Visual Studio</a>. This may help you to isolate the problem by setting (perhaps conditional) breakpoints.</p> <p>Alternatively, you can use the Visual Studio "Attach to process" dialog window to find the service process and attach to it with the "Debug CLR" option enabled. Again this allows you to set breakpoints as needed.</p> <p>Are you using any assertions? If an assertion fires without being re-directed to write to a log file, your service will hang. If the code throws an unhandled exception, perhaps because of a memory leak, then your service process will crash. If you set the Service Control Manager (SCM) to restart your process in the event of a crash, you should be able to see that the service has been restarted. As you have identical code running in both environments, these two situations don't seem likely. But remember that your service is being hosted by the SCM, which means a very different environment to the one in which your console app is running. </p> <p>I often use a "heartbeat", where each active thread in the service sends a regular (say every 30 seconds) message to a local MSMQ. This enables manual or automated monitoring, and should give you some clues when these heartbeat messages stop arriving.</p> <p>Annother possibility is some sort of permissions problem, because the service is probably running with a different local/domain user to the console. </p> <p>After the hang, can you use the SCM to stop the service? If you can't, then there is probably some sort of thread deadlock problem. After the service appears to hang, you can go to a command-line and type <strong>sc queryex servicename</strong>. This should give you the current STATE of the service.</p> http://stackoverflow.com/questions/1702620/vs2005-web-deployment-project-to-vs2008-aspnet-compiler-errors/1750284#1750284 0 Answer by RoadWarrior for VS2005 Web Deployment Project to VS2008 - ASPNET compiler errors RoadWarrior 2009-11-17T17:01:46Z 2009-11-17T17:01:46Z <p>You can use a <a href="http://msdn.microsoft.com/en-us/library/ms227976(VS.85).aspx" rel="nofollow">pre-compilation switch</a> to override the pre-compilation target folder. Here is an <a href="http://msdn.microsoft.com/en-us/library/ms228015(VS.85).aspx" rel="nofollow">overview of ASP.NET pre-compilation</a>.</p> <p>Alternatively, if the pre-upgrade version of the project didn't use a virtual directory, but the upgraded version does, this can cause the .wdproj to become confused. In that case, you might need to recreate the deployment project.</p> http://stackoverflow.com/questions/1714640/what-are-the-options-available-to-encrypt-a-sql-server-express-database/1714719#1714719 2 Answer by RoadWarrior for What are the options available to encrypt a SQL Server Express database? RoadWarrior 2009-11-11T11:52:24Z 2009-11-11T11:52:24Z <p>What's your threat model? Are you trying to stop a casual thief who's stolen a laptop, or a determined hacker? Are you trying to protect just the data, or also the schema?</p> <p>If you're using SQL Server Express 2005 or higher, then <a href="http://www.databasejournal.com/features/mssql/article.php/3483931/SQL-Server-2005-Security---Part-3-Encryption.htm" rel="nofollow">it supports native asymmetric encryption</a>. But if you're trying to stop a determined hacker, then I think the best option would be to encrypt the whole disk using something like <a href="http://www.truecrypt.org/" rel="nofollow">TrueCrypt</a>, or <a href="http://www.microsoft.com/windows/windows-vista/features/bitlocker.aspx" rel="nofollow">BitLocker</a> for Vista/Windows7. </p> http://stackoverflow.com/questions/1668395/reset-sql-server-execution-plan/1668467#1668467 0 Answer by RoadWarrior for Reset SQL Server execution plan RoadWarrior 2009-11-03T16:29:16Z 2009-11-03T16:29:16Z <p>It's not entirely clear from your question what you're after. But in addition to the other suggestions, DBCC FREEPROCCACHE clears all cached execution plans.</p> http://stackoverflow.com/questions/197139/fair-contract-salary-compared-to-permanent-salary/197341#197341 2 Answer by RoadWarrior for Fair Contract salary compared to permanent salary RoadWarrior 2008-10-13T11:59:49Z 2009-11-03T04:19:05Z <p>A rule of thumb is that somebody working as a contractor should receive between 50% and 100% more than what (s)he would receive as a permie. If the permie is eligible for a bonus, then that number should move nearer to 100%.</p> <p>[Edited after the down-vote to add the all-important "more".]</p> http://stackoverflow.com/questions/494721/what-are-some-good-resources-for-writing-a-chess-engine/502029#502029 9 Answer by RoadWarrior for What are some good resources for writing a chess engine? RoadWarrior 2009-02-02T02:19:22Z 2009-10-31T15:27:27Z <p>From my archives:</p> <ul> <li>This is a useful <a href="http://chessprogramming.wikispaces.com/" rel="nofollow">chess programming wiki</a>.</li> <li>This is a <a href="http://www.gamedev.net/reference/programming/features/chess1/" rel="nofollow">simple introduction</a> to chess programming.</li> <li>This is a <a href="http://www.frayn.net/beowulf/theory.html" rel="nofollow">more advanced introduction</a>.</li> <li>This is <a href="http://www.chessbin.com/" rel="nofollow">Adam Berent's interesting computer chess blog</a>.</li> <li>This is a <a href="http://www.cs.vu.nl/~aske/mtdf.html" rel="nofollow">good analysis of MTD</a>, a sophisticated search algorithm.</li> <li>This is a good guide to <a href="http://mediocrechess.blogspot.com/2007/01/guide-perft-scores.html" rel="nofollow">validation of move generation</a>.</li> <li>This describes the <a href="http://www.npac.syr.edu/copywrite/pcw/node341.html" rel="nofollow">basic architecture of a chess program</a>.</li> <li>This is lots of <a href="http://people.csail.mit.edu/heinz/dt/" rel="nofollow">good information on the Dark Thought</a> chess program.</li> <li>These are <a href="http://www.maths.nott.ac.uk/personal/anw/G13GT1/compch.html" rel="nofollow">more notes on chess programming</a>.</li> <li>A reasonable <a href="http://www.cis.uab.edu/hyatt/bitmaps.html" rel="nofollow">introduction to rotated bitboards</a>.</li> <li>Here is an old report from <a href="http://www.csbruce.com/~csbruce/chess/" rel="nofollow">2 students who wrote a chess program</a>.</li> <li>A bunch of <a href="http://www.lkessler.com/cclinks.shtml" rel="nofollow">miscellaneous chess programming links</a>.</li> <li>Finally, here is <a href="http://en.wikipedia.org/wiki/Computer_chess" rel="nofollow">Wikipedia's take on computer chess</a>.</li> </ul> http://stackoverflow.com/questions/599745/most-daunting-error-message/1632423#1632423 0 Answer by RoadWarrior for Most daunting error message? RoadWarrior 2009-10-27T17:32:56Z 2009-10-27T17:32:56Z <p>Daunting <a href="http://en.wikipedia.org/wiki/Standard_ML" rel="nofollow">SML</a> compiler error: <a href="http://stackoverflow.com/questions/324612/understanding-the-type-error-expected-signature-intint-int-but-got-intint-i">Expected signature Int * Int->Int but got Int * Int->Int</a>. </p> http://stackoverflow.com/questions/1603798/high-order-function-approach-for-exceptions-in-c/1603845#1603845 -1 Answer by RoadWarrior for High Order Function Approach for Exceptions in C# RoadWarrior 2009-10-21T21:45:13Z 2009-10-21T22:30:40Z <p>If I've understood what you're trying to do, then it feels horrible to me as a standard error management pattern. That's a warning sign right there, as it took me a while to grasp your idea.</p> <p>Unless there's a good reason, code should be explicitly available in the method for any maintenance developer to view and modify, not passed around from other locations. Just because a feature exists doesn't mean that it's useful in most situations. In this case, I can't see any benefit from the obfuscation.</p> <p>BTW, I think you're <a href="http://blogs.msdn.com/fxcop/archive/2006/06/14/631923.aspx" rel="nofollow">nailing the corpse to the wall by catching System.Exception</a>. The normal rule is not to catch an exception unless you know what the exception is and/or you need to know the exception detail for some reason. </p> <p>A commonly-used pattern for recovery in the event of an unknown exception looks something like this:</p> <pre><code>bool exceptionHappened = true; try { alternatePreviewImage.SetSource(fs); exceptionHappened = false; } finally { if ( exceptionHappened ) { requiresSpecialPreview = false; etc; } } </code></pre> http://stackoverflow.com/questions/1585945/where-to-find-small-programming-contracts-in-the-uk-if-possible/1586072#1586072 0 Answer by RoadWarrior for Where to find small programming contracts (in the UK if possible)? RoadWarrior 2009-10-18T21:25:48Z 2009-10-18T21:25:48Z <p>In the UK, <a href="http://www.jobserve.com/IT_Jobs.htm" rel="nofollow">Jobserve</a> is <strong>the</strong> site for both contractors and permies.</p> http://stackoverflow.com/questions/1586049/how-to-understand-business-side-of-software/1586059#1586059 2 Answer by RoadWarrior for How to understand Business side of Software ? RoadWarrior 2009-10-18T21:15:09Z 2009-10-18T21:15:09Z <p>Jeff Moser wrote a <a href="http://www.moserware.com/2009/07/just-enough-mba-to-be-programmer.html" rel="nofollow">really good essay about software and business</a>.</p> <p>From my own experience, it's about understanding what motivates people, and about understanding the fine details of a specific business model.</p> http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1567023#1567023 3 Answer by RoadWarrior for Most horrifying line of code you have ever seen? RoadWarrior 2009-10-14T15:19:29Z 2009-10-14T15:19:29Z <pre><code>while (true == true); </code></pre> http://stackoverflow.com/questions/1530415/message-bus-design-support-implicit-ordering-of-messages 2 Message bus design - support implicit ordering of messages? RoadWarrior 2009-10-07T09:04:31Z 2009-10-07T09:40:34Z <p>One important design decision that needs to be made when designing a corporate message bus is whether (and how) the message bus should support implicit ordering of messages. By implicit ordering, I mean the ability to deliver messages in exactly the same order as they were sent.</p> <p>There are several options:</p> <ul> <li><a href="http://web.mit.edu/Saltzer/www/publications/endtoend/endtoend.pdf" rel="nofollow">Don't support implicit message ordering</a> at all. Messages are not guaranteeed to be delivered in the same order they were sent. Any business process that needs message ordering has to provide an explicit order within each message. This option simplifies message bus architecture, enables better scalability and recovery, and forces applications to adopt explicit message ordering.</li> <li>Have an optional layer in the message bus (above the transport layer) that provides messsage ordering only for those business processes that require it. This keeps the transport layer simple and scalable, but also gives the benefit of message order where appropriate. This is a similar design to FIX (which provides ordering) and FIXT (which doesn't provide ordering).</li> <li>Build implicit ordering directly into the transport layer of the bus. This removes the need for a separate ordering layer, but hinders scalability and recovery scenarios.</li> </ul> <p>As an architect of a message bus, or as a developer who might use a message bus, which option do you prefer and why?</p> http://stackoverflow.com/questions/722675/implementing-a-message-bus-architecture/1530493#1530493 0 Answer by RoadWarrior for Implementing a Message Bus architecture RoadWarrior 2009-10-07T09:23:16Z 2009-10-07T09:23:16Z <p>Sorry, coming very late to this, but hopefully my answer is useful. </p> <p>Both <a href="http://msdn.microsoft.com/en-us/library/ms789048.aspx" rel="nofollow">WCF Queuing</a> and System.Messaging are wrappers over the MSMQ APIs. WCF is more sophisticated, with the following benefits:</p> <ul> <li>An OO view of your application's business processes rather than its communication plumbing.</li> <li>End-to-end message encryption and authentication for free. System.Messaging only supports encryption on the wire, not in the store.</li> <li>Hosting within IIS, rather than having to build your own custom host.</li> <li>Message correlation for free. This allows you to group messages into sessions automatically.</li> <li>Transactional batching for free.</li> </ul> http://stackoverflow.com/questions/1526520/good-book-about-threading-in-net/1526736#1526736 0 Answer by RoadWarrior for Good book about threading in .Net RoadWarrior 2009-10-06T16:39:27Z 2009-10-06T16:39:27Z <p>Not a book, but a free <a href="http://www.apress.com/resource/bookfile/919" rel="nofollow">chapter about multi-threading</a> from my VB.NET book. But be aware that this is for .NET 1.1, so it doesn't have coverage of later stuff such as the BackgroundWorker type. </p> http://stackoverflow.com/questions/273396/aes-encryption-what-are-public-and-private-keys/273709#273709 9 Answer by RoadWarrior for AES encryption, what are public and private keys? RoadWarrior 2008-11-07T21:33:16Z 2009-09-30T12:00:55Z <p>As others have said, AES is a symmetric algorithm (<a href="http://en.wikipedia.org/wiki/Symmetric-key_algorithm" rel="nofollow">private-key cryptography</a>). This involves a <strong>single</strong> key which is a shared secret between the sender and recipient. An analogy is a locked box. Anybody who wants to leave or read a message needs to have a key to the box. If you really want to know the gory details of AES, there's a <a href="http://www.moserware.com/2009/09/stick-figure-guide-to-advanced.html" rel="nofollow">superb cartoon</a> to guide you along the way.</p> <p><a href="http://en.wikipedia.org/wiki/Public-key_cryptography" rel="nofollow">Public-key cryptography</a> involves <strong>two</strong> related keys for each recipient involved - a private key which is a secret known only by the recipient, and a related public key which is known by all senders. </p> <p>The sender encrypts the message using the recipient's public key. That message can only be decrypted by a recipient with a private key matching the public key.</p> <p>An analogy for public-key encryption is a locked mailbox with a mail slot. The mail slot is exposed and accessible to the public. Its location (the street address) is the public key. Anyone knowing the street address can go to the door and drop a written message through the slot. But only the person who possesses the key can open the mailbox and read the message.</p> http://stackoverflow.com/questions/1492421/predicting-the-length-of-an-encrypted-string/1492581#1492581 0 Answer by RoadWarrior for Predicting the length of an encrypted string RoadWarrior 2009-09-29T13:32:02Z 2009-09-30T11:24:12Z <p>If you look at the "Test vectors" section in the <a href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard" rel="nofollow">Wikipedia page on Rijndael</a>, you can see typical output size (dependent on block size) for a specific input.</p> http://stackoverflow.com/questions/1476677/client-wants-extremely-badly-designed-website/1476791#1476791 28 Answer by RoadWarrior for Client wants extremely badly designed website RoadWarrior 2009-09-25T11:31:39Z 2009-09-25T11:31:39Z <p>Craigslist.com is one of the most visited websites on the planet. Yet its UI is appalling by most modern aesthetics. </p> <p>This isn't a technical issue, but a business issue. You need to sit down with your business partner and put forward your point of view convincingly. If you're going to work with her in the long term, then you both need to find a way of resolving issues and coming to a compromise. Look at this dispute as a warning sign about the business relationship.</p> http://stackoverflow.com/questions/1459288/explicit-or-implicit-execution-control-statement-use/1459316#1459316 2 Answer by RoadWarrior for Explicit or implicit execution control statement use RoadWarrior 2009-09-22T10:37:08Z 2009-09-22T10:37:08Z <p>First and second options are equivalent to the compiler. But to a human reading the code, the first option is definitely more clear about the intent, and easier to read. </p> <p>There are limits to what a human reader can absorb from thousands of lines of text designed primarily to function, not to convey meaning. Every tiny effort that makes the task easier is good.</p> http://stackoverflow.com/questions/1438507/methodologies-for-change-proof-development-in-agile-environment/1438547#1438547 0 Answer by RoadWarrior for Methodologies for Change-Proof Development in Agile Environment RoadWarrior 2009-09-17T12:26:23Z 2009-09-17T12:26:23Z <p>I think what you're looking for is some sort of <a href="http://en.wikipedia.org/wiki/Finite-state_machine" rel="nofollow">finite state machine</a>. </p> <p>But these are typically used for internal state, not to handle arbitrary changes to the requirements. Maybe some sort of <a href="http://en.wikipedia.org/wiki/UML_state_machine" rel="nofollow">UML state machine</a> might be useful here. </p> http://stackoverflow.com/questions/1438356/how-application-object-is-shared-to-users/1438428#1438428 0 Answer by RoadWarrior for how application object is shared to users RoadWarrior 2009-09-17T12:04:57Z 2009-09-17T12:04:57Z <p>Application state is a data repository available to all classes in an ASP.NET application. This repository is stored in memory on the web server. Unlike session state, which is specific to a single user session, application state applies to all users and sessions. </p> <p>As to how it's stored, that's in an instance of the HttpApplicationState class. This class exposes a key-value dictionary of objects, and an instance of this class is created the first time a user accesses any URL resource in the web application. </p> <p>The most common way for a developer to access this stored state is through the Application property of the HttpContext class.</p> http://stackoverflow.com/questions/274374/the-most-significant-project-management-mistakes 27 The most significant project management mistakes RoadWarrior 2008-11-08T04:50:56Z 2009-09-14T14:13:31Z <p>What would you say are the most significant mistakes made by a typical project manager?</p> <p>By "most significant", I mean with a large negative impact on the project. And the context is line-of-business projects, where software isn't the main product of the organization.</p> <p>For each mistake you discuss, it would be great if you could note the most likely cause and best solution related to that mistake.</p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/236736#236736 657 Answer by RoadWarrior for What is your best programmer joke? RoadWarrior 2008-10-25T17:43:16Z 2009-09-10T15:49:17Z <p>Saying that Java is nice because it works on every OS is like saying that anal sex is nice because it works on every gender.</p> http://stackoverflow.com/questions/1321615/what-are-multi-threading-dos-and-donts/1322057#1322057 2 Answer by RoadWarrior for What are multi-threading DOs and DONTs? RoadWarrior 2009-08-24T12:24:47Z 2009-08-24T12:24:47Z <p>-- What are some known thread issues? --</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Race_condition" rel="nofollow">Race conditions</a>.</li> <li><a href="http://en.wikipedia.org/wiki/Deadlock" rel="nofollow">Deadlocks</a>.</li> <li><a href="http://en.wikipedia.org/wiki/Livelock#Livelock" rel="nofollow">Livelocks</a>.</li> <li><a href="http://java.sun.com/docs/books/tutorial/essential/concurrency/starvelive.html" rel="nofollow">Thread starvation</a>.</li> </ul> <p>-- What care should be taken while using threads? --</p> <p>Using multi-threading on a single-processor machine to process multiple tasks where each task takes approximately the same time isn’t always very effective.For example, you might decide to spawn ten threads within your program in order to process ten separate tasks. If each task takes approximately 1 minute to process, and you use ten threads to do this processing, you won’t have access to any of the task results for the whole 10 minutes. If instead you processed the same tasks using just a single thread, you would see the first result in 1 minute, the next result 1 minute later, and so on. If you can make use of each result without having to rely on all of the results being ready simultaneously, the single thread might be the better way of implementing the program.</p> <p>If you launch a large number of threads within a process, the overhead of thread housekeeping and context switching can become significant. The processor will spend considerable time in switching between threads, and many of the threads won’t be able to make progress. In addition, a single process with a large number of threads means that threads in other processes will be scheduled less frequently and won’t receive a reasonable share of processor time.</p> <p>If multiple threads have to share many of the same resources, you’re unlikely to see performance benefits from multi-threading your application. Many developers see multi-threading as some sort of magic wand that gives automatic performance benefits. Unfortunately multi-threading isn’t the magic wand that it’s sometimes perceived to be. If you’re using multi-threading for performance reasons, you should measure your application’s performance very closely in several different situations, rather than just relying on some non-existent magic.</p> <p>Coordinating thread access to common data can be a big performance killer. Achieving good performance with multiple threads isn’t easy when using a coarse locking plan, because this leads to low concurrency and threads waiting for access. Alternatively, a fine-grained locking strategy increases the complexity and can also slow down performance unless you perform some sophisticated tuning.</p> <p>Using multiple threads to exploit a machine with multiple processors sounds like a good idea in theory, but in practice you need to be careful. To gain any significant performance benefits, you might need to get to grips with thread balancing.</p> <p>-- Please provide examples. --</p> <p>For example, imagine an application that receives incoming price information from the network, aggregates and sorts that information, and then displays the results on the screen for the end user. </p> <p>With a dual-core machine, it makes sense to split the task into, say, three threads. The first thread deals with storing the incoming price information, the second thread processes the prices, and the final thread handles the display of the results. </p> <p>After implementing this solution, suppose you find that the price processing is by far the longest stage, so you decide to rewrite that thread’s code to improve its performance by a factor of three. Unfortunately, this performance benefit in a single thread may not be reflected across your whole application. This is because the other two threads may not be able to keep pace with the improved thread. If the user interface thread is unable to keep up with the faster flow of processed information, the other threads now have to wait around for the new bottleneck in the system.</p> <p>And yes, this example comes directly from my own experience :-)</p> http://stackoverflow.com/questions/242293/are-you-a-good-or-bad-programmer/260598#260598 2 Answer by RoadWarrior for Are you a good or bad programmer? RoadWarrior 2008-11-04T02:07:53Z 2009-08-24T07:56:18Z <p>Some days I <a href="http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem?answer=239915#239915">walk on water</a>, other days I pass water <a href="http://stackoverflow.com/questions/249567/algorithm-to-avoid-sql-injection-on-mssql-server-from-c-code#249882">when I see what I've done</a>. </p> <p>I suspect that matter how good you are as a developer, you're always spending some part of your working day writing crap. All you can do is to try to improve by gaining small victories over yourself. There must be contests, and you must win.</p> http://stackoverflow.com/questions/618335/unable-to-debug-sql-server-2005-stored-procedures-in-visual-studio-team-system-20/1301111#1301111 1 Answer by RoadWarrior for Unable to debug SQL Server 2005 stored procedures in Visual Studio Team System 2008 RoadWarrior 2009-08-19T16:29:51Z 2009-08-19T16:29:51Z <p>One issue to investigate is that any SQL Server user account involved in SQL debugging must have "execute" rights on an extended stored procedure called sp_sdidebug, a right that only the system administrator account (sa) has by default.</p> <p>To check this, use the account to log into SQL Server and then type the following SQL command using SQL Server Management Studio:</p> <pre><code>EXEC master..sp_sdidebug </code></pre> <p>You’ll see either a result stating that the command completed successfully or an execute permission error. If you see the latter result, you should also check that the account has permission to the master database itself. It’s not unknown for a DBA to give permission to the stored procedure, but not to the master database.</p> <p>The quickest way to grant execution rights for a SQL Server account to sp_sdidebug is to enter the following SQL:</p> <pre><code>GRANT EXECUTE ON master..sp_sdidebug TO SpecificAccountName </code></pre> <p>There's another issue, but it won't affect you as you're using Server Explorer. If you're debugging from a client application, you also have to execute the following command:</p> <pre><code>EXEC master..sp_sdidebug 'legacy_on' </code></pre> <p>Note that remote SQL Server debugging is done using the DCOM, and this can be tricky to configure properly. First, you need to install the full remote debugging components on the remote database server. You may also need to repeat this process every time the SQL Server is upgraded with a service pack or a patch.</p> http://stackoverflow.com/questions/41842/pdb-files-for-production-app-and-the-optimize-code-flag/96261#96261 4 Answer by RoadWarrior for PDB files for production app and the "Optimize code" flag RoadWarrior 2008-09-18T19:55:11Z 2009-08-19T09:09:27Z <p>To answer your first question, you only need to include PDBs for a production release if you need line numbers for your exception reports. </p> <p>To answer your second question, using the "Optimise" flag with PDBs means that any <a href="http://tinyurl.com/6khhkq" rel="nofollow">stack "collapse" will be reflected in the stack trace</a>. I'm not sure whether the actual line number reported can be wrong - this needs more investigation.</p> <p>To answer your third question, you can have the best of both worlds with a rather neat trick. The major differences between the default debug build and default release build are that when doing a default release build, optimization is turned on and debug symbols are not emitted. So:</p> <p>Step 1: Change your release config to emit debug symbols. This has virtually no effect on the performance of your app, and is very useful if (when?) you need to debug a release build of your app.</p> <p>Step 2: Compile using your new release build config, i.e. <em>with</em> debug symbols and <em>with</em> optimization. Note that 99% of code optimization is done by the JIT compiler, not the language compiler.</p> <p>Step 3: Create a text file in your app's folder called xxxx.exe.ini (or dll or whatever), where xxxx is the name of your executable. This text file should initially look like:</p> <p>[.NET Framework Debugging Control]</p> <p>GenerateTrackingInfo=0</p> <p>AllowOptimize=1</p> <p>Step 4: With these settings, your app runs at full speed. When you want to debug your app by turning on debug tracking and possibly turning off (CIL) code optimization, just use the following settings:</p> <p>[.NET Framework Debugging Control]</p> <p>GenerateTrackingInfo=1</p> <p>AllowOptimize=0 </p> <p>NB This doesn't work in a hosted environment, e.g. ASP.NET.</p> http://stackoverflow.com/questions/1148727/how-hard-is-it-to-implement-a-chess-engine/1232962#1232962 1 Answer by RoadWarrior for How hard is it to implement a chess engine? RoadWarrior 2009-08-05T12:31:29Z 2009-08-05T12:31:29Z <p>Yes, this is definitely within the scope of a student project. Here are some links from my archive to get you started:</p> <ul> <li>This is a useful <a href="http://chessprogramming.wikispaces.com/" rel="nofollow">chess programming wiki</a>.</li> <li>This is a <a href="http://www.gamedev.net/reference/programming/features/chess1/" rel="nofollow">simple introduction</a> to chess programming.</li> <li>This is a <a href="http://www.frayn.net/beowulf/theory.html" rel="nofollow">more advanced introduction</a>.</li> <li>This is a <a href="http://www.cs.vu.nl/~aske/mtdf.html" rel="nofollow">good analysis of MTD</a>, a sophisticated search algorithm.</li> <li>This is a good guide to <a href="http://mediocrechess.blogspot.com/2007/01/guide-perft-scores.html" rel="nofollow">validation of move generation</a>.</li> <li>This describes the <a href="http://www.npac.syr.edu/copywrite/pcw/node341.html" rel="nofollow">basic architecture of a chess program</a>.</li> <li>This is lots of <a href="http://people.csail.mit.edu/heinz/dt/" rel="nofollow">good information on the Dark Thought</a> chess program.</li> <li>These are <a href="http://www.maths.nott.ac.uk/personal/anw/G13GT1/compch.html" rel="nofollow">more notes on chess programming</a>.</li> <li>A reasonable <a href="http://www.cis.uab.edu/hyatt/bitmaps.html" rel="nofollow">introduction to rotated bitboards</a>.</li> <li>Here is an old report from <a href="http://www.csbruce.com/~csbruce/chess/" rel="nofollow">2 students who wrote a chess program</a>.</li> <li>Finally, here is <a href="http://en.wikipedia.org/wiki/Computer_chess" rel="nofollow">Wikipedia's take on computer chess</a>.</li> </ul> http://stackoverflow.com/questions/1232837/error-in-vb-net-windows-service-when-connecting-to-sql/1232910#1232910 0 Answer by RoadWarrior for Error in vb.net windows service when connecting to SQL RoadWarrior 2009-08-05T12:22:57Z 2009-08-05T12:22:57Z <p>There will probably be an unhandled managed exception associated with this event. If details about that exception don't appear in the event log, you can create a last-chance filter that intercepts any unhandled exception and then logs it wherever you wish.</p> <p>To do this, first add this line early in your service start-up code:</p> <pre><code>AddHandler Application.ThreadException, AddressOf LogException </code></pre> <p>Then create the logging procedure:</p> <pre><code>Private Sub LogException(ByVal sender As Object, _ ByVal e As System.Threading.ThreadExceptionEventArgs) 'This method will be called by any unhandled managed exception, assuming 'that a debugger isn’t attached. You should log the exception here. End Sub </code></pre> http://stackoverflow.com/questions/699173/clickonce-deployment-errors/926846#926846 0 Answer by RoadWarrior for ClickOnce Deployment Errors RoadWarrior 2009-05-29T16:13:47Z 2009-08-04T15:39:03Z <p>The second posting by Munirul Abedin <a href="http://social.msdn.microsoft.com/Forums/en-US/winformssetup/thread/9e4b714e-bad4-4c62-a7ad-3c80e32d95eb" rel="nofollow">on this page</a> might be relevant. Also maybe the Feb 22 post by the same author.</p> http://stackoverflow.com/questions/1603798/high-order-function-approach-for-exceptions-in-c/1603845#1603845 Comment by RoadWarrior on High Order Function Approach for Exceptions in C# RoadWarrior 2009-12-11T16:45:09Z 2009-12-11T16:45:09Z The issue with catching an exception where you don't need to do so is that you then either have to swallow the exception (usually not good) or you have to rethrow it. Catch-rethrow disturbs the exception double-pass mechanism, and therefore gives a miserable debugging experience. http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312531#312531 Comment by RoadWarrior on Language features you should never use? RoadWarrior 2009-11-27T11:40:19Z 2009-11-27T11:40:19Z Yup, that's exactly what my last sentence says :-) http://stackoverflow.com/questions/413985/commenting-try-catch-statements/414010#414010 Comment by RoadWarrior on Commenting try catch statements RoadWarrior 2009-11-04T16:21:49Z 2009-11-04T16:21:49Z We'll have to agree to disagree. I write a lot of comments, and I don't suspect that's going to change in the future. http://stackoverflow.com/questions/1643365/why-no-love-for-sql/1643867#1643867 Comment by RoadWarrior on Why no love for SQL? RoadWarrior 2009-11-02T12:27:19Z 2009-11-02T12:27:19Z Well, I've run a business, and it's never 10K versus 1. IMX, it's more akin to 20 unknown for every 100 known (the pareto principle). And some of those 20 owed us a lot of money, which was actually why the actual amount was in dispute. Again, this is the pareto principle. http://stackoverflow.com/questions/1643365/why-no-love-for-sql/1643867#1643867 Comment by RoadWarrior on Why no love for SQL? RoadWarrior 2009-10-29T23:02:54Z 2009-10-29T23:02:54Z But management wouldn't see a &quot;close if not certain number&quot; - they would see a wrong number. Maybe that final customer owes a <i>lot</i> of money. Then management would be very unhappy about that wrong number. http://stackoverflow.com/questions/1609489/how-can-one-improve-their-architecture-skills/1609498#1609498 Comment by RoadWarrior on How can one improve their Architecture skills ? RoadWarrior 2009-10-22T19:44:16Z 2009-10-22T19:44:16Z The title only mentions architecture, but the question mentions architecture and coding. http://stackoverflow.com/questions/1509020/while-comparing-a-table-column-value-from-other-database-table-column-value-pro Comment by RoadWarrior on while comparing a table column value from other database table column value problem RoadWarrior 2009-10-02T11:48:18Z 2009-10-02T11:48:18Z What error are you receiving? http://stackoverflow.com/questions/1492421/predicting-the-length-of-an-encrypted-string/1492581#1492581 Comment by RoadWarrior on Predicting the length of an encrypted string RoadWarrior 2009-09-30T11:23:47Z 2009-09-30T11:23:47Z Thanks - I corrected my answer. http://stackoverflow.com/questions/1486342/where-to-put-the-sql-logic Comment by RoadWarrior on Where to put the SQL logic RoadWarrior 2009-09-28T13:26:52Z 2009-09-28T13:26:52Z The performance may not be the same, as SQL Server caches ad-hoc SQL in a different way to stored procedure SQL. See my answer here for more details: <a href="http://stackoverflow.com/questions/274411/do-stored-procedures-really-boost-performance-in-ms-sql-net/275010#275010" rel="nofollow" title="do stored procedures really boost performance in ms sql net">stackoverflow.com/questions/274411/&hellip;</a> http://stackoverflow.com/questions/1438356/how-application-object-is-shared-to-users Comment by RoadWarrior on how application object is shared to users RoadWarrior 2009-09-17T12:06:01Z 2009-09-17T12:06:01Z Please see my answer below. http://stackoverflow.com/questions/1438356/how-application-object-is-shared-to-users Comment by RoadWarrior on how application object is shared to users RoadWarrior 2009-09-17T11:54:17Z 2009-09-17T11:54:17Z Are you talking about the ASP Application object or the ASP.NET HttpApplication class? And what do you mean by &quot;shared to users&quot;? http://stackoverflow.com/questions/250713/sqldataadapter-fill-method-slow/250961#250961 Comment by RoadWarrior on SqlDataAdapter.Fill method slow RoadWarrior 2009-09-15T14:52:27Z 2009-09-15T14:52:27Z It's on a recurring basis, as these are cached results and plans that will gradually accumulate. http://stackoverflow.com/questions/436211/is-everything-in-net-an-object/436218#436218 Comment by RoadWarrior on Is everything in .NET an object? RoadWarrior 2009-09-11T12:56:16Z 2009-09-11T12:56:16Z I corrected the section on inheritance. The following C# types do NOT derive from System.Object: interfaces, pointers, type parameters. http://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change/545920#545920 Comment by RoadWarrior on Biggest performance improvement you've had with the smallest change? RoadWarrior 2009-09-03T08:55:28Z 2009-09-03T08:55:28Z @Chris: Enron Europe was quite profitable, especially after electricity de-regulation in the UK. But then the US cut all funding... http://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change/545920#545920 Comment by RoadWarrior on Biggest performance improvement you've had with the smallest change? RoadWarrior 2009-09-03T08:53:13Z 2009-09-03T08:53:13Z @Kyralessa: It was the Compuware one - this was a while ago. Nowadays I use the Ants profiler.