User mmiika - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T17:15:25Z http://stackoverflow.com/feeds/user/6846 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/242304/where-should-i-download-corflags-exe-from 2 Where should I download corflags.exe from? mmiika 2008-10-28T05:19:14Z 2009-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&amp;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&amp;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-responsibility 18 How do you define a Single Responsibility? mmiika 2008-10-29T07:43:12Z 2009-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-pull 5 Show progress of Mercurial push/pull mmiika 2008-11-21T11:32:01Z 2009-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-boo 4 Lambdas in Boo? mmiika 2008-11-09T07:21:18Z 2009-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-lucene 0 Searching phrases in Lucene mmiika 2008-12-05T05:42:41Z 2009-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-server 4 PostgreSQL or MS SQL Server? mmiika 2008-11-20T05:26:13Z 2008-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#316252 1 Answer by mmiika for Which programming language to learn now? mmiika 2008-11-25T03:06:14Z 2008-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#314652 0 Answer by mmiika for How to use makefiles in Visual Studio? mmiika 2008-11-24T16:22:25Z 2008-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#314483 2 Answer by mmiika for Does the use of the fieldset HTML tag have meaning beyond grouping forms? mmiika 2008-11-24T15:31:09Z 2008-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#314340 12 Answer by mmiika for Why would I write a fake class and unit test it? mmiika 2008-11-24T14:48:19Z 2008-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#312097 0 Answer by mmiika for Enabling Auditing feature in SQLServer 2005 mmiika 2008-11-23T03:57:36Z 2008-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#311692 3 Answer by mmiika for How to deal with a Many-To-Many Relation in my API mmiika 2008-11-22T19:49:10Z 2008-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#309500 2 Answer by mmiika for Does ActiveRecord handle locks and updates? mmiika 2008-11-21T17:11:24Z 2008-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#309190 0 Answer by mmiika for Generate distinctly different RGB colors in graphs mmiika 2008-11-21T15:54:06Z 2008-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#308825 1 Answer by mmiika for What are some ways to protect emails on websites from spambots? mmiika 2008-11-21T13:48:58Z 2008-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-concurrency 1 IIS, Asp.NET pipeline and concurrency mmiika 2008-11-21T05:13:03Z 2008-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("&lt;br /&gt;"); 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&amp;page=5" rel="nofollow">http://www.code-magazine.com/article.aspx?quickid=0511061&amp;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&amp;page=5" rel="nofollow">http://www.code-magazine.com/article.aspx?quickid=0511061&amp;page=5</a></p> http://stackoverflow.com/questions/307936/iis-asp-net-pipeline-and-concurrency/308025#308025 0 Answer by mmiika for IIS, Asp.NET pipeline and concurrency mmiika 2008-11-21T06:14:58Z 2008-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#307730 0 Answer by mmiika for PSake extensions? mmiika 2008-11-21T03:22:55Z 2008-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-extensions 2 PSake extensions? mmiika 2008-11-20T10:37:03Z 2008-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#307476 0 Answer by mmiika for Best test runner? (Unit Testing, .NET) mmiika 2008-11-21T01:04:40Z 2008-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#306081 0 Answer by mmiika for How Does ASP.NET associate a request with a session? mmiika 2008-11-20T17:11:05Z 2008-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#306032 1 Answer by mmiika for Can the MVC Design Pattern / architectural pattern be used in Desktop Application Development? mmiika 2008-11-20T16:54:20Z 2008-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#305521 1 Answer by mmiika for How to save the state of an C# app to be able to load later mmiika 2008-11-20T14:49:52Z 2008-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#304454 4 Answer by mmiika for Virtual PC 2007 or Hyper-V for personal desktop use? mmiika 2008-11-20T06:00:28Z 2008-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-bit 1 Targeting 64-bit [closed] mmiika 2008-11-20T03:36:17Z 2008-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#272955 2 Answer by mmiika for Use of else after a return or break from a function or loop mmiika 2008-11-07T17:55:15Z 2008-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#271677 3 Answer by mmiika for Well known projects around 1 mil. lines of code? mmiika 2008-11-07T10:08:37Z 2008-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#271592 1 Answer by mmiika for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) mmiika 2008-11-07T09:15:04Z 2008-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 -1 Answer by mmiika for Good tool to collect issues, improvements, ideas. mmiika 2008-11-06T12:17:56Z 2008-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-machine 1 Should I install SQL Server 2008 on my DEV machine? mmiika 2008-11-07T01:52:33Z 2008-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#342925 Comment by mmiika on Which .net Web Application Framework to use ? mmiika 2008-12-05T06:09:45Z 2008-12-05T06:09:45Z and Castle Monorail,, http://stackoverflow.com/questions/314457/does-the-use-of-the-fieldset-html-tag-have-meaning-beyond-grouping-forms/314483#314483 Comment by mmiika on Does the use of the fieldset HTML tag have meaning beyond grouping forms? mmiika 2008-11-24T15:37:54Z 2008-11-24T15:37:54Z Yes: <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.2" rel="nofollow">w3.org/TR/REC-html40/&hellip;</a> http://stackoverflow.com/questions/314317/why-would-i-write-a-fake-class-and-unit-test-it/314404#314404 Comment by mmiika on Why would I write a fake class and unit test it? mmiika 2008-11-24T15:09:50Z 2008-11-24T15:09:50Z Ah 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#314340 Comment by mmiika on Why would I write a fake class and unit test it? mmiika 2008-11-24T15:04:19Z 2008-11-24T15:04:19Z Sorry, is this a question? http://stackoverflow.com/questions/308491/show-progress-of-mercurial-push-pull/308515#308515 Comment by mmiika on Show progress of Mercurial push/pull mmiika 2008-11-21T12:26:38Z 2008-11-21T12:26:38Z Cheers, it was --debug I needed http://stackoverflow.com/questions/307936/iis-asp-net-pipeline-and-concurrency/308041#308041 Comment by mmiika on IIS, Asp.NET pipeline and concurrency mmiika 2008-11-21T06:35:38Z 2008-11-21T06:35:38Z Thanks 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#307993 Comment by mmiika on IIS, Asp.NET pipeline and concurrency mmiika 2008-11-21T06:05:14Z 2008-11-21T06:05:14Z Thread ID does change every now and then, but still each request starts after each other. http://stackoverflow.com/questions/304907/psake-extensions Comment by mmiika on PSake extensions? mmiika 2008-11-21T03:20:25Z 2008-11-21T03:20:25Z The whole &quot;build system&quot; is the small powershell script &quot;psake.ps1&quot; in the root... works fine, just needs extension functions to make it nicer. http://stackoverflow.com/questions/304413/postgresql-or-ms-sql-server/304418#304418 Comment by mmiika on PostgreSQL or MS SQL Server? mmiika 2008-11-20T05:34:13Z 2008-11-20T05:34:13Z NHibernate will most likely be the ORM choice http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/238416#238416 Comment by mmiika on What is the best UI you've ever used? mmiika 2008-11-10T10:13:37Z 2008-11-10T10:13:37Z Indeed. 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#275713 Comment by mmiika on Lambdas in Boo? mmiika 2008-11-09T08:22:26Z 2008-11-09T08:22:26Z Thanks, i see most cases just &quot;as callable&quot; is enough http://stackoverflow.com/questions/275704/lambdas-in-boo/275713#275713 Comment by mmiika on Lambdas in Boo? mmiika 2008-11-09T07:44:14Z 2008-11-09T07:44:14Z how do I accept a lambda as a method argument? http://stackoverflow.com/questions/271806/home-grown-orm-vs-datatables/271822#271822 Comment by mmiika on Home-grown ORM vs. DataTables? mmiika 2008-11-07T12:05:51Z 2008-11-07T12:05:51Z You 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#271411 Comment by mmiika on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) mmiika 2008-11-07T07:20:06Z 2008-11-07T07:20:06Z I would name it FormatWith or something. http://stackoverflow.com/questions/271014/should-i-install-sql-server-2008-on-my-dev-machine/271061#271061 Comment by mmiika on Should I install SQL Server 2008 on my DEV machine? mmiika 2008-11-07T02:36:31Z 2008-11-07T02:36:31Z SQL Compare is critical for me, thanks for this.