User mmiika - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T17:15:25Zhttp://stackoverflow.com/feeds/user/6846http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/242304/where-should-i-download-corflags-exe-from2Where should I download corflags.exe from?mmiika2008-10-28T05:19:14Z2009-10-08T11:25:29Z
<p>I'm running Windows Server 2008 64-bit "workstation" and would like to get corflags.exe. Which SDK do I need to download? </p>
<p>Edit:
I know about <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=1AEF6FCE-6E06-4B66-AFE4-9AAD3C835D3D&displaylang=en#Overview" rel="nofollow">.NET Framework 2.0 Software Development Kit (SDK) (x64)</a> and <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=F26B1AA4-741A-433A-9BE5-FA919850BDBF&displaylang=en" rel="nofollow">Windows SDK for Windows Server 2008 and .NET Framework 3.5</a> but I was hoping to find something smaller as these are quite large downloads.</p>
<p>Also the note about 2.0 SDK seems to suggest to download the 3.5 one, should I follow that?</p>
http://stackoverflow.com/questions/246068/how-do-you-define-a-single-responsibility18How do you define a Single Responsibility?mmiika2008-10-29T07:43:12Z2009-08-30T18:54:45Z
<p>I know about "class having a single reason to change". Now, what is that exactly? Are there some smells/signs that could tell that class does not have a single responsibility? Or could the real answer hide in YAGNI and only refactor to a single responsibility the first time your class changes?</p>
http://stackoverflow.com/questions/308491/show-progress-of-mercurial-push-pull5Show progress of Mercurial push/pullmmiika2008-11-21T11:32:01Z2009-05-23T14:41:15Z
<p>Is it possible to get Mercurial to show progress of long-running push or pull operation? Google tells me basically "no", but does somebody know better? I was expecting something like "hg pull -v"...</p>
http://stackoverflow.com/questions/275704/lambdas-in-boo4Lambdas in Boo?mmiika2008-11-09T07:21:18Z2009-02-10T07:50:34Z
<p>How do you deal with lambdas in boo? Is "callable" the same thing? How do you define a method that takes a lambda as a parameter?</p>
http://stackoverflow.com/questions/343002/searching-phrases-in-lucene0Searching phrases in Lucenemmiika2008-12-05T05:42:41Z2009-01-12T14:43:42Z
<p>Could somebody point me to an example how to search for phrases with Lucene.net?</p>
<p>Let's say I have in my index a document with field "name", value "Jon Skeet". Now I want to be able to find that document when searching for "jon skeet".</p>
http://stackoverflow.com/questions/304413/postgresql-or-ms-sql-server4PostgreSQL or MS SQL Server?mmiika2008-11-20T05:26:13Z2008-11-26T01:47:22Z
<p>I'm considering using PostgreSQL with a .Net web app. Basically 3 reasons:</p>
<ol>
<li>Mature Geo Queries</li>
<li>Small footprint + Linux</li>
<li>Price</li>
</ol>
<p>I'm wondering a bit about tools though, SQL Server Profiler and query plans and performance monitors have been helpful. How is this world with Postgres? Some other things I should consider?</p>
<p>Edit: Will most likely use NHibernate as ORM</p>
http://stackoverflow.com/questions/316243/which-programming-language-to-learn-now/316252#3162521Answer by mmiika for Which programming language to learn now?mmiika2008-11-25T03:06:14Z2008-11-25T03:17:28Z<p>"a solid programming language that is not too hard to pick up and is rather fast and multi-platform"?</p>
<p>That sounds exactly like Java to me. If you want speed, go with C++. My personal opinion though is that speed matters for less and less projects so Ruby would be a very good choice. Ruby is IMHO one of languages that everybody should learn.</p>
<p>Also remember that the next language will be just the next language. When you continue your career you will need to learn many more.</p>
http://stackoverflow.com/questions/314553/how-to-use-makefiles-in-visual-studio/314652#3146520Answer by mmiika for How to use makefiles in Visual Studio?mmiika2008-11-24T16:22:25Z2008-11-24T16:22:25Z<p>Makefiles and build files are about automating your build. If you use a script like MSBuild or NAnt, you can build your project or solution directly from command line. This in turn makes it possible to automate the build, have it run by a build server.</p>
<p>Besides building your solution it is typical that a build script includes task to run unit tests, report code coverage and complexity and more.</p>
http://stackoverflow.com/questions/314457/does-the-use-of-the-fieldset-html-tag-have-meaning-beyond-grouping-forms/314483#3144832Answer by mmiika for Does the use of the fieldset HTML tag have meaning beyond grouping forms?mmiika2008-11-24T15:31:09Z2008-11-24T15:31:09Z<p>I believe this would be abuse. <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.10" rel="nofollow">http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.10</a> states "The FIELDSET element allows authors to group thematically related controls and labels".</p>
http://stackoverflow.com/questions/314317/why-would-i-write-a-fake-class-and-unit-test-it/314340#31434012Answer by mmiika for Why would I write a fake class and unit test it? mmiika2008-11-24T14:48:19Z2008-11-24T14:48:19Z<p>You are not testing your mock object but some other class that is interacting with it. So you could for example test that a controller forwards a save method call to your fake repository. There is something wrong if you are "testing your fake objects"</p>
http://stackoverflow.com/questions/304830/enabling-auditing-feature-in-sqlserver-2005/312097#3120970Answer by mmiika for Enabling Auditing feature in SQLServer 2005mmiika2008-11-23T03:57:36Z2008-11-23T03:57:36Z<p>I'm afraid there's no such a thing as "audit feature". Instead you need to build it yourself depending on what kind of requirements you have. There are many ways to do this, for example</p>
<ul>
<li>A trigger fires every time data in audited tables change. An example here: <a href="http://sqlserver2000.databases.aspfaq.com/how-do-i-audit-changes-to-sql-server-data.html" rel="nofollow">http://sqlserver2000.databases.aspfaq.com/how-do-i-audit-changes-to-sql-server-data.html</a></li>
<li>using your ORM, with NHIbernate
ideas here:
<a href="http://stackoverflow.com/questions/15917/data-auditing-in-nhibernate-and-sqlserver">http://stackoverflow.com/questions/15917/data-auditing-in-nhibernate-and-sqlserver</a></li>
</ul>
http://stackoverflow.com/questions/311630/how-to-deal-with-a-many-to-many-relation-in-my-api/311692#3116923Answer by mmiika for How to deal with a Many-To-Many Relation in my APImmiika2008-11-22T19:49:10Z2008-11-22T19:49:10Z<p>You might be missing a domain concept there. Have you tried creating a third entity: FooBarRelationship?</p>
http://stackoverflow.com/questions/309437/does-activerecord-handle-locks-and-updates/309500#3095002Answer by mmiika for Does ActiveRecord handle locks and updates?mmiika2008-11-21T17:11:24Z2008-11-21T17:11:24Z<p>If you are talking about Castle ActiveRecord (for .Net), I would believe you can use all the concurrency models that NHibernate support. For example with a version column:</p>
<p><a href="http://www.darkside.co.za/archive/2008/05/20/castle-activerecord-using-the-version-attribute.aspx" rel="nofollow">http://www.darkside.co.za/archive/2008/05/20/castle-activerecord-using-the-version-attribute.aspx</a></p>
http://stackoverflow.com/questions/309149/generate-distinctly-different-rgb-colors-in-graphs/309190#3091900Answer by mmiika for Generate distinctly different RGB colors in graphsmmiika2008-11-21T15:54:06Z2008-11-21T15:54:06Z<p>I would start with a set brightness 100% and go around primary colors first:</p>
<p>FF0000, 00FF00, 0000FF</p>
<p>then the combinations</p>
<p>FFFF00, FF00FF, 00FFFF</p>
<p>next for example halve the brightness and do same round. There's not too many really clearly distinct colors, after these I would start to vary the line width and do dotted/dashed lines etc.</p>
http://stackoverflow.com/questions/308772/what-are-some-ways-to-protect-emails-on-websites-from-spambots/308825#3088251Answer by mmiika for What are some ways to protect emails on websites from spambots?mmiika2008-11-21T13:48:58Z2008-11-21T13:48:58Z<p>You can obfuscate it but IMHO whatever you do, one day spammers will get your email address. The future is in spam filters, not trying to keep email addresses secret.</p>
http://stackoverflow.com/questions/307936/iis-asp-net-pipeline-and-concurrency1IIS, Asp.NET pipeline and concurrencymmiika2008-11-21T05:13:03Z2008-11-21T06:26:53Z
<p>I'm wondering how the concurrency in a web application actually works. Ive read several articles and to my understanding multiple instances of HttpApplication would be working at the same time. Now, I created a simple web app to test concurrency and put the following to global.asax:</p>
<pre><code>protected void Application_BeginRequest(object sender, EventArgs e)
{
Response.Write("Request started: " + DateTime.Now);
System.Threading.Thread.Sleep(10000);
Response.Write("<br />");
Response.Write("Request ended: " + DateTime.Now);
Response.End();
}
</code></pre>
<p>I was expecting that if I browse to the web app root in several browser tabs at nearly the same time, they would start and stop concurrently. However, it seems that they don't. Second tab start time is same as first time end time. I then tested by having this same code in an httpmodule or default.aspx page_load and got the same result.</p>
<p>What is going on here? Why aren't the requests being served parallel?</p>
<p><strong>Edit:</strong> I'm placing my understanding mainly to two articles:</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc188942.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc188942.aspx</a> says "If multiple requests targeting the same application arrive simultaneously, multiple HttpApplication objects will be used."</p>
<p>and <a href="http://www.code-magazine.com/article.aspx?quickid=0511061&page=5" rel="nofollow">http://www.code-magazine.com/article.aspx?quickid=0511061&page=5</a> has an example for an aspx page doing basically what I tested, with comment "Simulate slow request so we can see multiple requests side by side." next to Thread.Sleep call</p>
<p>It is possible that I'm completely misunderstanding something... but what?</p>
<p><a href="http://www.code-magazine.com/article.aspx?quickid=0511061&page=5" rel="nofollow">http://www.code-magazine.com/article.aspx?quickid=0511061&page=5</a></p>
http://stackoverflow.com/questions/307936/iis-asp-net-pipeline-and-concurrency/308025#3080250Answer by mmiika for IIS, Asp.NET pipeline and concurrencymmiika2008-11-21T06:14:58Z2008-11-21T06:14:58Z<p>Heh. The problem was Google Chrome. I opened two tabs in it and it seems when they point to same url that the requests get sent sequentially, one after the other has completed!</p>
<p>Thanks for ideas though!</p>
http://stackoverflow.com/questions/304907/psake-extensions/307730#3077300Answer by mmiika for PSake extensions?mmiika2008-11-21T03:22:55Z2008-11-21T03:22:55Z<p>JP Boodhoo has <a href="http://blog.jpboodhoo.com/InterestedInTradingInYourNAntBuildsATeaser.aspx" rel="nofollow">evidently extended psake</a>. Just hoping he would release what he's made...</p>
http://stackoverflow.com/questions/304907/psake-extensions2PSake extensions?mmiika2008-11-20T10:37:03Z2008-11-21T03:22:55Z
<p>I recently discovered Powershell and through that <a href="http://code.google.com/p/psake/" rel="nofollow">PSake</a>. If you are using it and you've extended it or created tasks for it, please share!</p>
http://stackoverflow.com/questions/307357/best-test-runner-unit-testing-net/307476#3074760Answer by mmiika for Best test runner? (Unit Testing, .NET)mmiika2008-11-21T01:04:40Z2008-11-21T01:04:40Z<p>I'm using resharper to run individual tests in IDE, but nunit-console to run all tests for speed.</p>
http://stackoverflow.com/questions/306075/how-does-asp-net-associate-a-request-with-a-session/306081#3060810Answer by mmiika for How Does ASP.NET associate a request with a session?mmiika2008-11-20T17:11:05Z2008-11-20T17:11:05Z<p>It's a cookie</p>
http://stackoverflow.com/questions/305988/can-the-mvc-design-pattern-architectural-pattern-be-used-in-desktop-application/306032#3060321Answer by mmiika for Can the MVC Design Pattern / architectural pattern be used in Desktop Application Development?mmiika2008-11-20T16:54:20Z2008-11-20T16:54:20Z<p>MVC comes in many flavors, Marting Fowler discusses at <a href="http://martinfowler.com/eaaDev/uiArchs.html" rel="nofollow">http://martinfowler.com/eaaDev/uiArchs.html</a></p>
<p>Google returns quite a lot of interesting stuff for <a href="http://www.google.com/search?q=windows+forms+mvc" rel="nofollow">windows forms mvc</a> also</p>
http://stackoverflow.com/questions/305486/how-to-save-the-state-of-an-c-app-to-be-able-to-load-later/305521#3055211Answer by mmiika for How to save the state of an C# app to be able to load latermmiika2008-11-20T14:49:52Z2008-11-20T14:49:52Z<p>You could also take a look at <a href="http://www.db4o.com/about/productinformation/" rel="nofollow">db4o</a>, which is a simple object database.</p>
http://stackoverflow.com/questions/304453/virtual-pc-2007-or-hyper-v-for-personal-desktop-use/304454#3044544Answer by mmiika for Virtual PC 2007 or Hyper-V for personal desktop use?mmiika2008-11-20T06:00:28Z2008-11-20T06:00:28Z<p>I'm using the free <a href="http://www.virtualbox.org/" rel="nofollow">Virtual Box</a> and that's worked fine for me.</p>
http://stackoverflow.com/questions/304251/targeting-64-bit1Targeting 64-bit [closed]mmiika2008-11-20T03:36:17Z2008-11-20T04:19:38Z
<p>I'm building a web application on .Net and it will run on 64 bit server. Is there something special that I should do to take full advantage of 64 bits? </p>
<p>Only thing that comes to mind is that RAM is cheap and "unlimited" for 64bit, maybe I should cache as much as possible.</p>
<p>Edit: closing as duplicate of <a href="http://stackoverflow.com/questions/291675/what-can-i-do-to-optimize-my-net-web-sites-and-applications-for-64-bit">http://stackoverflow.com/questions/291675/what-can-i-do-to-optimize-my-net-web-sites-and-applications-for-64-bit</a></p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/272955#2729552Answer by mmiika for Use of else after a return or break from a function or loopmmiika2008-11-07T17:55:15Z2008-11-07T17:55:15Z<p>Without else. This is a guard clause and in a typical application you would see so many of these kind of statements that you get used to them.</p>
http://stackoverflow.com/questions/271666/well-known-projects-around-1-mil-lines-of-code/271677#2716773Answer by mmiika for Well known projects around 1 mil. lines of code?mmiika2008-11-07T10:08:37Z2008-11-07T10:08:37Z<p>Just an idea. How about checking <a href="http://www.ohloh.net/" rel="nofollow">http://www.ohloh.net/</a> </p>
<p>You could most likely find some projects like that using their API.</p>
http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/271592#2715921Answer by mmiika for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)mmiika2008-11-07T09:15:04Z2008-11-07T09:15:04Z<p>I like these NUnit Assert extensions: <a href="http://svn.caffeine-it.com/openrasta/trunk/src/Rasta.Testing/AssertExtensions.cs" rel="nofollow">http://svn.caffeine-it.com/openrasta/trunk/src/Rasta.Testing/AssertExtensions.cs</a></p>
http://stackoverflow.com/questions/268458/good-tool-to-collect-issues-improvements-ideas/268467#268467-1Answer by mmiika for Good tool to collect issues, improvements, ideas.mmiika2008-11-06T12:17:56Z2008-11-07T04:23:59Z<p>How about using for example Google groups? I've found a mailing list works quite well for this kind of purpose.</p>
<p>Edit: or how about <a href="http://getsatisfaction.com/" rel="nofollow">http://getsatisfaction.com/</a></p>
http://stackoverflow.com/questions/271014/should-i-install-sql-server-2008-on-my-dev-machine1Should I install SQL Server 2008 on my DEV machine?mmiika2008-11-07T01:52:33Z2008-11-07T02:50:27Z
<p>I'm wondering if I'll have trouble installing SQL Server 2008 on my development machine whilst our production server is 2005? E.g. is something change so that my 2005 databases/sps/functions/views will not work correctly or other issues I should think about?</p>
<p>Would like to do this just to test drive the new SQL Server but still be able to develop the old product and preferring not to install both...</p>
http://stackoverflow.com/questions/342878/which-net-web-application-framework-to-use/342925#342925Comment by mmiika on Which .net Web Application Framework to use ?mmiika2008-12-05T06:09:45Z2008-12-05T06:09:45Zand Castle Monorail,,http://stackoverflow.com/questions/314457/does-the-use-of-the-fieldset-html-tag-have-meaning-beyond-grouping-forms/314483#314483Comment by mmiika on Does the use of the fieldset HTML tag have meaning beyond grouping forms?mmiika2008-11-24T15:37:54Z2008-11-24T15:37:54ZYes: <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.2" rel="nofollow">w3.org/TR/REC-html40/…</a>http://stackoverflow.com/questions/314317/why-would-i-write-a-fake-class-and-unit-test-it/314404#314404Comment by mmiika on Why would I write a fake class and unit test it? mmiika2008-11-24T15:09:50Z2008-11-24T15:09:50ZAh right, not really. If you are writing your own fake repository like that, you would test it as well to make sure that it behaves like expected. This is to make sure that other tests that will be using that fake will fail/success for correct reasons.http://stackoverflow.com/questions/314317/why-would-i-write-a-fake-class-and-unit-test-it/314340#314340Comment by mmiika on Why would I write a fake class and unit test it? mmiika2008-11-24T15:04:19Z2008-11-24T15:04:19ZSorry, is this a question?http://stackoverflow.com/questions/308491/show-progress-of-mercurial-push-pull/308515#308515Comment by mmiika on Show progress of Mercurial push/pullmmiika2008-11-21T12:26:38Z2008-11-21T12:26:38ZCheers, it was --debug I neededhttp://stackoverflow.com/questions/307936/iis-asp-net-pipeline-and-concurrency/308041#308041Comment by mmiika on IIS, Asp.NET pipeline and concurrencymmiika2008-11-21T06:35:38Z2008-11-21T06:35:38ZThanks Kev, see my answer also... I thought that something odd was going on!http://stackoverflow.com/questions/307936/iis-asp-net-pipeline-and-concurrency/307993#307993Comment by mmiika on IIS, Asp.NET pipeline and concurrencymmiika2008-11-21T06:05:14Z2008-11-21T06:05:14ZThread ID does change every now and then, but still each request starts after each other.http://stackoverflow.com/questions/304907/psake-extensionsComment by mmiika on PSake extensions?mmiika2008-11-21T03:20:25Z2008-11-21T03:20:25ZThe whole "build system" is the small powershell script "psake.ps1" in the root... works fine, just needs extension functions to make it nicer.http://stackoverflow.com/questions/304413/postgresql-or-ms-sql-server/304418#304418Comment by mmiika on PostgreSQL or MS SQL Server?mmiika2008-11-20T05:34:13Z2008-11-20T05:34:13ZNHibernate will most likely be the ORM choicehttp://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/238416#238416Comment by mmiika on What is the best UI you've ever used?mmiika2008-11-10T10:13:37Z2008-11-10T10:13:37ZIndeed. I used to do more design work before and you get this amazing feeling keeping one hand on the mouse and the other on the keyboard just changing tools. Now with Resharper + visual studio I'm getting that similar feeling...http://stackoverflow.com/questions/275704/lambdas-in-boo/275713#275713Comment by mmiika on Lambdas in Boo?mmiika2008-11-09T08:22:26Z2008-11-09T08:22:26ZThanks, i see most cases just "as callable" is enoughhttp://stackoverflow.com/questions/275704/lambdas-in-boo/275713#275713Comment by mmiika on Lambdas in Boo?mmiika2008-11-09T07:44:14Z2008-11-09T07:44:14Zhow do I accept a lambda as a method argument?http://stackoverflow.com/questions/271806/home-grown-orm-vs-datatables/271822#271822Comment by mmiika on Home-grown ORM vs. DataTables?mmiika2008-11-07T12:05:51Z2008-11-07T12:05:51ZYou can do one roundtrip with mature ORMs as well like NHibernate.http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/271411#271411Comment by mmiika on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)mmiika2008-11-07T07:20:06Z2008-11-07T07:20:06ZI would name it FormatWith or something.http://stackoverflow.com/questions/271014/should-i-install-sql-server-2008-on-my-dev-machine/271061#271061Comment by mmiika on Should I install SQL Server 2008 on my DEV machine?mmiika2008-11-07T02:36:31Z2008-11-07T02:36:31ZSQL Compare is critical for me, thanks for this.