User Mendelt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T21:57:04Zhttp://stackoverflow.com/feeds/user/3320http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1900805/understanding-rails-unit-testing-is-it-still-a-unit-test-if-a-single-test-tests/1900862#19008620Answer by Mendelt for Understanding Rails Unit Testing: Is it still a unit test if a single test tests model interdependencies?Mendelt2009-12-14T13:16:02Z2009-12-14T13:16:02Z<p>A unit in a unit-test isnt always a single class or object. Testing interdependencies shouldn't be a problem. I havent found any hard and fast rules for defining units in unit tests but I often use ideas from domain driven design to guide me. Tests that test behaviour of a single aggregate are usually pretty maintainable as unit tests. Test that depend on more aggregates or even aggregates and services together are integration tests.</p>
http://stackoverflow.com/questions/261139/nunit-vs-mbunit-vs-mstest-vs-xunit-net/261323#26132317Answer by Mendelt for NUnit vs. MbUnit vs. MSTest vs. xUnit.net Mendelt2008-11-04T09:25:37Z2009-11-29T01:16:27Z<p>I wouldn't go with MSTest. Although it's probably the most future proof of the frameworks with Microsoft behind it's not the most flexible solution. It won't run stand alone without some hacks. So running it on a build server other than TFS without installing Visual Studio is hard. The visual studio test-runner is actually slower than Testdriven.Net + any of the other frameworks. And because the releases of this framework are tied to releases of Visual Studio there are less updates and if you have to work with an older VS you're tied to an older MSTest.</p>
<p>I don't think it matters a lot which of the other frameworks you use. It's really easy to switch from one to another.</p>
<p>I personally use XUnit.Net or NUnit depending on the preference of my coworkers. NUnit is the most standard. XUnit.Net is the leanest framework.</p>
http://stackoverflow.com/questions/1749958/ddd-advice-regarding-related-objects-c/1750014#17500145Answer by Mendelt for DDD Advice regarding related Objects (C#)Mendelt2009-11-17T16:20:48Z2009-11-17T16:20:48Z<p>Its usually better to go with object relations. That way you're not forcing other classes that use the PersonFriends list to know about the whole repository thing giving you a cleaner separation of domain logic and your data access code.</p>
<p>If you don't want the complete collection of friends loaded into memory you're probably better off not giving the Person class a PersonFriends list at all and just implementing a GetFriendsFor(Person person) method on the repository.</p>
<p>Another solution would be to use an ORM that supports lazy loading to give you the opportunity to load the friends list on demand.</p>
http://stackoverflow.com/questions/1021606/asp-net-mvc-routing-strategy1ASP.Net MVC routing strategyMendelt2009-06-20T13:19:12Z2009-08-20T16:36:03Z
<p>I've been playing with ASP.Net MVC for a while now. I found the most difficult thing to get right is the routing table.</p>
<p>I found most examples leave the default route in place. I found that this leads to a lot of errors where the default route redirects to HomeController with an action that doesnt exist. Leading to strange error messages where you would expect to see a simple 404.</p>
<p>I eventually settled for a routing setup where I explicitly define all controller/action combinations I want to allow with a catch-all at the end to redirect to a 404 page that shows a sensible error message.</p>
<p>Am I missing something here? Or is this indeed a good way to do things?</p>
<p><hr /></p>
<p>Looking at the answers I got I think I'd better clarify the question a bit.</p>
<p>I'm trying to fool-proof the routing scheme of the website I'm building. I noticed that when I leave in the default {controller}/{action}/{id} route all kinds of URL's where I would like to display a 404 error actually get routed to the HomeController with an invalid Action and result in some ugly error message instead.</p>
<p>I'm a bit confused because most code examples just leave in the default route. Is there a reason it's there or is it ok to remove it?</p>
<p>The scheme I'm using now looks a bit like this</p>
<pre><code> routes.MapRoute( "About", "About", new {controller = "Page", action = "About"} );
routes.MapRoute( "SignIn", "SignIn", new {controller = "Page", action = "SignIn"} );
routes.MapRoute( "SignOut", "SignOut", new {controller = "Page", action = "SignOut"} );
routes.MapRoute( "Authenticate", "Authenticate", new { controller = "Authentication", action = "Authenticate" });
routes.MapRoute("CatchAll", "{*url}", new { controller = "Error", action = "Http404" });
</code></pre>
<p>I've got a route specified for every action in the system. And a catchall to display a 404 at the end. Is this a good way to do this or is there an easier way to make the routing scheme fool-proof?</p>
http://stackoverflow.com/questions/92869/nunit-vs-visual-studio-2008s-test-projects-for-unit-testing/93080#9308039Answer by Mendelt for NUnit vs Visual Studio 2008's Test Projects for Unit Testing?Mendelt2008-09-18T14:33:41Z2009-07-27T14:37:16Z<p><a href="http://stackoverflow.com/questions/92869/nunit-vs-visual-studio-2008s-test-projects-for-unit-testing/92900#92900">Daok</a> named all the pro's of VS2008 test projects, here are the pro's of NUnit.</p>
<ul>
<li>NUnit has a mocking framework.</li>
<li>NUnit can be run outside of the
IDE, this can be useful if you want
to run tests on a non MS build server
like CC.Net</li>
<li>NUnit has more versions coming out
than visual studio. You don't have
to wait years for a new version
And you don't have to install a new version of the IDE to
get new features.</li>
<li>There are extensions being developed
for NUnit like row-tests etc.</li>
<li>Visual Studio tests take a long time
to start up for some reason. This is
better in 2008 but still too slow
for my taste. Quickly running a test
to see if you didn't break something
can take too long. NUnit with
something like Testdriven.Net to run
tests from the IDE is actually much
faster. especially when running
single tests.<br />
Accorting to Kjetil Klaussen this is caused by the Visual Studio testrunner, running MSTest tests in TestDriven.Net makes MSTest performance comparable to NUnit.</li>
</ul>
http://stackoverflow.com/questions/1126299/should-override-object-equals-for-entities-in-ddd/1126361#11263613Answer by Mendelt for Should override Object.Equals for Entities (in DDD)?Mendelt2009-07-14T15:56:13Z2009-07-14T15:56:13Z<p>There are three cases you might want to be able to distinguish.</p>
<ol>
<li><p>You have two references to the same entity. In this case the normal equality operators will do their jobs correctly. No need to override anything.</p></li>
<li><p>You have two instances in memory of the same entity. When you design your repositories right this situation is avoidable but sometimes this is a situation you'll have to work with. Your customer1.Id == customer2.Id example will work fine in this case.</p></li>
<li><p>You have two different entities but you want to know if they have similar property value's. This might be a code-smell. You might be treating a value type as an entity. If this is really something you want to do then you should implement it separately from the normal .net == and .Equals mechanisms. (for example .IsSameAs(Customer subject)) to avoid confusion. </p></li>
</ol>
http://stackoverflow.com/questions/1118463/single-responsibility-principle-do-all-public-methods-in-a-class-have-to-use-all/1118511#11185110Answer by Mendelt for Single Responsibility Principle: do all public methods in a class have to use all class dependencies?Mendelt2009-07-13T09:41:39Z2009-07-13T09:41:39Z<p>I usually group methods into classes if they use a shared piece of state that can be encapsulated in the class. Having dependencies that aren't used by all methods in a class can be a code smell but not a very strong one. I usually only split up methods from classes when the class gets too big, the class has too many dependencies or the methods don't have shared state.</p>
http://stackoverflow.com/questions/1090653/unit-testing-self-contained-tests-vs-code-duplication-dry/1090689#10906891Answer by Mendelt for Unit Testing: Self-contained tests vs code duplication (DRY)Mendelt2009-07-07T06:31:39Z2009-07-07T06:31:39Z<p>You could put the
Job j = csvImporter.ImportJob(row);
in your setup. That way you're not repeating code.</p>
<p>you actually should run that line of code for each and every test. Otherwise tests will start failing because of things that happened in other tests. This will become hard to maintain.</p>
<p>The performance problem isn't caused by DRY violations. You actually should setup everything for each and every test. These aren't unit tests, they're integration tests, you rely on external files to run the test. You could make ImportJob read from a stream instead of it directly opening a file. Then you could test with a memorystream.</p>
http://stackoverflow.com/questions/1054801/ninject-vs-unity-for-di/1054820#10548203Answer by Mendelt for Ninject vs Unity for DIMendelt2009-06-28T12:18:01Z2009-06-28T12:18:01Z<p>Last time I looked at either of them I found Ninject slightly better. But both have their drawbacks.</p>
<p>Ninject has a better fluent-configuration scheme. Unity seems to rely mostly on XML configuration. Ninject's main drawback is that it requires you to reference Ninject.Core everywhere in your code to add [Inject] attributes.</p>
<p>If I may ask, why are you limiting your choices to these two? I think Castle.Windsor, Autofac and StructureMap are at least as good or better.</p>
http://stackoverflow.com/questions/120648/is-assert-fail-considered-bad-practice17Is Assert.Fail() considered bad practice?Mendelt2008-09-23T12:27:16Z2009-06-26T11:28:12Z
<p>I use Assert.Fail a lot when doing TDD. I'm usually working on one test at a time but when I get ideas for things I want to implement later I quickly write an empty test where the name of the test method indicates what I want to implement as sort of a todo-list. To make sure I don't forget I put an Assert.Fail() in the body.</p>
<p>When trying out xUnit.Net I found they hadn't implemented Assert.Fail. Of course you can always Assert.IsTrue(false) but this doesn't communicate my intention as well. I got the impression Assert.Fail wasn't implemented on purpose. Is this considered bad practice? If so why?</p>
<p><hr /></p>
<p>@<a href="#120671" rel="nofollow">Martin Meredith</a>
That's not exactly what I do. I do write a test first and then implement code to make it work. Usually I think of several tests at once. Or I think about a test to write when I'm working on something else. That's when I write an empty failing test to remember. By the time I get to writing the test I neatly work test-first.</p>
<p>@<a href="#120670" rel="nofollow">Jimmeh</a>
That looks like a good idea. Ignored tests don't fail but they still show up in a separate list. Have to try that out.</p>
<p>@<a href="#120679" rel="nofollow">Matt Howells</a>
Great Idea. NotImplementedException communicates intention better than assert.Fail() in this case</p>
<p>@<a href="#120678" rel="nofollow">Mitch Wheat</a>
That's what I was looking for. It seems it was left out to prevent it being abused in another way I abuse it.</p>
http://stackoverflow.com/questions/1032543/can-i-restore-a-backup-if-a-table-is-corrupt/1032627#10326271Answer by Mendelt for Can I restore a backup if a table is corrupt?Mendelt2009-06-23T13:35:41Z2009-06-23T13:35:41Z<p>One thing to think about; Depending on how your database is structured restoring a single table from backup can cause problems with referential integrity.</p>
http://stackoverflow.com/questions/1032568/database-design-related/1032595#10325951Answer by Mendelt for Database Design RelatedMendelt2009-06-23T13:30:31Z2009-06-23T13:30:31Z<p>You already say it yourself. "Each of these <em>account holders</em> also have..."</p>
<p>Account holders have messages, blogs, etcetera. So these should have accountid's. If you want persons without accounts to have those you should use person_id's</p>
http://stackoverflow.com/questions/1029131/where-to-put-code-in-primarily-windowless-wpf-app/1029162#10291622Answer by Mendelt for Where to put code in (primarily) windowless WPF app?Mendelt2009-06-22T20:12:10Z2009-06-22T20:12:10Z<p>Even with applications where most interaction is done through windows it's usually a bad idea to put all the code in the code behind. Interactions are often initiated eventhandlers in the code behind but you can put your code in classes you create yourself.</p>
<p>The same goes for applications that do not show a user interface most of the time. Most of the actions will be initiated from the App.xaml.cs but that doesn't mean all the code has to live there. You can encapsulate timers in their own classes that can kick off other code to do work for example. Divide your code up along lines of responsibilities, a window class does UI stuff, domain logic goes into other files etc. That will enable you to create more maintainable applications.</p>
http://stackoverflow.com/questions/923926/structuremap-controller-factory-and-null-controller-instance-in-mvc/1021583#10215832Answer by Mendelt for StructureMap controller factory and null controller instance in MVCMendelt2009-06-20T13:10:33Z2009-06-20T13:10:33Z<p>I ran into the same problem with a controller factory built around ninject.</p>
<p>It seems MVC will pass you null for controllertype when it can't resolve a route from the routing table or when a route specifies a none existing controller. I did two things to solve this. You might want to check your route table and add a catchall route that shows a 404 error page like described here <a href="http://stackoverflow.com/questions/318886/net-mvc-routing-catchall-not-working">http://stackoverflow.com/questions/318886/net-mvc-routing-catchall-not-working</a></p>
<p>You could also check with the routing debugger what goes wrong.
<a href="http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx" rel="nofollow">http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx</a> </p>
http://stackoverflow.com/questions/39492/where-can-f-actually-save-time-and-money/39527#3952718Answer by Mendelt for Where can F# actually save time and money?Mendelt2008-09-02T13:36:40Z2009-06-16T06:02:50Z<p>The most well know uses of F# are in finance right now. But it will prove its worth in any application where you need to be able to express complicated math or algorithms easilly. 3d rendering or simulation would be suitable too. You can express concepts like sets or tuples very elegantly in F#.</p>
<p>The argument that anything that can be done in F# can be done in C# is of course true but completely useless. Anything that you can do in C# can be done in machine language. But there are more compelling reasons for higher level languages than the posibilities of the language alone.</p>
http://stackoverflow.com/questions/981200/can-windows-drivers-be-written-in-python/981227#9812270Answer by Mendelt for Can Windows drivers be written in Python?Mendelt2009-06-11T13:54:52Z2009-06-11T13:54:52Z<p>Never say never but eh.. no</p>
<p>You might be able to hack something together to run user-mode parts of drivers in python. But kernel-mode stuff can only be done in C or assembly.</p>
http://stackoverflow.com/questions/981180/what-are-the-differences-between-wcf-and-traditional-asp-net-web/981212#9812122Answer by Mendelt for What are the differences between WCF and traditional ASP.NET WebMendelt2009-06-11T13:52:33Z2009-06-11T13:52:33Z<p>WCF is far wider in scope than ASP.Net webservices.</p>
<ul>
<li>WCF can run in any application. APS.Net webservices only run in IIS.</li>
<li>WCF supports models like ReST, Remoting, SOAP, MSMQ etc. ASP.Net only supports SOAP</li>
<li>WCF is more configurable.</li>
<li>WCF supports a more declarative way of programming. You can get more done with less code.</li>
</ul>
http://stackoverflow.com/questions/979859/frameworks-and-third-party-tools/979938#9799381Answer by Mendelt for Frameworks and third-party toolsMendelt2009-06-11T08:18:36Z2009-06-11T08:18:36Z<p>It depends of course. (hmmm. maybe I should become a consultant.) </p>
<p>Almost all frameworks have some dependencies, usually these are packaged with the framework and as long as you just check in the right dll's with the code and package them with your binaries there's no problem.<br>
Having a dependency on something like Postsharp might be a little more problematic. Postsharp requires additional build steps for the post-compiler so this will complicate installing buildservers, or additional development workstations quite a bit and it will add possible points of failure to your build process.</p>
<p>I'd try a couple of things.</p>
<p>Try to estimate gains and losses of using the framework. Eventually it always comes down to return on investment.</p>
<p>See if you can find other frameworks that give you the same functionality without complicating the build-process.</p>
<p>If you go with this framework try to abstract it away. Try to reduce your dependence on it as much as possible. You can even try to package it into a wrapper-assembly so you can use it without recompiling all the time. Of course this can be hard depending on how you have to interface with the framework. This will give you some control over how much it impacts your process and how much it will cost you to switch to an alternative framework in the future.</p>
http://stackoverflow.com/questions/974567/are-there-just-one-message-pump-or-many/974625#9746250Answer by Mendelt for Are there just one "message pump", or many?Mendelt2009-06-10T09:49:20Z2009-06-10T09:49:20Z<p>You're right, in windows message pumps are "GUI things" although they are used for much more than that (hotkey notification etc).</p>
<p>A process can have a message pump per thread. Usually these are created when you create your first window. Console apps don't have message pumps. You could get around this by creating a WinForms window and making it invisible. When you call Application.Run winforms will start your message pump. You can pass him the HWND of that window and he'll probably know what to do with it. If you want to catch messages sent back you can override the forms wndproc. This will only catch messages sent to that window though..</p>
http://stackoverflow.com/questions/972539/efficient-way-to-make-a-programmatic-audio-mixdown/972646#9726461Answer by Mendelt for Efficient way to make a Programmatic Audio MixdownMendelt2009-06-09T21:42:00Z2009-06-09T21:42:00Z<p>A couple of pointers even though I'm not really familliar with iPhone development.</p>
<p>You could unwind the inner loop. You don't need a for loop to add 4 numbers together although it might be your compiler will do this for you.</p>
<p>Write directly to the buffer in your for loop. memcpy at the end will do another loop to copy the buffers.</p>
<p>Don't use a float for tempvalue. Depending on the hardware integer math is quicker and you don't need floats for summing channels.</p>
<p>Remove the if/endif. Digital clipping will sound horrible anyway so try to avoid it before summing the channels together. Branching inside a loop like this should be avoided if possible.</p>
http://stackoverflow.com/questions/932067/lazy-loading-tdd-data-first-approach-are-those-killer-bullets-in-the-heart-of/932080#9320801Answer by Mendelt for Lazy Loading, TDD, Data-First Approach: Are those killer bullets in the heart of Entity Framework?Mendelt2009-05-31T13:56:23Z2009-06-01T13:52:37Z<p>Thanks for removing the typo from the question. Now I can make my answer a bit shorter too :-)</p>
<p>The Entity framework did not really offer support for the style of programming preferred by the TDD / SOLID / Alt.Net crowd. This is what the vote of no confidence is about. EF forces you to design your business logic around the persistence framework making it harder to test and maintain your business logic. On the positive side because of all the tooling around entity framework it allows you to get an object model and persistence layer up and running very quickly.</p>
<p>In newer version of EF this has gotten better. I don't know if EF 4 allows for persistance ignorant object models yet, this was the most important shortcoming. But in my opinion this does not really change the fact that EF was built for a different style of programming than the what the writers of the vote of no confidence want. EF leans heavily on tooling and steers you in a database centric way of building your software. The default way of building software is still create a database and generate your object model from that.</p>
<p>I don't think most of the issues surrounding EF are about what's possible. You can always abstract away the EF part from your business logic and build your application test driven. The issues are about what style of programming is made easier. I think you should use the right tool for the right job. If you're building enterprise software in a team that's comfortable with a data-driven style of development you should use EF. If you're building software where persistence is less important than business logic and you're working in a team that's familliar with TDD DDD, BDD, SOLID and all that stuff you're better off using something like nHibernate.</p>
http://stackoverflow.com/questions/919419/what-is-the-rationale-for-document-centric-systems/919475#9194752Answer by Mendelt for What is the rationale for document-centric systems?Mendelt2009-05-28T06:34:54Z2009-05-28T06:34:54Z<p>Sharepoint does exactly what you say. It's built on top of a relational database and offers something that looks a bit like a file-system with a web-interface. This document storage is primarilly geared towards integration with Office and is only a small part of Sharepoint.</p>
<p>Document based database systems. Like CouchDB or Amazon S3 are different beasts. They store data in a less structured way than relational databases. Mostly in the form of key-document pairs. You can retrieve documents by key or by querying but because documents are not uniformly structured like rows in a table in a relational database querying can be more difficult. These databases aren't really meant to be used like relational database, they're geared more toward scalability for large web-backends etc.</p>
<p>Lotus Notes actually combines these two. You can use it for document management (and email and much more) and it's built on it's own document-database.</p>
http://stackoverflow.com/questions/914308/can-i-use-telephone-api-in-php/914348#9143480Answer by Mendelt for Can i use telephone api in PHP ??Mendelt2009-05-27T07:03:14Z2009-05-27T07:03:14Z<p>It should be possible. There are a couple of caveats though.</p>
<p>Php is platform independent but telephone api's arent. For example TAPI (the windows telephone api) is COM based and won't work on linux. There is probably a telephone api on linux too.</p>
<p>For TAPI programming in PHP you can look here:</p>
<p><a href="http://uk3.php.net/com" rel="nofollow">http://uk3.php.net/com</a> for information on using COM api's in PHP
<a href="http://en.wikipedia.org/wiki/Telephony_Application_Programming_Interface" rel="nofollow">http://en.wikipedia.org/wiki/Telephony_Application_Programming_Interface</a> information about TAPI</p>
http://stackoverflow.com/questions/867706/how-to-parse-a-string-to-an-integer-without-library-functions/867744#8677442Answer by Mendelt for How to parse a string to an integer without library functions?Mendelt2009-05-15T09:32:33Z2009-05-15T09:32:33Z<p>Parse the string in oposite order, use one of the two methods for parsing the single digits, multiply the accumulator by 10 then add the digit to the accumulator.</p>
<p>This way you don't have to calculate the place value. By multiplying the accumulator by ten every time you get the same result.</p>
http://stackoverflow.com/questions/843057/analysing-twitter-tweets-etc/843071#8430714Answer by Mendelt for Analysing Twitter tweets etc.Mendelt2009-05-09T10:12:48Z2009-05-09T10:12:48Z<p>This is a very general question so I'm afraid I can give only a very general answer.</p>
<p>What you describe can be done in most programming languages. C# or Ruby (you don't really need the rails part, that's for building websites) would certainly be good candidates. Java, Python etc. can also do this. There are libraries for accessing the twitter api's for all these languages. Matching and outputting tweets to a spreadsheet is also fairly language independent as most spreadsheets will read comma separated value files.</p>
<p>MySQL is a database and would not be a good candidate, you can do limited programming with most databases but this is probably not what you want.</p>
<p>I'd look for a good programmer first and then let him/her work in the language of choice. Usually finding good programmers is the hard part.</p>
http://stackoverflow.com/questions/39476/what-is-the-yield-keyword-used-for-in-c/39496#3949618Answer by Mendelt for What is the yield keyword used for in C#?Mendelt2008-09-02T13:23:16Z2009-05-05T23:02:16Z<p>The yield keyword actually does quite a lot here. The function returns an object that implements the IEnumerable interface. If a calling function starts foreach-ing over this object the function is called again until it "yields". This is syntactic suger introduced in C# 2.0. In earlier versions you had to create your own IEnumerable and IEnumerator objects to do stuff like this.</p>
<p>The easiest way understand code like this is to type in an example, set some breakpoints and see what happens.</p>
<p>Try stepping through this for example:</p>
<pre><code>public void Consumer()
{
foreach(int i in Integers())
{
Console.WriteLine(i.ToString());
}
}
public IEnumerable<int> Integers()
{
yield return 1;
yield return 2;
yield return 4;
yield return 8;
yield return 16;
yield return 16777216;
}
</code></pre>
http://stackoverflow.com/questions/768861/what-other-ioc-containers-have-an-iinitializable-like-feature1What other IoC containers have an IInitializable like feature?Mendelt2009-04-20T15:46:49Z2009-04-21T13:01:55Z
<p>I've been using Castle Windsor in my previous project and I liked it a lot. For my current project I'm looking to use a different IoC container. Castle Windsor hasn't had any new releases since 2007 and is still not at version 1.0 so it is hard to justify using it in a commercial environment.</p>
<p>One of the things I like about Castle Windsor is that you can have the container call an Initialize method on your services after all dependencies have been set simply by making the service implement IInitializable. I used this a lot. It makes it easy to do property injection instead of constructor injection and that cleans up code and tests quite a bit.</p>
<p>I've been looking at StructureMap, AutoFac, Unity and Spring.Net as alternatives but of these only Spring.Net supports something similar, it automatically calls an Init() method. Unfortunately Spring.Net does not really support the way I want to work with an IoC container (it injects based on string keys instead of interface declarations and therefore its autowiring support is limited too)</p>
<p>Did I miss a similar feature in the IoC containers I looked at? Is my way of working with IoC containers wrong somehow? Or are there other IoC containers that do support something like IInitializable or Init()?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/221207/how-do-you-collect-programming-knowledge/221221#22122110Answer by Mendelt for How do you collect programming knowledgeMendelt2008-10-21T08:58:45Z2009-04-09T11:56:42Z<p>I've recently started using <a href="http://www.evernote.com" rel="nofollow">Evernote</a> to collect notes on anything, including programming. Easy to use, easy to access anywhere and easily searchable with tags.</p>
<p>I started blogging too. I transfer the more useful notes from Evernote to my blog. Anyone can read them... including me :-)</p>
http://stackoverflow.com/questions/727142/are-those-unit-tests-fine/727169#7271690Answer by Mendelt for Are those unit tests fine?Mendelt2009-04-07T19:05:41Z2009-04-07T19:05:41Z<p>Seems fine like this. I personally like to give my tests a bit more descriptive names but that's more of a personal preference. </p>
<p>You can use mocking for dependencies of the class you're testing, EntryRepository is the class under test so no need to mock that, else you would end up testing the mock implementation instead of the class.</p>
<p>Just to give a quick example. If your EntryRepository would use a backend database to store the Entries instead of a List you could inject a mock-implementation for the data-access stuff instead of calling a real database.</p>
http://stackoverflow.com/questions/688987/does-being-arbitrarily-flexible-make-code-messy/689017#6890178Answer by Mendelt for Does being arbitrarily flexible make code messy?Mendelt2009-03-27T09:09:07Z2009-03-27T10:13:09Z<p>It often works the other way around,</p>
<p>I mostly work in C# and Python, so that might explain my difference in experience.</p>
<p>Code that's clean, elegant and simple is often more reusable and flexible than code that's contrived and ugly. It's easier to understand and therefore easier to adapt.</p>
<p>When I compare C# code (comparable to java) and Python code I often find the python code cleaner and more elegant, there is less rigid "ceremony" around declaring types etc. That makes the code cleaner and also more flexible.</p>
<p>That said you can make code more flexible and less clear. If you make code flexible by adding extension points explicitly it's it will often become less elegant.</p>
<p><hr /></p>
<p>@13ren: Great point about "invisible extension points", not only in Python but in most dynamically typed languages. Languages that use "duck-typing" automatically assume you "program to an interface, not an implementation". That makes code flexible and extensible. The problem is that you don't define your interfaces any more, everything automatically is an interface. In C# and Java you have to do that by hand, In many cases this is 'ceremony' and gets in the way. In many other cases the power to define your interface explicitly gives the developer power.</p>
http://stackoverflow.com/questions/65268/music-how-do-you-analyse-the-fundamental-frequency-of-a-pcm-or-wac-sample/65459#65459Comment by Mendelt on Music - How do you analyse the fundamental frequency of a PCM or WAC sampleMendelt2009-12-13T11:15:55Z2009-12-13T11:15:55ZMore zero crossings doesn't really matter for a simple tuner. Remember that a tuner doesnt need the exact frequency of the fundamental. It needs to know the note. By counting more zero crossings per cycle it might lock on to a higher octave but a Cb will still be a Cb and two cents too high will still be two cents too high. Autocorrelation is great for more advanced processing but it's overkill for a tuner.http://stackoverflow.com/questions/168901/howto-count-the-items-from-a-ienumerablet-without-iterating/168922#168922Comment by Mendelt on Howto: Count the items from a IEnumerable<T> without iterating?Mendelt2009-12-01T08:47:42Z2009-12-01T08:47:42Z@Shimmy You iterate and count the elements. Or you call Count() from the Linq namespace that does this for you.http://stackoverflow.com/questions/1126299/should-override-object-equals-for-entities-in-ddd/1126361#1126361Comment by Mendelt on Should override Object.Equals for Entities (in DDD)?Mendelt2009-07-30T17:38:05Z2009-07-30T17:38:05ZYou can have repositories keep a dictionary of references to loaded objects and their id's. Whenever an object is needed twice just return a reference to the same object. Most ORM's do this for youhttp://stackoverflow.com/questions/1032543/can-i-restore-a-backup-if-a-table-is-corrupt/1032627#1032627Comment by Mendelt on Can I restore a backup if a table is corrupt?Mendelt2009-06-23T14:31:43Z2009-06-23T14:31:43ZIf you have relations to or from that table then restoring a single table backup with different content can cause foreign keys to point to none existing rows. This might not be a problem depending how your application handles this.http://stackoverflow.com/questions/1032568/database-design-relatedComment by Mendelt on Database Design RelatedMendelt2009-06-23T13:31:22Z2009-06-23T13:31:22Z@AnthonyWJones: You don't read very well. He sketches the situation, then ends with a question.http://stackoverflow.com/questions/1021606/asp-net-mvc-routing-strategy/1021772#1021772Comment by Mendelt on ASP.Net MVC routing strategyMendelt2009-06-20T15:28:11Z2009-06-20T15:28:11ZYou didn't actually answer my question (I guess that's my fault for asking vague questions) but you did clarify some other things I didnt know, thanks :-) I tried to clear up the question a bit.http://stackoverflow.com/questions/1021606/asp-net-mvc-routing-strategy/1021796#1021796Comment by Mendelt on ASP.Net MVC routing strategyMendelt2009-06-20T15:12:54Z2009-06-20T15:12:54ZThanks for the pointer, will check this out!http://stackoverflow.com/questions/981200/can-windows-drivers-be-written-in-python/981227#981227Comment by Mendelt on Can Windows drivers be written in Python?Mendelt2009-06-11T14:49:27Z2009-06-11T14:49:27Z@Judge Maygarden: That might work in user-mode but kernel-mode is very restrictive on what calls can be made. Chances are your interpreter will not run there either. Kernel mode development is kind of a black art.http://stackoverflow.com/questions/972539/efficient-way-to-make-a-programmatic-audio-mixdown/972646#972646Comment by Mendelt on Efficient way to make a Programmatic Audio MixdownMendelt2009-06-10T09:37:41Z2009-06-10T09:37:41ZThe math may be fast but the conversions from int to float and back again might be slow. But Rom already told you that.
Just try it out and measure :-) Profiling is always better than talking about performance.http://stackoverflow.com/questions/963529/c-constructor-design/963580#963580Comment by Mendelt on C# Constructor DesignMendelt2009-06-08T06:01:46Z2009-06-08T06:01:46ZGood idea, initialization and use of a class are often quite different. This nicely separates them. For even more separation you can move the initialization logic into a factory or builder class.http://stackoverflow.com/questions/843813/if-i-have-windows-mac-and-linux-what-is-the-easiest-way-to-set-up-svn-server/843836#843836Comment by Mendelt on if i have Windows, Mac, and Linux, what is the easiest way to set up SVN server?Mendelt2009-05-09T19:06:33Z2009-05-09T19:06:33ZI tried both visual SVN and the linux apache+svn. Visual svn is by far the easiest. Easy setup and nice tools to configure repositories, create users and set security.http://stackoverflow.com/questions/843057/analysing-twitter-tweets-etc/843071#843071Comment by Mendelt on Analysing Twitter tweets etc.Mendelt2009-05-09T11:03:08Z2009-05-09T11:03:08ZThere's lots of info on that on this site. The mantra over here is "Smart and gets things done" You want someone who can solve problems and who finishes projects, that's especially important when you want someone to work on their own. I'd suggest you don't look too much at tech experience. A good programmer with no experience with the twitter api will quickly learn it, while a bad programmer will fail even with experience. Look for flexibility (there are many dev's who are very dogmatic in their approach) and look for success in earlier projects.http://stackoverflow.com/questions/813657/can-a-language-be-turing-complete-but-incomplete-in-other-ways/813668#813668Comment by Mendelt on Can a language be turing complete but incomplete in other ways?Mendelt2009-05-02T11:55:50Z2009-05-02T11:55:50ZInteresting idea. Although I'm not sure if access to hardware should be counted as a property of a language. Most languages I know have hardware/os access implemented as external libraries written in another language (mostly c/c++) and can be run without those libraries. Look at most dynamic languages, java/.net etc.http://stackoverflow.com/questions/768861/what-other-ioc-containers-have-an-iinitializable-like-feature/772473#772473Comment by Mendelt on What other IoC containers have an IInitializable like feature?Mendelt2009-04-21T17:42:07Z2009-04-21T17:42:07ZI still use it myself but many commercial settings is pretty hard though. Using OSS libraries can be challenging with some clients, using OSS libraries that never had an official 1.0 release and is still only available as release candidate 3 is even harder that's why I'm looking for an alternative. Thanks for telling me about the upcoming 2.0 release, that might change things.http://stackoverflow.com/questions/768861/what-other-ioc-containers-have-an-iinitializable-like-feature/768970#768970Comment by Mendelt on What other IoC containers have an IInitializable like feature?Mendelt2009-04-20T17:33:03Z2009-04-20T17:33:03ZThanks. Great answer. +1 The main advantage I get from property injection is that I don't need to rewrite existing code and tests whenever I add a dependency to a class. Also having all dependencies in one place instead of having them mixed up in the constructor makes my code more readable. But I can imagine this is a matter of taste :-)