User thijs - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T14:56:53Zhttp://stackoverflow.com/feeds/user/26796http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/163531/set-asp-net-version-using-wix/200438#2004386Answer by thijs for Set ASP.Net version using WiXthijs2008-10-14T08:57:18Z2009-11-24T05:04:02Z<p>We use this:</p>
<p>First determine the .Net framework root directory from the registry:</p>
<pre><code><Property Id="FRAMEWORKROOT">
<RegistrySearch Id="FrameworkRootDir" Root="HKLM"
Key="SOFTWARE\Microsoft\.NETFramework"
Type="directory" Name="InstallRoot" />
</Property>
</code></pre>
<p>Then, inside the component that installs your website in IIS:</p>
<pre><code><!-- Create and configure the virtual directory and application. -->
<Component Id='WebVirtualDirComponent' Guid='{GUID}' Permanent='no'>
<iis:WebVirtualDir Id='WebVirtualDir' Alias='YourAlias' Directory='InstallDir' WebSite='DefaultWebSite' DirProperties='DirProperties'>
<iis:WebApplication Id='WebApplication' Name='YourAppName' WebAppPool='AppPool'>
<!-- Required to run the application under the .net 2.0 framework -->
<iis:WebApplicationExtension Extension="config" CheckPath="yes" Script="yes"
Executable="[FRAMEWORKROOT]v2.0.50727\aspnet_isapi.dll" Verbs="GET,HEAD,POST" />
<iis:WebApplicationExtension Extension="resx" CheckPath="yes" Script="yes"
Executable="[FRAMEWORKROOT]v2.0.50727\aspnet_isapi.dll" Verbs="GET,HEAD,POST" />
<iis:WebApplicationExtension Extension="svc" CheckPath="no" Script="yes"
Executable="[FRAMEWORKROOT]v2.0.50727\aspnet_isapi.dll" Verbs="GET,HEAD,POST" />
</iis:WebApplication>
</iis:WebVirtualDir>
</Component>
</code></pre>
<p>For an x64 installer (<strong>THIS IS IMPORTANT</strong>)
Add Win64='yes' to the registry search, because the 32 bits environment on a 64 bits machine has a different registry hive (and a different frameworkroot)</p>
<pre><code><RegistrySearch Id="FrameworkRootDir" Root="HKLM"
Key="SOFTWARE\Microsoft\.NETFramework"
Type="directory"
Name="InstallRoot" Win64='yes' />
</code></pre>
http://stackoverflow.com/questions/1660194/limited-user-premissions-in-team-foundation-server/1660329#16603290Answer by thijs for Limited user premissions in team foundation serverthijs2009-11-02T09:54:19Z2009-11-02T09:54:19Z<p>You can make different team projects for the different types of users.</p>
http://stackoverflow.com/questions/1660259/how-to-browse-and-view-files-stored-in-a-team-foundation-server-without-using-vis/1660316#16603161Answer by thijs for How to browse and view files stored in a Team Foundation Server without using Visual Studio thijs2009-11-02T09:52:24Z2009-11-02T09:52:24Z<p>You can use the TFS Web Access (most likely at your tfs server, http, port 8090 (<a href="http://server:8090/" rel="nofollow">http://server:8090/</a>)</p>
http://stackoverflow.com/questions/1577031/what-does-this-function-do/1577040#15770402Answer by thijs for What does this function do?thijs2009-10-16T09:18:48Z2009-10-16T09:18:48Z<p>it multiplies each element of the array "a" with itself and stores the results back in the array.</p>
http://stackoverflow.com/questions/1571713/querystring-in-s3-key/1572054#15720541Answer by thijs for Querystring in S3-Keythijs2009-10-15T12:26:18Z2009-10-15T12:26:18Z<p>Did you try urlencoding your request?</p>
<p>Use %3F instead of the "?"</p>
http://stackoverflow.com/questions/1536326/which-one-is-faster/1536359#15363592Answer by thijs for Which one is faster?thijs2009-10-08T08:14:38Z2009-10-08T08:14:38Z<p>Check the execution plan for both queries, draw your conclusions from that.</p>
http://stackoverflow.com/questions/1330852/where-to-download-visual-studio-express-2005/1364104#13641040Answer by thijs for Where to download visual studio express 2005?thijs2009-09-01T19:05:33Z2009-09-01T19:05:33Z<p>You can still get it, from microsoft servers, see my answer on this question:
<a href="http://stackoverflow.com/questions/780741/where-is-visual-studio-2005-express-at/780822#780822">http://stackoverflow.com/questions/780741/where-is-visual-studio-2005-express-at/780822#780822</a></p>
http://stackoverflow.com/questions/1353458/a-clickonce-deployed-application-is-installed-only-for-the-specific-user/1353468#13534680Answer by thijs for A clickonce deployed application is installed only for the specific user?thijs2009-08-30T09:03:18Z2009-08-30T09:03:18Z<p>See this page at microsoft.com, it has a table with differences between windows installer and Clickonce:
<a href="http://msdn.microsoft.com/en-us/library/ms973805.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms973805.aspx</a></p>
http://stackoverflow.com/questions/1001543/in-vs-join-with-large-rowsets/1001644#10016441Answer by thijs for IN vs. JOIN with large rowsetsthijs2009-06-16T13:55:32Z2009-06-16T13:55:32Z<p>Observe the execution plan for both types and draw your conclusions. Unless the number of records returned by the subquery in the "IN" statement is very small, the IN variant is almost certainly slower.</p>
http://stackoverflow.com/questions/980090/google-indexed-my-test-folders-on-my-website-how-do-i-restrict-the-web-crawler/980119#9801192Answer by thijs for Google indexed my test folders on my website :( How do I restrict the web crawlers!thijs2009-06-11T09:15:35Z2009-06-11T09:15:35Z<p>Beware! You can tell "nice" bots (like google) to stay away from certain places, but other bots don't play that nice. So the only way to solve this properly is to add some restrictions to the places that are not considered "public". You could restrict access to some IP addresses you trust, or you could add username/password authentication.</p>
http://stackoverflow.com/questions/979783/breakpoints-not-working-in-visual-studio-2008/979890#9798901Answer by thijs for Breakpoints not working in Visual Studio 2008 thijs2009-06-11T08:00:48Z2009-06-11T08:00:48Z<p>Are you building in Debug mode? Release builds don't support breakpoints...</p>
http://stackoverflow.com/questions/968441/should-we-hire-someone-who-writes-c-in-perl/968499#9684995Answer by thijs for Should we hire someone who writes C in Perl?thijs2009-06-09T06:41:08Z2009-06-10T00:06:11Z<p>Does it work?
Did he write it in an acceptable period of time?
Do you think it's maintainable?</p>
<p>If you can answer me these questions three, they you may pass the bridge of death (<a href="http://www.youtube.com/watch?v=4b4bGAoVR7g" rel="nofollow">*</a>).</p>
http://stackoverflow.com/questions/969447/can-vs-2008-code-be-opened-in-any-other-tool/969461#9694612Answer by thijs for Can VS 2008 code be opened in any other tool?thijs2009-06-09T11:19:48Z2009-06-09T11:19:48Z<p>All (most) files are just text, so you can open almost everything with Notepad(++). As long as you don't destroy the file structure you'll be fine.</p>
http://stackoverflow.com/questions/969031/programaticly-move-mouse-in-vmware-c/969411#9694110Answer by thijs for Programaticly Move Mouse in VMWare C#thijs2009-06-09T11:09:28Z2009-06-09T11:17:42Z<p>Don't focus the VM with your real mouse. Or uninstall the VMWare mouse driver so the VM doesn't get the focus unless you click inside it.</p>
http://stackoverflow.com/questions/969281/is-it-unwise-to-develop-a-financial-system-without-transactions-or-constraints/969403#9694031Answer by thijs for Is it unwise to develop a financial system without transactions or constraints?thijs2009-06-09T11:07:07Z2009-06-09T11:07:07Z<p>I'd love to use an ATM (or two) without db transactions on my account.</p>
<blockquote>
<p>ATM1: Retrieve current balance (1000)</p>
<p>ATM2: Retrieve current balance (1000)</p>
<p>Then I'd withdraw 750 bucks from both
of them...</p>
<p>ATM1: Substract 750 from 1000, save
250 as the current balance. </p>
<p>ATM2: Substract 750 from 1000, save 250 as
the current balance.</p>
<p>And there I am, holding 1500 in my
hands an still having a balance of
250.</p>
</blockquote>
<p>So is a financial system without (db) transactions bad, yes it might be!</p>
http://stackoverflow.com/questions/968804/serverless-database-in-c/968827#9688271Answer by thijs for Serverless Database in C#thijs2009-06-09T08:22:34Z2009-06-09T08:22:34Z<p>You could write your data to XML files, or you could take a look at the <a href="http://www.microsoft.com/Sqlserver/2008/en/us/compact.aspx" rel="nofollow">Sql Server Compact Edition</a>.</p>
<p>You could also work with objects and serialize/deserialize these to disk as binaries.</p>
<p>Of course the type of storage you choose depends a lot on the kind of data you're storing (and the volume of it).</p>
http://stackoverflow.com/questions/964881/should-we-avoid-clueless-customers/965012#9650120Answer by thijs for Should We Avoid Clueless Customers?thijs2009-06-08T13:49:57Z2009-06-08T13:49:57Z<p>Never bite the hand that feeds you! They do pay your salary, clue or not.</p>
http://stackoverflow.com/questions/964920/is-it-possible-to-reasonably-workaround-an-antivirus-scanning-the-working-directo/964947#9649471Answer by thijs for Is it possible to reasonably workaround an antivirus scanning the working directory?thijs2009-06-08T13:30:33Z2009-06-08T13:30:33Z<p>Could you change your application so you don't release the file handle? If you hold a lock on the file yourself the antivir application will not be able to scan it.</p>
<p>Otherwise a strategy such as yours will help, a bit, because it only reduces the probability but it doesn't solve the problem.</p>
http://stackoverflow.com/questions/964304/net-separate-assembly-obfuscation/964383#9643830Answer by thijs for .NET separate assembly obfuscation?thijs2009-06-08T11:06:53Z2009-06-08T11:06:53Z<p>You should obfuscate all .NET assemblies together, and you should not obfuscate any types that are externally exposed to others (Like another obfuscated program).</p>
<p>The obfuscation process renames types and all type references, but renaming of references doesn't work for your plugin structure.</p>
http://stackoverflow.com/questions/964107/check-procedures-performance/964124#9641240Answer by thijs for Check Procedures Performancethijs2009-06-08T09:49:07Z2009-06-08T09:49:07Z<p>Try installing the Sql Server Performance dashboard, that will give you a nice idea about what is happening on your server.</p>
<p>For Sql 2005: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=1d3a4a0d-7e0c-4730-8204-e419218c1efc&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyId=1d3a4a0d-7e0c-4730-8204-e419218c1efc&displaylang=en</a>
For Sql 2008: <a href="http://blogs.technet.com/rob/archive/2009/02/18/performance-dashboard-reports-for-sql-server-2008.aspx" rel="nofollow">http://blogs.technet.com/rob/archive/2009/02/18/performance-dashboard-reports-for-sql-server-2008.aspx</a></p>
<p>Of course, you should also look at the execution plan of your procedure. <a href="http://www.sql-server-performance.com/tips/query_execution_plan_analysis_p1.aspx" rel="nofollow">http://www.sql-server-performance.com/tips/query_execution_plan_analysis_p1.aspx</a></p>
http://stackoverflow.com/questions/925672/what-are-the-cool-and-interesting-things-that-you-do-during-build-automation/962063#9620630Answer by thijs for What are the cool and interesting things that you do during build-automation?thijs2009-06-07T15:10:26Z2009-06-07T15:10:26Z<p>We build BizTalk 2006 projects :)</p>
http://stackoverflow.com/questions/949852/determine-version-of-sql-server-from-ado-net/949855#9498553Answer by thijs for Determine version of SQL Server from ADO.NETthijs2009-06-04T10:59:22Z2009-06-04T10:59:22Z<p>Try </p>
<pre><code>Select @@version
</code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/ms177512%28SQL.90%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms177512(SQL.90).aspx</a></p>
http://stackoverflow.com/questions/938987/getting-all-static-interned-strings-from-a-net-assembly-dll/939098#9390982Answer by thijs for Getting all static (interned) strings from a .net assembly (dll)thijs2009-06-02T11:49:55Z2009-06-02T11:49:55Z<p>You should be able to do this using reflection, take a look at this:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.reflection.fieldinfo.isliteral.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.reflection.fieldinfo.isliteral.aspx</a></p>
<p>and</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.reflection.fieldinfo.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.reflection.fieldinfo.aspx</a></p>
http://stackoverflow.com/questions/402100/what-is-simple/939075#9390750Answer by thijs for What is "Simple"?thijs2009-06-02T11:44:54Z2009-06-02T11:44:54Z<p><a href="http://simple.wikipedia.org/wiki/Simple%5FEnglish" rel="nofollow">(Simple)Wikipedia</a> defines Simple English as </p>
<blockquote>
<p>"Simple English is similar to English,
but it only uses basic words."</p>
</blockquote>
<p>Using this you could say that Simple programming is similar to programming, but you can only use basic operators.</p>
<p>So, for example, this inline if could be considerd "not simple"</p>
<pre><code>bool isLarger = x > 3 ? true : false;
</code></pre>
<p>and the regular if would be "simple" because the regular if is more basic than the inline if</p>
<pre><code>if (x > 3)
{
return true;
}
else
{
return false;
}
</code></pre>
<p>Now of course we could debate about which operators are considered "basic" :)</p>
http://stackoverflow.com/questions/938975/is-a-program-with-just-variable-constants-still-a-program/938995#9389950Answer by thijs for is a program with just variable constants still a program?thijs2009-06-02T11:26:56Z2009-06-02T11:26:56Z<p>How precisely can constants be variable? (referring to your question title)</p>
<p>And what would a program containing just variables actually do?</p>
http://stackoverflow.com/questions/910511/net-or-winapi/910676#9106760Answer by thijs for .NET or WinAPIthijs2009-05-26T13:27:24Z2009-05-26T13:27:24Z<p>Writing native (unmanaged) code calling WinAPI will give you a smaller footprint without dependencies on the .NET framework.</p>
<p>But if you want a smaller .net framework deployment, take a look at the <a href="http://msdn.microsoft.com/en-us/library/cc656912.aspx" rel="nofollow">.net client profile</a>. All the .net assemblies you normally use in a 28mb footprint. (With a 200kb bootstrapper that installes only the stuff that isn't already on the client machine)</p>
<p>See also <a href="http://blogs.windowsclient.net/trickster92/archive/2008/05/21/introducing-the-net-framework-client-profile.aspx" rel="nofollow">this blogpost</a>.</p>
http://stackoverflow.com/questions/909983/how-to-generate-random-but-also-unique-numbers/910145#9101450Answer by thijs for How to generate "random" but also "unique" numbers ?thijs2009-05-26T11:07:12Z2009-05-26T11:07:12Z<p>You could use this code sample:
<a href="http://xkcd.com/221/" rel="nofollow">http://xkcd.com/221/</a>
Or, you can use this book:
<a href="http://rads.stackoverflow.com/amzn/click/0833030477" rel="nofollow">http://www.amazon.com/Million-Random-Digits-Normal-Deviates/dp/0833030477</a></p>
<p>But seriously, don't implement it yourself, use an existing library. You can't be the first person to do this.</p>
http://stackoverflow.com/questions/909618/on-my-local-windows-machine-how-do-i-write-a-script-to-download-a-comic-strip-ev/910102#9101022Answer by thijs for on my local Windows machine, how do i write a script to download a comic strip every day and email it to myself?thijs2009-05-26T10:56:17Z2009-05-26T10:56:17Z<p>Configure feedburner on the RSS feed, subscribe yourself to the email alerts?</p>
http://stackoverflow.com/questions/357219/whats-your-favourite-character/910095#9100952Answer by thijs for What's your favourite character?thijs2009-05-26T10:54:45Z2009-05-26T10:54:45Z<p>The @</p>
<p>Because I like monkeys</p>
http://stackoverflow.com/questions/909951/with-c-which-one-is-faster-system-convert-tostring-objthatisstring-or-stri/910078#9100781Answer by thijs for With C# which one is faster - System.Convert.ToString( objThatIsString) or (string)objThatIsString ?thijs2009-05-26T10:51:00Z2009-05-26T10:51:00Z<p>There's a saying "The numbers tell the tale". Which means that instead of assuming something you can also measure it!</p>
<p>So, wrap up a test app, run your tests and validate the results!</p>
<p>The true question could be:
How do I measure which way is faster?</p>
http://stackoverflow.com/questions/1410722/do-you-feel-comfortable-merging-codeComment by thijs on Do you feel comfortable merging code?thijs2009-12-10T16:00:59Z2009-12-10T16:00:59ZOh StarTeam , the pain....http://stackoverflow.com/questions/1577150/cannot-validate-against-multiple-xsd-schemas-in-cComment by thijs on Cannot validate against multiple xsd schemas in C#thijs2009-10-16T09:57:31Z2009-10-16T09:57:31ZDoes your XML validate in a tool like XmlSpy?
If I recall correctly you should be able to validate against imported/included schemas using the XmlReader..http://stackoverflow.com/questions/1577031/what-does-this-function-doComment by thijs on What does this function do?thijs2009-10-16T09:19:11Z2009-10-16T09:19:11ZShould this be tagged "homework" perhaps?http://stackoverflow.com/questions/322898/net-clickonce-and-vista-start-upComment by thijs on .NET ClickOnce and Vista start-upthijs2009-09-24T11:34:25Z2009-09-24T11:34:25ZSee <a href="http://www.brokenwire.net/bw/Programming/116/run-clickonce-app-on-startup" rel="nofollow">brokenwire.net/bw/Programming/…</a> for more info on this topic.http://stackoverflow.com/questions/1388764/i-want-to-use-a-song-as-my-game-background-music-is-it-agaist-the-lawComment by thijs on i want to use a song as my game background music, is it agaist the law?thijs2009-09-07T10:57:14Z2009-09-07T10:57:14ZDid you write the song yourself? Otherwise you should contact the one who has written/created the song.http://stackoverflow.com/questions/969031/programaticly-move-mouse-in-vmware-c/972455#972455Comment by thijs on Programaticly Move Mouse in VMWare C#thijs2009-09-02T08:28:07Z2009-09-02T08:28:07ZThat was (part of) my answer..http://stackoverflow.com/questions/401816/how-can-i-make-a-click-once-deployed-app-run-at-startup/846359#846359Comment by thijs on How can I make a Click-once deployed app run at startup?thijs2009-08-26T14:36:25Z2009-08-26T14:36:25ZYou can easily bypass vista's "security" on this one, see my blogpost on how to run clickonce apps on windows startup: <a href="http://www.brokenwire.net/bw/Programming/116/run-clickonce-app-on-startup" rel="nofollow">brokenwire.net/bw/Programming/…</a>http://stackoverflow.com/questions/666968/perfmon-wont-run-any-moreComment by thijs on Perfmon won't run any morethijs2009-07-14T12:45:44Z2009-07-14T12:45:44ZUpdate: Now they work again. I didn't bother with them for a while, today I started perfmon, and the counters just work again!http://stackoverflow.com/questions/1069311/passing-an-array-of-parameters-to-stored-procedure/1069347#1069347Comment by thijs on Passing an array of parameters to Stored Procedurethijs2009-07-01T14:22:03Z2009-07-01T14:22:03Zreading through xml is slow compared to splitting strings!http://stackoverflow.com/questions/1036861/issue-with-split-in-cComment by thijs on Issue With Split In C#thijs2009-06-24T07:27:42Z2009-06-24T07:27:42ZYour keyboard is broken, check the caps lock key, it's probably stuck.http://stackoverflow.com/questions/1007034/how-to-get-vs2008-to-create-a-different-dll-name-after-you-have-already-created/1007090#1007090Comment by thijs on How to get VS2008 to create a different *.DLL name after you have already created the project?thijs2009-06-17T13:39:59Z2009-06-17T13:39:59ZYes, you can do it the hard way too ;)http://stackoverflow.com/questions/980087/deleting-items-in-foreach/980154#980154Comment by thijs on Deleting items in foreachthijs2009-06-11T09:34:23Z2009-06-11T09:34:23ZYou assume C#, and as we all know assume makes an 'ass' out of 'u' and 'me'...http://stackoverflow.com/questions/666968/perfmon-wont-run-any-moreComment by thijs on Perfmon won't run any morethijs2009-06-11T09:18:50Z2009-06-11T09:18:50ZUpdate: The counters from remote machines don't work either, seems like the client side (the perfmon window itself) is malfunctioning.http://stackoverflow.com/questions/557631/net-deployment-projects-detected-dependencies-magically-un-excluded/831054#831054Comment by thijs on .Net Deployment Project's Detected Dependencies magically un-excludedthijs2009-06-10T07:30:34Z2009-06-10T07:30:34Z+1 for Wix, VS deployment projects cause headacheshttp://stackoverflow.com/questions/969281/is-it-unwise-to-develop-a-financial-system-without-transactions-or-constraints/969403#969403Comment by thijs on Is it unwise to develop a financial system without transactions or constraints?thijs2009-06-10T06:55:13Z2009-06-10T06:55:13Zreading and updating the balance should be one (atomic) transaction.