User Mischa Kroon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T14:47:25Zhttp://stackoverflow.com/feeds/user/30600http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1756007/why-not-use-tfs-as-a-build-ci-solution2Why not use TFS as a build / CI solution ?Mischa Kroon2009-11-18T13:36:32Z2009-11-19T14:18:45Z
<p>Currently our build solution is set up using TFS + MS Build scripts. </p>
<p>TFS is also being used as a CI server. </p>
<p>I've seen several posts on this site telling people about other CI solutions.
Are there any compelling options to move to another Solution for our build system?</p>
<p>Or in other words what are we missing out on by using TFS?</p>
<p><em>EDIT</em></p>
<p>We are using TFS for source control / issue tracking and I think this is a good solution, im just wondering about the other options for build server / CI server integrating with TFS. </p>
http://stackoverflow.com/questions/1756090/resx-tools-for-asp-site/1756154#17561542Answer by Mischa Kroon for Resx tools for asp siteMischa Kroon2009-11-18T13:54:01Z2009-11-18T13:54:01Z<p>You can have a look at the <a href="http://www.west-wind.com/WestWindWebToolkit/" rel="nofollow">WestWindWebToolkit</a> which contains a tool to manage resources and the resources are stored in the database instead of resx files which might be a maintanance plus for you.</p>
http://stackoverflow.com/questions/1755772/how-to-send-1000-emails-per-day-using-an-asp-net-web-site/1755829#1755829-1Answer by Mischa Kroon for How to send 1000+ emails per day using an ASP.NET Web siteMischa Kroon2009-11-18T13:05:52Z2009-11-18T13:16:13Z<p>Easy solution is not to use a website to send all these emails just use a desktop application. </p>
<p>No dedicated server in a cloud is needed, an smtp server installed will do.
Well that and a bulk email component like: <a href="http://aspnetmail.com/" rel="nofollow">aspnetmail</a></p>
http://stackoverflow.com/questions/1221406/any-decent-ado-net-helper-utils-out-there/1221454#12214540Answer by Mischa Kroon for Any decent ADO.NET Helper utils out there?Mischa Kroon2009-08-03T09:42:15Z2009-08-03T09:42:15Z<p>Use a simple ORM like <a href="http://subsonicproject.com/" rel="nofollow">SubSonic</a> ?</p>
http://stackoverflow.com/questions/1086198/free-alternatives-to-powergrep0Free alternative(s) to PowerGREPMischa Kroon2009-07-06T09:26:10Z2009-07-06T10:27:03Z
<p>First of all, great praise goes out to <a href="http://www.powergrep.com/" rel="nofollow">PowerGREP</a> it's a great program. </p>
<p>But it's not free.
Some of it's options I'm looking for:
Being able to use .NET regexp's (or similar) to find things in a filtered list of files through subdirectories. </p>
<p>Replacing that stuff with other regexps.</p>
<p>Being able to jump to that part of the file in some sort of editor. </p>
<p>Non commandline. </p>
<p>Being able to copy the results / filename and occurrences of the text. </p>
<p>Low overhead would also be nice so not too many dependencies etc. </p>
<p>And I need it on windows.</p>
http://stackoverflow.com/questions/1086247/help-with-database-connection/1086276#1086276-1Answer by Mischa Kroon for Help with database connectionMischa Kroon2009-07-06T09:52:09Z2009-07-06T09:52:09Z<p>Make sure that sql server excepts connections over tcp/ip by trying to log in on to the server using sql server management studio using tcp/ip (Connection Properties--> Network protocoll) if that doesn't work then open up the TCP/IP for this instance.</p>
http://stackoverflow.com/questions/1017150/migrate-from-c-net-2-0-to-php-so-the-hash-value-of-the-password-how-to-resolve/1017227#10172270Answer by Mischa Kroon for migrate from C#.net 2.0 to php so the hash value of the password - how to resolve?Mischa Kroon2009-06-19T10:00:48Z2009-06-19T10:00:48Z<p>Using a .Net version of PHP (<a href="http://www.php-compiler.net/doku.php" rel="nofollow">Phalanger</a>) or using a .Net webservice to encode/decode isn't an option?</p>
http://stackoverflow.com/questions/1017204/where-to-start-with-freelance-programming/1017220#10172203Answer by Mischa Kroon for Where to start with freelance Programming?Mischa Kroon2009-06-19T09:58:28Z2009-06-19T09:58:28Z<p>Get yourself a job as a contractor, and get yourself a conversation with an accountant on what you need to start.</p>
<p>This will be different in different countries.</p>
http://stackoverflow.com/questions/1016522/php-ie6-cookies-failing-a-hello-world-world-for-cookies/1017212#10172120Answer by Mischa Kroon for PHP + ie6 + cookies: failing a hello world world for cookiesMischa Kroon2009-06-19T09:56:45Z2009-06-19T09:56:45Z<p>What are the security settings for IE?</p>
<p>Could it be that the security settings on it don't allow you to write cookies for it?</p>
http://stackoverflow.com/questions/1017153/lerning-selenium/1017198#10171981Answer by Mischa Kroon for lerning SeleniumMischa Kroon2009-06-19T09:54:18Z2009-06-19T09:54:18Z<p>From what i've understood, <a href="http://watin.sourceforge.net/" rel="nofollow">Watin</a> might be a nicer choice. </p>
http://stackoverflow.com/questions/874010/asp-net-web-application-5000-lines-of-code-in-1-page-acceptable/1011754#10117541Answer by Mischa Kroon for ASP .NET web application - 5000 lines of code in 1 page - acceptable?Mischa Kroon2009-06-18T09:35:34Z2009-06-18T09:35:34Z<p>Not ok, split things up into different files by functionality or section. </p>
<p>This is where user controls come in usefull.
If this page has business logic place this in a BLL.
Same with DAL. </p>
<p>After you have split everything up with DAL, BLL and user controls everything should be a lot more maintainable.</p>
http://stackoverflow.com/questions/1011451/is-this-a-good-enough-system-error-to-user-friendly-error-translator/1011477#10114774Answer by Mischa Kroon for Is this a good enough system-error-to-user-friendly-error translator?Mischa Kroon2009-06-18T08:31:17Z2009-06-18T08:31:17Z<p>Your removing information from your exception and not logging it. </p>
<p>I think this is a bad call.<br />
Log the message to be able to work on it, also this error should not happen ever. </p>
<p>Refactor so that this can't happen again.</p>
http://stackoverflow.com/questions/1007425/performance-difference-of-caching-php-objects-on-file/1007468#10074681Answer by Mischa Kroon for Performance difference of caching PHP Objects on fileMischa Kroon2009-06-17T14:40:02Z2009-06-17T14:46:14Z<p>It's like this:
File is way faster then Database.
Memory is way faster then files (when not swapping disk space). </p>
<p>So cache to memory what you need the most, and try and think when you need to make the effort to cache to file. </p>
<p>Remember: premature optimisation usually isn't the best thing to do. </p>
http://stackoverflow.com/questions/965678/web-pages-that-a-long-time-to-load-keep-on-reloading-just-on-vista-on-my-work-n/1006478#10064780Answer by Mischa Kroon for Web pages that a long time to load keep on reloading, just on vista on my work n/w...Mischa Kroon2009-06-17T11:35:54Z2009-06-17T11:35:54Z<p>You can make use of components writing to the mail pickup directory. </p>
<p>There are also several desktop applications which are able to send html mailing lists which don't have too many problems. </p>
<p>Have a look at the <a href="http://www.aspnetemail.com" rel="nofollow">ASPNETMAIL</a> .NET component which makes things like mass mail merge easy. </p>
<p>Alternatively, try another smtp server for sending. </p>
http://stackoverflow.com/questions/1000349/good-ways-to-earn-income-as-a-self-employed-developer/1000419#10004190Answer by Mischa Kroon for Good ways to earn income as a self employed developerMischa Kroon2009-06-16T09:27:19Z2009-06-16T09:27:19Z<p>Solve 1 problem well and make sure it's cost effective vs the competition. </p>
<p>After that market the <em>Bleep</em> out of it so you make sure it gets used a lot. </p>
http://stackoverflow.com/questions/1000101/basic-difference-between-net-3-5-and-4-0/1000109#10001092Answer by Mischa Kroon for Basic difference between .net 3.5 and 4.0Mischa Kroon2009-06-16T08:01:45Z2009-06-16T08:01:45Z<p>A simple google brings up... </p>
<p><a href="http://www.vikasgoyal.net/net/What%27s%20New%20in%20.NET%204.0.aspx" rel="nofollow">http://www.vikasgoyal.net/net/What's%20New%20in%20.NET%204.0.aspx</a></p>
<p><a href="http://blogs.msdn.com/bclteam/archive/2009/05/22/what-s-new-in-the-bcl-in-net-4-beta-1-justin-van-patten.aspx" rel="nofollow">http://blogs.msdn.com/bclteam/archive/2009/05/22/what-s-new-in-the-bcl-in-net-4-beta-1-justin-van-patten.aspx</a></p>
<p>There are probably a lot more things, the Framework is massive so changes which are interesting for person x might not be as important for person y. </p>
http://stackoverflow.com/questions/996739/should-a-web-developer-use-css-3-when-ie6-has-15-of-market-share/996771#9967716Answer by Mischa Kroon for Should a web developer use CSS 3 when IE6 has 15% of market share?Mischa Kroon2009-06-15T15:30:09Z2009-06-15T15:30:09Z<p>For public websites: Don't use CSS3</p>
<p>Most browsers don't support it well enough, as with most things just test on all browsers and look at what the results are. </p>
<p>But the safe bet is just don't use it yet and don't care too much about it till most browsers actually support things well enough. </p>
<p>Then hack around for browsers that don't.
And remember even 1% browsershare is still stupid to alienate in most cases. </p>
http://stackoverflow.com/questions/964850/best-setup-for-linux-development-from-windows/964938#9649380Answer by Mischa Kroon for Best setup for Linux development from Windows?Mischa Kroon2009-06-08T13:29:09Z2009-06-08T13:29:09Z<p>Use sharpdevelop / Visual Studio / Mono Develop and make Mono applications. </p>
<p>Easy to set up and program for. Test through vmware / vpc images. </p>
http://stackoverflow.com/questions/950179/i-want-to-develop-a-web-site-like-stackoverflow-but-ive-never-done-anything-for/950256#9502560Answer by Mischa Kroon for I want to develop a web site like StackOverflow, but I've never done anything for web. How can I do this?Mischa Kroon2009-06-04T12:32:03Z2009-06-04T12:32:03Z<p>Download an open source alternative to Stack Overflow and install it.
Then customize it, learning how to program it yourself and doing that well will cost you a lot of time when starting from scratch and the results will probably be less then satisfactory.</p>
<p>An example is <a href="http://code.google.com/p/stacked/" rel="nofollow">Stacked</a>.</p>
http://stackoverflow.com/questions/949936/master-page-error-in-asp-net/950097#9500971Answer by Mischa Kroon for Master Page Error in Asp.netMischa Kroon2009-06-04T12:02:31Z2009-06-04T12:02:31Z<p>Another folder is not a problem. </p>
<p>You can try to make a new page and select masterpage on creation.
Probably the code in which you are referring to the master page is somehow corrupt. </p>
<p>Check if that works and if so alter the reference of the page giving the error.
Still giving an error after that, then alter your question with the page source so people can see what's going wrong.</p>
http://stackoverflow.com/questions/947106/in-classic-asp-are-there-major-performance-consequences-of-having-several-connec/947498#9474980Answer by Mischa Kroon for In Classic ASP, are there major performance consequences of having several connections open and close?Mischa Kroon2009-06-03T21:58:34Z2009-06-03T21:58:34Z<ol>
<li>Don't use select * but specify columns you need.</li>
<li><a href="http://forums.aspfree.com/code-bank-54/getting-away-from-recordsets-use-getrows-230953.html" rel="nofollow">Use getrows</a>. </li>
<li>Specify what you want to have from the database (Use joins and where clause).</li>
</ol>
<p>When you do all this your code will be optimal. </p>
http://stackoverflow.com/questions/947358/ajax-and-how-to-best-deal-with-it-server-side-in-php/947434#9474340Answer by Mischa Kroon for AJAX and how to best deal with it server side in PHPMischa Kroon2009-06-03T21:43:25Z2009-06-03T21:43:25Z<p>Use Ext JS or Jquery have a look at what they offer there are loads of links out there to see what they do. </p>
<p>After looking at some Demo's of these products you will probably be inspired to use some of these things with your websites. </p>
<p>Other then that measure where your bottlenecks are and try parallel loading where it makes sence. </p>
http://stackoverflow.com/questions/915207/iis-monitoring-tool/915249#9152490Answer by Mischa Kroon for IIS monitoring toolMischa Kroon2009-05-27T11:38:13Z2009-05-27T11:38:13Z<p>IIS Log files + log analysers. </p>
<p>Log analysers like <a href="http://www.webtrends.com/" rel="nofollow">webtrends</a> will give you a lot of information. </p>
http://stackoverflow.com/questions/915177/simulate-keypress-in-a-non-visible-webbrowser-object-c/915193#9151931Answer by Mischa Kroon for Simulate keypress in a non-visible webbrowser object C#Mischa Kroon2009-05-27T11:21:50Z2009-05-27T11:21:50Z<p>Use <a href="http://watin.sourceforge.net/" rel="nofollow">Watin</a></p>
<p>Then you can <a href="http://stackoverflow.com/questions/856766/can-i-pass-a-key-stroke-i-e-enter-key-into-application-using-watin-scripts/857953#857953">use this solution</a>. </p>
http://stackoverflow.com/questions/914754/mysql-query/914767#9147671Answer by Mischa Kroon for mysql queryMischa Kroon2009-05-27T09:12:41Z2009-05-27T09:12:41Z<p>Columns can only be approached in sql with names not numbers if you want to do this you will have to do it in a programming language which is calling the query</p>
http://stackoverflow.com/questions/914695/php-mysql-query-not-working/914731#9147313Answer by Mischa Kroon for PHP - MySQL Query not workingMischa Kroon2009-05-27T09:04:04Z2009-05-27T09:04:04Z<p>if (isset($_POST['username']) && isset($_POST['password']))</p>
<p>This is the line which determines if you get yes or no.
So that means that your not using post to get the variables from the form. </p>
<p>It has nothing to do with the query. </p>
http://stackoverflow.com/questions/801715/general-purpose-util-library-or-multiple-specific-dlls/914547#9145470Answer by Mischa Kroon for general purpose util library or multiple specific dlls?Mischa Kroon2009-05-27T08:16:07Z2009-05-27T08:16:07Z<p>I would go with one assembly, with namespaces. </p>
<p>Be vigilant about what goes into the utilities library when including in a lot of projects.
Else you will be confronted with <a href="http://ayende.com/Blog/archive/2009/04/29/let-us-burn-all-those-pesky-util-amp-common-libraries.aspx" rel="nofollow">something like this</a>.</p>
http://stackoverflow.com/questions/906589/are-any-alternatives-to-the-active-record-in-rails/906600#9066001Answer by Mischa Kroon for Are any alternatives to the Active Record in Rails?Mischa Kroon2009-05-25T12:46:17Z2009-05-25T12:46:17Z<p>Yes it is possible but not very easy. </p>
<p>In rails 3 the ORM layer will be pluggable and thus plugging in another ORM layer will be easier. </p>
http://stackoverflow.com/questions/879817/error-when-the-stored-procedure-dont-have-any-parameters/906431#9064310Answer by Mischa Kroon for Error when the Stored procedure don't have any parametersMischa Kroon2009-05-25T11:43:54Z2009-05-25T11:43:54Z<p>Upgrade to the latest version in which this is fixed:
<a href="http://code.google.com/p/subsonicproject/downloads/list" rel="nofollow">Get the 2.2 version here</a></p>
http://stackoverflow.com/questions/906189/zend-framework-slow-as-molasses-need-to-speed-the-website-up-any-ideas/906389#9063896Answer by Mischa Kroon for Zend Framework slow as molasses - need to speed the website up. Any ideas?Mischa Kroon2009-05-25T11:29:34Z2009-05-25T11:29:34Z<p>Most performance issues on the web are database issues, always start looking at the database side of things before moving on. </p>
<p>It might be that there are a lot of database calls made where you can suffice with fewer calls, indexes not placed on the correct columns. </p>
<p>These are the things which usually slow things down. </p>
http://stackoverflow.com/questions/1086247/help-with-database-connectionComment by Mischa Kroon on Help with database connectionMischa Kroon2009-07-06T09:48:19Z2009-07-06T09:48:19ZCould you try reformatting your code it's a bit hard to read at the moment.http://stackoverflow.com/questions/874010/asp-net-web-application-5000-lines-of-code-in-1-page-acceptable/874031#874031Comment by Mischa Kroon on ASP .NET web application - 5000 lines of code in 1 page - acceptable?Mischa Kroon2009-06-18T09:32:29Z2009-06-18T09:32:29Z+1 for sarcasm :)http://stackoverflow.com/questions/1011451/is-this-a-good-enough-system-error-to-user-friendly-error-translator/1011477#1011477Comment by Mischa Kroon on Is this a good enough system-error-to-user-friendly-error translator?Mischa Kroon2009-06-18T09:07:41Z2009-06-18T09:07:41ZYour doing the check anyway might as well send it to the page in a nice way.
Also have a look at generic error handling which might make things easier and more user friendly down the road.http://stackoverflow.com/questions/48958/what-causes-developer-burnout/48987#48987Comment by Mischa Kroon on What causes developer burnout?Mischa Kroon2009-05-19T11:20:06Z2009-05-19T11:20:06ZI almost get depressed by looking at this list :Phttp://stackoverflow.com/questions/178845/calculate-weeknumber-from-a-date-value-using-xslt/178932#178932Comment by Mischa Kroon on Calculate weeknumber from a date value using XSLTMischa Kroon2009-03-29T11:23:02Z2009-03-29T11:23:02ZThis is incorrect...
Have a look here to see why:
<a href="http://social.msdn.microsoft.com/Forums/en-US/vbgeneral/thread/e38accde-7eaa-462e-95d0-5a47b7dab832/" rel="nofollow">social.msdn.microsoft.com/Forums/en-US/…</a>
http://stackoverflow.com/questions/453310/asp-net-web-application-security-in-vds-hostingComment by Mischa Kroon on ASP.NET Web application security in VDS hostingMischa Kroon2009-01-17T14:18:57Z2009-01-17T14:18:57ZIt's VPS not VDS please edit... http://stackoverflow.com/questions/418650/setting-iso-8859-1-instead-of-utf-8-in-oscommerce-sts-template-websiteComment by Mischa Kroon on Setting iso-8859-1 instead of utf-8 in oscommerce / sts template website ?Mischa Kroon2009-01-12T12:52:27Z2009-01-12T12:52:27ZAs I've seen the accepted answer works for me, your "solution" won't work in this case.http://stackoverflow.com/questions/418650/setting-iso-8859-1-instead-of-utf-8-in-oscommerce-sts-template-website/424101#424101Comment by Mischa Kroon on Setting iso-8859-1 instead of utf-8 in oscommerce / sts template website ?Mischa Kroon2009-01-12T12:50:08Z2009-01-12T12:50:08ZThe euro sign is working with ISO-8859-1 as well.
http://stackoverflow.com/questions/418650/setting-iso-8859-1-instead-of-utf-8-in-oscommerce-sts-template-website/418677#418677Comment by Mischa Kroon on Setting iso-8859-1 instead of utf-8 in oscommerce / sts template website ?Mischa Kroon2009-01-07T01:01:37Z2009-01-07T01:01:37ZDon't help, included more information in question. http://stackoverflow.com/questions/418650/setting-iso-8859-1-instead-of-utf-8-in-oscommerce-sts-template-websiteComment by Mischa Kroon on Setting iso-8859-1 instead of utf-8 in oscommerce / sts template website ?Mischa Kroon2009-01-07T00:56:35Z2009-01-07T00:56:35ZBecause somehow the characters which aren't standard show up as boxes isntead of what they are supposed to be if I don't manually change the browser encoding to iso ... http://stackoverflow.com/questions/340223/what-is-the-best-way-to-remove-duplicates-from-a-datatableComment by Mischa Kroon on What is the best way to remove duplicates from a datatable?Mischa Kroon2008-12-04T11:11:50Z2008-12-04T11:11:50ZCan you use a database to this for you ?
Or is this a one off deal ?
If you can use the database you can do this with some smart selects/ view.
http://stackoverflow.com/questions/298235/svn-doubt-vmware-image-install-hosted-which-would-you-pick/298371#298371Comment by Mischa Kroon on SVN Doubt - VMWARE Image / Install / Hosted which would you pick?Mischa Kroon2008-11-18T14:47:44Z2008-11-18T14:47:44ZGIT?
Why ? I don't know the technology / tools.
Don't know how to set it up, and it sounds more complex.
http://stackoverflow.com/questions/250939/re-installing-mysqlwindows-how-to-get-to-the-old-data-with-the-new-install/251008#251008Comment by Mischa Kroon on Re-installing MYSQL(windows) - How to get to the old data with the new install?Mischa Kroon2008-10-30T17:47:37Z2008-10-30T17:47:37Zmy.cnf <--- what is this and where can I find it ?http://stackoverflow.com/questions/250939/re-installing-mysqlwindows-how-to-get-to-the-old-data-with-the-new-install/250997#250997Comment by Mischa Kroon on Re-installing MYSQL(windows) - How to get to the old data with the new install?Mischa Kroon2008-10-30T17:45:24Z2008-10-30T17:45:24ZDoes that mean you don't have access to the old installation any more?
I only have access to the files not the mysql install anymore.