User Michaël Larouche - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T19:39:39Zhttp://stackoverflow.com/feeds/user/121981http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1908969/iphone-or-ipod-touch-as-test-device/1909184#19091840Answer by Michaël Larouche for iPhone or iPod Touch as test deviceMichaël Larouche2009-12-15T17:52:07Z2009-12-15T17:52:07Z<p>On this <a href="http://www.felixbruns.de/iPod/firmware/" rel="nofollow">site</a> you can download any version of the iPhone/iPod touch firmware, thus no need to pay 10$ for the upgrade.</p>
http://stackoverflow.com/questions/1619631/c-hex-number-format/1619718#16197180Answer by Michaël Larouche for c++ hex number formatMichaël Larouche2009-10-25T01:44:35Z2009-10-25T01:44:35Z<p>In one on my projects I did this:</p>
<pre><code>ostream &operator<<(ostream &stream, byte value)
{
stream << "0x" << hex << (int)value;
return stream;
}
</code></pre>
<p>I surchaged the operator<< for stream output, and anything that was a byte was shown in hexadecimal. byte is a typedef for unsigned char.</p>
http://stackoverflow.com/questions/1569829/open-source-c-game-engine-math-libraries/1569869#15698690Answer by Michaël Larouche for Open Source C++ game engine math libraries?Michaël Larouche2009-10-15T01:34:38Z2009-10-15T01:34:38Z<p>See my response here: <a href="http://stackoverflow.com/questions/1491716/best-lib-for-vector-array-in-c/1492059#1492059">http://stackoverflow.com/questions/1491716/best-lib-for-vector-array-in-c/1492059#1492059</a></p>
http://stackoverflow.com/questions/1517409/im-an-asp-net-programmer-webforms-should-i-switch-to-mvc/1517427#15174277Answer by Michaël Larouche for I'm an ASP.NET programmer (Webforms). Should I switch to MVC?Michaël Larouche2009-10-04T21:28:55Z2009-10-04T21:28:55Z<p>Yes you should. WebForms is a big leaky abstraction that try to convince you that writing Web applications is like writing Windows application, which is false. </p>
<p>Managing PostBack is a pain for one. It generates a lot of garbage code in your HTML.</p>
http://stackoverflow.com/questions/1491716/best-lib-for-vector-array-in-c/1492059#14920592Answer by Michaël Larouche for best lib for vector array in c++Michaël Larouche2009-09-29T11:48:01Z2009-09-29T11:48:01Z<p><a href="http://eigen.tuxfamily.org/" rel="nofollow" title="Eigen">Eigen</a>, supports auto-vectorisation of vector on certains compilers (GCC 4, VC++ 2008).</p>
http://stackoverflow.com/questions/1424303/uses-of-ackermann-function4Uses of Ackermann function ?Michaël Larouche2009-09-14T22:58:52Z2009-09-15T06:40:06Z
<p>In our discrete mathematics course in my university, the teacher shows his students the <a href="http://en.wikipedia.org/wiki/Ackermann%5Ffunction" rel="nofollow">Ackermann function</a> and assign the student to develop the function on paper.</p>
<p>Beside being a benchmark for recursion optimisation, does the Ackermann function has any real uses ?</p>
http://stackoverflow.com/questions/1132143/best-practices-to-generate-schema-for-production-with-nhibernate0Best practices to generate schema for production with NHibernateMichaël Larouche2009-07-15T15:29:07Z2009-09-02T09:05:10Z
<p>I am now ready to use NHibernate to persist my data layer access. I used DDD until that point and I use fake for unit tests and for the test site.</p>
<p>I know that I can use SchemaExport for unit/integration tests of my NHibernate concrete repositories but how should I generate the schema to be used for the test site ?</p>
<p>Should I create a special class in my tests that create the schema and insert the static data or should I generate the schema at the launch of the site if the database is not created ?</p>
http://stackoverflow.com/questions/1318509/bdd-in-objective-c/1318536#13185360Answer by Michaël Larouche for BDD in Objective-CMichaël Larouche2009-08-23T13:19:12Z2009-08-23T13:19:12Z<p>There is nothing stopping you prefixing your test method with Should. I did that with NUnit in C#.</p>
http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/1311811#13118112Answer by Michaël Larouche for What is your single favorite development tool?Michaël Larouche2009-08-21T13:04:34Z2009-08-21T13:04:34Z<p>The Great Almighty Internet</p>
http://stackoverflow.com/questions/1305672/what-is-the-best-example-of-technical-documentation-that-you-have-seen-and-what/1305935#13059350Answer by Michaël Larouche for What is the best example of Technical Documentation that you have seen? and what was it that made it so effective?Michaël Larouche2009-08-20T12:42:50Z2009-08-20T12:42:50Z<p>The <a href="http://doc.trolltech.com/4.5/index.html" rel="nofollow">Qt</a> documentation: </p>
http://stackoverflow.com/questions/1267464/how-where-do-i-ship-third-party-libraries-with-a-net-dll/1267558#12675580Answer by Michaël Larouche for How/where do I ship third-party libraries with a .NET DLL?Michaël Larouche2009-08-12T17:28:34Z2009-08-12T17:28:34Z<p>You should take a look at <a href="http://research.microsoft.com/en-us/people/mbarnett/ilmerge.aspx" rel="nofollow">ILMerge</a>. I linked a blog that shows an usage of ILMerge</p>
<p><a href="http://www.clariusconsulting.net/blogs/kzu/archive/2009/02/23/LeveragingILMergetosimplifydeploymentandyourusersexperience.aspx" rel="nofollow">Leveraging ILMerge to simplify deployment and your users experience</a></p>
http://stackoverflow.com/questions/1250037/moq-problem-mocked-class-returns-incorrect-data/1250052#12500521Answer by Michaël Larouche for MOQ problem - mocked class returns incorrect dataMichaël Larouche2009-08-08T22:31:34Z2009-08-10T12:35:21Z<p>You didn't setup AccountsPaged method in your mock</p>
<p>EDIT: Now that you setup AccountsPaged, you didn't setup it properly. Here how to setup it properly:</p>
<pre><code>mockProductsRepos
.Setup(x => x.AccountsPaged(Moq.It.IsAny<int>(), Moq.It.IsAny<int>()))
.Returns( (int pageSize, int selectedPage) => accs.Skip((selectedPage-1)*pageSize).Take(pageSize).AsQueryable() );
</code></pre>
http://stackoverflow.com/questions/1251066/am-i-wasting-my-time-learning-c-and-other-low-level-stuff/1251494#125149411Answer by Michaël Larouche for Am I "wasting" my time learning C and other low level stuff ?Michaël Larouche2009-08-09T14:31:59Z2009-08-09T14:31:59Z<p>I will link you 3 articles from Joel that will justify your learning of C or other 'non-popular' technologies:</p>
<ul>
<li><a href="http://www.joelonsoftware.com/articles/ThePerilsofJavaSchools.html" rel="nofollow">The Perils of Java Schools</a></li>
<li><a href="http://www.joelonsoftware.com/articles/fog0000000319.html" rel="nofollow">Back to Basics</a></li>
<li><a href="http://www.joelonsoftware.com/items/2006/08/01.html" rel="nofollow">Can Your Programming Language Do This?</a></li>
</ul>
http://stackoverflow.com/questions/1232217/there-are-some-things-you-just-cant-test/1234664#12346641Answer by Michaël Larouche for There are some things you just can't test!?Michaël Larouche2009-08-05T17:34:47Z2009-08-05T17:34:47Z<p>This is a fine example of difference between unit testing and integration testing. For <strong>unit testing</strong> your PathResolver, you need to pass a mock object created by hand or using a mock framework (such as my favorite <a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a>). Using a mock object, you'll able to test if Combine method was called. </p>
<p>The unit test will look something like this (using Moq):</p>
<pre><code>[Test]
public void ShouldCombinePath()
{
IFileSystem fs = new Mock<IFileSystem>();
PathResolver resolver = new PathResolver(fs.Object);
resolver.Resolve("Test.filename");
fs.Verify(fs => fs.Combine());
}
</code></pre>
<p>Unit test are supposed to be executed fast without external dependencies. They should be called on every compile.</p>
<p>But you're right, you still need to test the concrete class. This is what we call <strong>integration testing</strong>. I suggest you create a separate project called "MyProject.IntegrationTest" and test SystemFileSystem directly using test files included in the project.</p>
<p>The integration test should look like this</p>
<pre><code>[Test]
public void ShouldCombinePath()
{
DotNetFileSystem fileSystem = new DotNetFileSystem();
string resultPath = fileSystem.Combine("Test.filename");
Assert.That(resultPath, Text.Contains("@D:\MyExample\Test.filename"));
}
</code></pre>
<p>Integration tests are usually called when creating a build of the software on a new commit, using a continuous integration software. They can be slow because they use external dependencies.</p>
http://stackoverflow.com/questions/1207962/c-dynamic-operator/1207966#12079661Answer by Michaël Larouche for C# dynamic operatorMichaël Larouche2009-07-30T17:06:40Z2009-07-30T17:06:40Z<p>C# 4.0 will have a dynamic keyword for dynamic typing.</p>
http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1206487#12064879Answer by Michaël Larouche for What are things that make a programmer's life miserable?Michaël Larouche2009-07-30T13:08:08Z2009-07-30T13:08:08Z<ul>
<li>Websense (I call it the Great Wall of China)</li>
<li>Not being able to target .NET 3.5 because the server is still running Windows 2000</li>
<li>Stupid IT politics (My customer lost a lot of time because on a new push of new Symantec)</li>
<li>Lack of planning</li>
<li>Lack of interest of the domain</li>
<li>Every person in the company has its own version of the rules...</li>
</ul>
http://stackoverflow.com/questions/1190105/good-examples-when-teaching-refactoring/1190130#11901302Answer by Michaël Larouche for Good examples when teaching refactoring?Michaël Larouche2009-07-27T19:28:45Z2009-07-27T19:28:45Z<p>The first chapter in Martin Fowler "Refactoring" is a good starting point to refactoring. I understood most of the concepts when one of my teachers at school used this example.</p>
http://stackoverflow.com/questions/1189979/implementing-conditional-in-a-fluent-interface1Implementing conditional in a fluent interfaceMichaël Larouche2009-07-27T19:01:38Z2009-07-27T19:15:16Z
<p>I've been trying to implement a fluent interface for a set of rules in my system. What I am trying to accomplish is this</p>
<pre><code>TicketRules
.RequireValidation()
.When(quartType => quartType == QuartType.Before).TotalMilageIs(64)
.When(quartType => quartType == QuartType.After).TotalMilageIs(128);
</code></pre>
<p>However, I have trouble implementing the When conditional how I intended to be. Currently, I need to call When() twice like in this snippet:</p>
<pre><code>rules.When(param => param.Remarque == "Test").TotalMilageIs(100);
rules.When(param => param.Remarque == "Other").TotalMilageIs(50);
var params1 = new AddTicketParameters() { Remarque = "Test" };
var params2 = new AddTicketParameters() { Remarque = "Other" };
rules.ExecuteWith(params1);
Assert.That(ticket.TotalMilage, Is.EqualTo(100));
rules.ExecuteWith(params2);
Assert.That(ticket.TotalMilage, Is.EqualTo(50));
</code></pre>
<p>My TicketRules class looks this:</p>
<pre><code>[EditorBrowsable(EditorBrowsableState.Never)]
public class TicketRules : ITicketRule, IHideObjectMembers
{
private Ticket theTicket;
public Ticket Ticket
{
set
{
theTicket = value;
}
}
private List<ITicketRule> allRules = new List<ITicketRule>();
public TicketRules()
{
}
public TicketRules(Ticket ticket)
{
theTicket = ticket;
}
public void Execute()
{
ExecuteWith(null, null);
}
public void ExecuteWith(AddTicketParameters param)
{
ExecuteWith(param, null);
}
public virtual void ExecuteWith(AddTicketParameters param, Ticket outsideTicket)
{
foreach (ITicketRule rule in allRules)
{
rule.ExecuteWith(param, theTicket ?? outsideTicket);
}
}
public TicketRules RequireValidation()
{
CreateModifierRule(ticket => ticket.NeedValidation = true);
return this;
}
public TicketRules TotalMilageIs(int milage)
{
CreateModifierRule(ticket => ticket.TotalMilage = milage);
return this;
}
private void CreateModifierRule(Action<Ticket> function)
{
AddRule(new ModifierTicketRule(function));
}
internal void AddRule(ITicketRule rule)
{
allRules.Add(rule);
}
public WhenClauseTicketRule When(Predicate<AddTicketParameters> predicate)
{
WhenClauseTicketRule whenClause = new WhenClauseTicketRule();
whenClause.Predicate = predicate;
AddRule(whenClause);
return whenClause;
}
public TicketRules UseStandardFormulaForTotalMilageAndTime()
{
AddRule(new StandardFormulaTicketRule());
return this;
}
public TicketRules EnsureMinimumMilageIs(int milage)
{
AddRule(new EnsureMinimumMilageTicketRule(milage));
return this;
}
}
</code></pre>
<p>the ITicketRules</p>
<pre><code>internal interface ITicketRule : IHideObjectMembers
{
void ExecuteWith(AddTicketParameters param, Ticket ticket);
}
</code></pre>
<p>I also need to support the subclasses of AddTicketParameters in the When clause (I've though maybe using generics for that part). I'm posting here because I'm all confused in my design and the Martin Fowler <a href="http://martinfowler.com/dslwip/" rel="nofollow">articles</a> confuse me even more.</p>
http://stackoverflow.com/questions/1154033/how-to-name-a-file-for-download-on-firefox/1154144#11541440Answer by Michaël Larouche for How to name a file for download on Firefox?Michaël Larouche2009-07-20T15:10:02Z2009-07-20T15:10:02Z<p>This question about CSV generation helped me when I needed to implement CSV generation and download: <a href="http://stackoverflow.com/questions/44194/how-do-i-best-generate-a-csv-comma-delimited-text-file-for-download-with-asp-ne">How do I best generate a CSV (comma-delimited text file) for download with ASP.NET?</a></p>
http://stackoverflow.com/questions/1120848/missing-qmenubar-in-qt4-apps-on-osx/1120897#11208971Answer by Michaël Larouche for Missing QMenuBar in Qt4 apps on OSXMichaël Larouche2009-07-13T17:26:52Z2009-07-13T17:26:52Z<p>Your menu should be displayed in the top-level Mac menu. A full desktop screenshot and a code sample would help.</p>
http://stackoverflow.com/questions/1098870/is-ankhsvn-a-good-alternative-to-visual-sourcesafe/1098909#10989091Answer by Michaël Larouche for Is AnkhSVN a good alternative to Visual SourceSafe?Michaël Larouche2009-07-08T15:41:48Z2009-07-08T15:41:48Z<p>I never used Visual SourceSafe, but I used Subversion a lot. AnkhSVN makes the syncronisation between the solution and the SVN much more painless than using TortoiseSVN or the command line.</p>
<p>So yeah, it works great.</p>
http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/1079133#10791331Answer by Michaël Larouche for What c# mocking framework to use?Michaël Larouche2009-07-03T12:26:14Z2009-07-03T12:26:14Z<p>I prefer <a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a> when I develop with .NET 3.5. Very nice use of the lambda expressions. Otherwise I think I'll use RhinoMocks on a .NET 2.0 only project</p>
http://stackoverflow.com/questions/1074474/should-i-use-double-or-float/1074510#10745100Answer by Michaël Larouche for Should I use double or float ?Michaël Larouche2009-07-02T13:58:04Z2009-07-02T13:58:04Z<p>The main difference between float and double is precision. Wikipedia has more info about
<a href="http://en.wikipedia.org/wiki/Single-precision" rel="nofollow">Single precision</a> (float) and <a href="http://en.wikipedia.org/wiki/Double-precision" rel="nofollow">Double precision</a>.</p>
http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0/1006810#10068100Answer by Michaël Larouche for What's the best way to implement BDD/TDD in .NET 2.0?Michaël Larouche2009-06-17T12:48:36Z2009-06-17T12:48:36Z<p>For my project, I used NUnit and TestDrived.NET with great success. You can either create a separate library just to host your test code or you can put it in your executable or library. It all depend if you want your production code to be intertwine with your test code.</p>
<p>For Depencendy Injection, I use <a href="http://www.ninject.org/" rel="nofollow" title="NInject">NInject</a> in my current project and its work great. If you use Constructor injection, you don't need to clutter your code with the [Inject] attribute.</p>
<p>I haven't used a mock library for my .NET 2.0 project but for another .NET 3.5 project I will use <a href="http://code.google.com/p/moq/" rel="nofollow" title="Moq">Moq</a></p>
<p>Note that all this works with .NET 2.0 and higher. (except Moq)</p>
http://stackoverflow.com/questions/997924/c-best-practices/997937#9979377Answer by Michaël Larouche for C++ best practicesMichaël Larouche2009-06-15T19:33:31Z2009-06-15T19:33:31Z<p>If you look for more in depth details about C++ best practices, I recommand the book "Effective C++" by Scott Meyers.</p>
http://stackoverflow.com/questions/987380/why-is-cfilefind-throwing-an-error-after-changing-to-a-static-library/987448#9874480Answer by Michaël Larouche for Why is CFileFind throwing an error after changing to a static library?Michaël Larouche2009-06-12T15:49:40Z2009-06-12T16:26:56Z<p>Also, you don't have the required include for CFileFind. <a href="http://msdn.microsoft.com/en-us/library/f33e1618%28VS.80%29.aspx" rel="nofollow">According to MSDN</a>, you need to include afx.h.</p>
http://stackoverflow.com/questions/986567/maskededit-extender-lost-data-on-postback0MaskedEdit Extender lost data on postbackMichaël Larouche2009-06-12T13:11:52Z2009-06-12T14:42:56Z
<p>I am currently developping an web site that require DateTime entry and I am using MaskEdit extender on the TextBox used to enter the date and time. These DateTime are used as input to compute the total hours and other stuff that need to be displayed back on the same page (for previewing)</p>
<p>However, after the postback using MS AJAX, my computed data shows but my DateTime entries clears. Before I updated to latest AjaxControlToolkit available for .NET 2.0, my entries was corrupted after the postback. The postback is triggered by a LinkButton. Before that I tried using AutoPostBack property of TextBox.</p>
<p>Any ideas for a fix or should I consider ditching MS AJAX and start using another AJAX library either for ASP.NET or going to JS directly.</p>
<p>Note that I can't use .NET 3.5 because the target server is using Windows 2000.....</p>
http://stackoverflow.com/questions/986567/maskededit-extender-lost-data-on-postback/986858#9868580Answer by Michaël Larouche for MaskedEdit Extender lost data on postbackMichaël Larouche2009-06-12T14:15:44Z2009-06-12T14:15:44Z<p>Sure</p>
<p>ASPX part:</p>
<pre><code> <td><asp:TextBox id="textBeginStation" runat="server"></asp:TextBox></td>
<td>
<asp:TextBox ID="textBeginServiceDateTime" runat="server"></asp:TextBox>
<ajaxToolkit:MaskedEditExtender
ID="textBeginServiceDateTimeMaskedEditExtender" runat="server"
TargetControlID="textBeginServiceDateTime" MaskType="DateTime"
Mask="9999/99/99 99:99" UserDateFormat="YearMonthDay"
UserTimeFormat="TwentyFourHour">
</ajaxToolkit:MaskedEditExtender>
</td>
<td>
<asp:TextBox ID="textBeginStationDateTime" runat="server"></asp:TextBox>
<ajaxToolkit:MaskedEditExtender
ID="textBeginStationDateTimeMaskedEditExtender" runat="server"
TargetControlID="textBeginStationDateTime" MaskType="DateTime"
AutoComplete="False" Mask="9999/99/99 99:99" UserDateFormat="YearMonthDay"
UserTimeFormat="TwentyFourHour" EnableViewState="False">
</ajaxToolkit:MaskedEditExtender>
</td>
<td><asp:TextBox ID="textBeginRemarque" runat="server"></asp:TextBox></td>
</code></pre>
<p>This is just a sample, the rest is pretty similar. This is part of a UserControl that gets included inside a UpdatePanel from MS AJAX</p>
<p>The LinkButton Code:</p>
<pre><code>ProductionDependencyFactory depFactory = new ProductionDependencyFactory();
try
{
DateTime beginServiceDateTime = DateTime.Parse(textBeginServiceDateTime.Text);
DateTime beginStationDateTime = DateTime.Parse(textBeginStationDateTime.Text);
DateTime endServiceDateTime = DateTime.Parse(textEndServiceDateTime.Text);
DateTime endStationDateTime = DateTime.Parse(textEndStationDateTime.Text);
NormalTrainTimeMilageCalculator calculator = depFactory.Create<NormalTrainTimeMilageCalculator>();
calculator.BeginStation = textBeginStation.Text;
calculator.BeginServiceDateTime = beginServiceDateTime;
calculator.BeginStationDateTime = beginStationDateTime;
calculator.EndStationDateTime = endStationDateTime;
calculator.EndServiceDateTime = endServiceDateTime;
calculator.EndStation = textEndStation.Text;
labelTotalHour.Text = calculator.TotalTime().Hours.ToString();
labelTotalMinute.Text = calculator.TotalTime().Minutes.ToString();
labelTotalMilage.Text = calculator.TotalMilage().ToString();
}
catch (Exception)
{
// Do nothing
}
</code></pre>
http://stackoverflow.com/questions/774871/why-did-you-learn-c/774882#774882Comment by Michaël Larouche on Why did you learn C?Michaël Larouche2009-10-09T00:26:48Z2009-10-09T00:26:48Z<a href="http://learnyouahaskell.com/" rel="nofollow">learnyouahaskell.com</a> is a great site to learn Haskellhttp://stackoverflow.com/questions/1535136/c-framework-like-qt/1535152#1535152Comment by Michaël Larouche on C framework like Qt ?Michaël Larouche2009-10-08T01:43:11Z2009-10-08T01:43:11ZReally pointless commenthttp://stackoverflow.com/questions/1424303/uses-of-ackermann-function/1424397#1424397Comment by Michaël Larouche on Uses of Ackermann function ?Michaël Larouche2009-09-14T23:46:09Z2009-09-14T23:46:09ZIndeed, theory analysis only give you the base for performance analysis.http://stackoverflow.com/questions/1424303/uses-of-ackermann-function/1424336#1424336Comment by Michaël Larouche on Uses of Ackermann function ?Michaël Larouche2009-09-14T23:22:24Z2009-09-14T23:22:24ZBut it's the inverse of the function, what about the real function ?http://stackoverflow.com/questions/1268207/how-to-create-an-interface-at-runtime/1268247#1268247Comment by Michaël Larouche on How to create an interface at RuntimeMichaël Larouche2009-08-12T19:48:25Z2009-08-12T19:48:25Zerrr this is a Java questionhttp://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111874#111874Comment by Michaël Larouche on Did you ever switch from one programming language to another?Michaël Larouche2009-08-12T13:02:40Z2009-08-12T13:02:40ZThe basic -> assembly path seems very common from people that started programming in the 80's. On these computers, there were mostly the only programming languages you have.http://stackoverflow.com/questions/1265951/what-are-preprocessor-macros-good-for/1265967#1265967Comment by Michaël Larouche on What are preprocessor macros good for?Michaël Larouche2009-08-12T12:54:48Z2009-08-12T12:54:48ZExporting is supported with GCC.http://stackoverflow.com/questions/1257747/what-software-switcher-kvm-do-you-use-for-multi-platform-development/1257765#1257765Comment by Michaël Larouche on What software switcher (KVM) do you use for multi platform development?Michaël Larouche2009-08-11T18:05:20Z2009-08-11T18:05:20ZThe most recent version of Synergy can be found here:
<a href="http://code.google.com/p/synergy-plus/" rel="nofollow">code.google.com/p/synergy-plus</a>http://stackoverflow.com/questions/1251066/am-i-wasting-my-time-learning-c-and-other-low-level-stuff/1251494#1251494Comment by Michaël Larouche on Am I "wasting" my time learning C and other low level stuff ?Michaël Larouche2009-08-10T12:26:37Z2009-08-10T12:26:37ZSame here, I'm glad that my college and university use C as first language. In my university, we've got some people coming from a Java college and they struggle a lot with C++.http://stackoverflow.com/questions/1232217/there-are-some-things-you-just-cant-test/1234664#1234664Comment by Michaël Larouche on There are some things you just can't test!?Michaël Larouche2009-08-06T14:06:57Z2009-08-06T14:06:57ZTest the concrete implementation when you will need it. Like I suggested, use a different project because these kinds of test took time.
In my current project, my NHibernate integration test take about 1 minute to run. I integrated NHibernate late in my development and the tests really helped find the problem faster than if I launched the site and use the UI to test it. It's worth it.http://stackoverflow.com/questions/1207962/c-dynamic-operator/1207966#1207966Comment by Michaël Larouche on C# dynamic operatorMichaël Larouche2009-07-30T18:17:52Z2009-07-30T18:17:52ZI know what the dynamic keyword is supposed to do :Phttp://stackoverflow.com/questions/1207962/c-dynamic-operator/1207966#1207966Comment by Michaël Larouche on C# dynamic operatorMichaël Larouche2009-07-30T17:08:18Z2009-07-30T17:08:18ZWhy do want a dynamic operator ? Maybe you should try using generics or downcast to objecthttp://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1205479#1205479Comment by Michaël Larouche on What are things that make a programmer's life miserable?Michaël Larouche2009-07-30T12:59:03Z2009-07-30T12:59:03ZYeah, I kinda fell the same way for a while, but I realized the thing I hated was the domain and the platform (ASP.NET Webforms).http://stackoverflow.com/questions/1200727/cross-platform-drawing-library/1200782#1200782Comment by Michaël Larouche on Cross-platform drawing libraryMichaël Larouche2009-07-29T15:04:24Z2009-07-29T15:04:24Zalso, SDL does not come with functions to draw primitives he listed. You have to find code done by others or code them yourself.http://stackoverflow.com/questions/1189979/implementing-conditional-in-a-fluent-interface/1190046#1190046Comment by Michaël Larouche on Implementing conditional in a fluent interfaceMichaël Larouche2009-07-29T13:50:32Z2009-07-29T13:50:32ZThanks for the hints.