User pmlarocque - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T00:54:53Z http://stackoverflow.com/feeds/user/7419 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1902136/advice-on-starting-a-large-multi-threaded-programming-project/1902617#1902617 0 Answer by pmlarocque for Advice on starting a large multi-threaded programming project pmlarocque 2009-12-14T18:28:27Z 2009-12-14T21:25:44Z <p>Whatever technology your going to write this, take a look a <a href="http://rads.stackoverflow.com/amzn/click/0201310090" rel="nofollow">this must read book on concurrency "Concurrent programming in Java"</a> and for .Net I highly recommend the <a href="http://code.google.com/p/retlang/" rel="nofollow">retlang library</a> for concurrent app.</p> http://stackoverflow.com/questions/1862231/git-exclude-file/1862260#1862260 0 Answer by pmlarocque for Git - exclude file pmlarocque 2009-12-07T19:19:02Z 2009-12-07T19:19:02Z <p>Add the file name to a .gitignore file.</p> <p><a href="http://ftp.df.lth.se/pub/software/scm/git/docs/gitignore.html" rel="nofollow">Link</a></p> http://stackoverflow.com/questions/159280/do-ocunit-and-ocmock-work-on-the-iphone-sdk 12 Do OCUnit and OCMock work on the iPhone SDK? pmlarocque 2008-10-01T19:22:46Z 2009-12-05T17:31:49Z <p>I simply could not make it work, and I am wondering if I am wasting my time, or if I am simply stupid!</p> <p>Sorry I don't have the exact error I have right now. But I just want to know if it work or not!</p> http://stackoverflow.com/questions/1178244/is-doing-a-bit-of-freelancing-while-working-full-time-a-good-idea/1805863#1805863 2 Answer by pmlarocque for Is doing a bit of freelancing while working full time a good idea? pmlarocque 2009-11-26T22:01:26Z 2009-11-26T22:01:26Z <p>Support is the main problem IMO, your customers will want responsive support in case of problems, but you wont be able to because you'll be at your day job.</p> http://stackoverflow.com/questions/179840/integrating-with-great-plains-best-way 3 Integrating with Great Plains, best way ? pmlarocque 2008-10-07T18:52:29Z 2009-08-23T00:18:57Z <p>Hello,</p> <p>I can't find much information around the web about it. Has anyone used both eConnect and the Dynamics web services to interact (read/write) with Great Plains. I am looking for the pros and cons of both approaches.</p> <p>This product will be installed and configured on various sites, so ease of configuration is really important. I usually hate to mess with IIS.</p> <p>Should be able to target GP 9 and 10.</p> <p>Thank you</p> http://stackoverflow.com/questions/829793/nhibernate-get-and-load 0 Nhibernate Get and Load. pmlarocque 2009-05-06T14:11:27Z 2009-08-17T13:00:01Z <p>Hello</p> <p>I am fixing a codebase using NHibernate and I found out that instead of using Get or Load to find entities by ID they were using a query.</p> <p>Like : </p> <blockquote> <p><code>session.CreateCriteria(typeof(T)).Add(Expression.AllEq(propertyNameValues)).List&lt;T&gt;();</code></p> </blockquote> <p>where the propertyNameValues is a IDictionnary containing "ID" and the id value.</p> <p>Trying to replace it with :</p> <blockquote> <p><code>session.Get&lt;T&gt;(id);</code></p> </blockquote> <p>Nhibernate throws a No Persister found for my class.</p> <p>But there is obviously one as the first method works, my google-fu only found links where it was people forgetting to set the given hbm to embedded ressources or the mapping assembly in the nhibernate configuration.</p> <p>I tried Get(id) , Get(typeof(T),id), Get("ClassName",id) all throw same error.</p> <p>Here is the mapping as requested (thank you)</p> <pre><code>&lt;class name="Domain.Customers.Customer, Domain" table="Customer" lazy ="true"&gt; &lt;id name="ID" column="id" access="field.lowercase-underscore" type="int"&gt; &lt;generator class="identity" /&gt; &lt;/id&gt; </code></pre> <p>This is the mapping of one class but it's generic for all my entitites.</p> <p>Thanks for any pointer.</p> http://stackoverflow.com/questions/1266246/ms-gp-econnect-create-eft-bank 0 MS GP eConnect create EFT Bank pmlarocque 2009-08-12T13:43:13Z 2009-08-12T20:42:56Z <p>Hello,</p> <p>Simply trying to create via eConnect the EFT Bank informations on a customer. You go inside a customer - > address - > EFT Bank. I cannot find any informations in the eConnect documentation or on the web of the correct method to use. Trying my chance here.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1266246/ms-gp-econnect-create-eft-bank/1268620#1268620 0 Answer by pmlarocque for MS GP eConnect create EFT Bank pmlarocque 2009-08-12T20:42:56Z 2009-08-12T20:42:56Z <p>There no way except writing directly inside the database tables, this is for latest version : Dynamics GP v 10.</p> http://stackoverflow.com/questions/888137/nhibernate-map-state-pattern 0 NHibernate map state pattern pmlarocque 2009-05-20T14:10:05Z 2009-05-20T20:47:52Z <p>Hello,</p> <p>Given a class which encapsulate a State... </p> <p>Lets say :</p> <pre><code>class StateOwner { State CurrentState {get;set;} } static class StateFactory { static State GetStateXYZ() { return new StateXYZ(); } } </code></pre> <p>Now I have no interest to persist my different states in the datebase. I just want to be able to have the correct state when I load back the StateOwner class.</p> <p>It's propably something like a with a discriminator, but I don't know how to do it for a class (StateXYZ) which is not persisted in the DB.</p> <p>Thanks for your time!</p> http://stackoverflow.com/questions/560818/do-you-rebuild-or-enhance-enterprise-applications/560957#560957 0 Answer by pmlarocque for Do you rebuild or enhance enterprise applications ? pmlarocque 2009-02-18T12:59:33Z 2009-02-18T12:59:33Z <p>I would only consider a rewrite if it's to change the technology/platform of the product. If not refactoring is the way to go IMO, because you never end up with the clean code base you were dreaming off.</p> http://stackoverflow.com/questions/559209/lightweight-thread-pool-libraries-in-net/559564#559564 1 Answer by pmlarocque for Lightweight Thread Pool Libraries in .NET pmlarocque 2009-02-18T01:55:49Z 2009-02-18T01:55:49Z <p><a href="http://code.google.com/p/retlang/" rel="nofollow">Retlang</a> rocks! Or <a href="http://ayende.com/Blog/archive/2008/08/01/Rhino-Queues.aspx" rel="nofollow">Rhino Queues</a> from Ayende.</p> http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/556848#556848 1 Answer by pmlarocque for What do you consider the 1st principle(s) of programming? pmlarocque 2009-02-17T13:44:31Z 2009-02-17T13:44:31Z <p>You have to resolve all the problems in the world with "if, for, while".</p> http://stackoverflow.com/questions/534054/model-view-presenter-how-to-pass-entities-between-view 4 Model view presenter, how to pass entities between view ? pmlarocque 2009-02-10T20:28:38Z 2009-02-11T13:45:47Z <p>Edit : Accepted Chris Holmes response, but always ready to refactor if someone come up with a better way! Thanks!</p> <p>Doing some winforms with MVP what is the best way to pass an entity to another view.</p> <p>Let say I have a CustomerSearchView/Presenter, on doubleClick I want to show the CustomerEditView/Presenter. I don't want my view to know about the model, so I can't create a ctor that take an ICustomer in parameters.</p> <p>my reflex would be,</p> <p>CustomerSearchView create a new CustomerEditView, which create it's own presenter. Then my customerSearchView would do something like :</p> <blockquote> <p>var customerEditView = new CustomerEditView();</p> <p>customerEditView.Presenter.Customer = this.Presenter.SelectedCustomer;</p> </blockquote> <p>Other possible approach would be a CustomerDTO class, and make a CustomerEditView that accept one of those CustomerDTO, but I think it's a lot of work something simple.</p> <p>Sorry for basic question but all example I can find never reach that point, and it's a brownfield project, and the approach used soo far is giving me headache...</p> <p>Thanks!</p> http://stackoverflow.com/questions/351959/is-there-any-good-mvc-mvp-frameworks-or-other-application-frameworks-for-net-win/527116#527116 0 Answer by pmlarocque for Is there any good MVC/MVP frameworks or other application frameworks for .NET Winforms? pmlarocque 2009-02-09T04:30:54Z 2009-02-09T04:30:54Z <p><a href="http://mvcsharp.org/Default.aspx" rel="nofollow">MVC#</a></p> http://stackoverflow.com/questions/477748/what-are-the-best-c-net-books/477799#477799 1 Answer by pmlarocque for What are the best C# .NET books? pmlarocque 2009-01-25T15:11:57Z 2009-01-25T15:11:57Z <p>CLR via C#,</p> <p>C# in Depth - thanks Jon!,</p> <p>Programming .Net components by Juval Lowy.</p> http://stackoverflow.com/questions/466897/how-will-python-and-ruby-applications-be-affected-by-net/467031#467031 0 Answer by pmlarocque for How will Python and Ruby applications be affected by .NET? pmlarocque 2009-01-21T21:12:41Z 2009-01-21T21:12:41Z <p>You answer your first question with the second one, if you don't use anything from .Net only the original libs provided by the implementation of the language, you could interpret your *.py or *.rb file with another implementation and it should work.</p> <p>The advantage would be if your a .Net shop you usually take care of having the right framework installed on client machine etc... well if you want python or ruby code, you now need to support another "framework" need to distribute install, take care of version problem etc... So there 2 advantages, using .Net framework power inside another language + keep the distribution/maintenance as simple as possible.</p> http://stackoverflow.com/questions/448440/generic-exception-over-webservices 3 Generic Exception over webservices. pmlarocque 2009-01-15T20:57:08Z 2009-01-20T21:36:35Z <p>I am integrating with MS Dynamics GP WebServices from C# and I am not sure how to handle exception.</p> <p>If I do a GetCustomer with a inexistant ID, the web services return me a "generic" SoapException and the message is "Business object not found." So the only way I see to be sure it's an invalid ID and not any other error, is by parsing the error message, I find this solution extremely fragile. My GP version is English, on customer site it's gonna be french and I have no idea in which language web services message gonna be. I am thinking about catching it, parsing the message and throw a more meaningful error type. </p> <p>Do you see a better option ?</p> http://stackoverflow.com/questions/452391/recommended-books-on-concurrency-synchronization-mechanisms/452411#452411 3 Answer by pmlarocque for Recommended books on concurrency / synchronization mechanisms pmlarocque 2009-01-16T23:29:21Z 2009-01-16T23:29:21Z <p><a href="http://rads.stackoverflow.com/amzn/click/0201310090" rel="nofollow">Concurrent programming in Java</a> is a bible on best practice, not just for Java. Bob Martin latest book : <a href="http://rads.stackoverflow.com/amzn/click/0132350882" rel="nofollow">Clean Code</a> as nice chapter on how to make concurrent programming part of your code... clean!</p> http://stackoverflow.com/questions/448440/generic-exception-over-webservices/451496#451496 0 Answer by pmlarocque for Generic Exception over webservices. pmlarocque 2009-01-16T18:42:10Z 2009-01-16T18:42:10Z <p>For information to people interested in the topics, Jacob Proffitt response look like the way to go. here a snipper from Dynamics GP documentation:</p> <pre><code>catch(SoapException soapErr) { // If a validation exception occurred, the logid will be in a child node if(soapErr.Detail.HasChildNodes == true) { // Create a guid for the logid value in the soap exception Guid guid = new Guid(soapErr.Detail.InnerText); // Get the validation result object validationResult = wsDynamicsGP.GetLoggedValidationResultByKey(guid, context); // Display the number of validation exceptions MessageBox.Show("Number of validation exceptions: " + validationResult.Errors.Length.ToString()); } </code></pre> <p>}</p> <p>But in the case I cited : GetCustomer with an unexisting ID, the line "soapErr.Detail.HasChildNodes" is false so it fails.</p> <p>The webservices seem full of funny behavior, this will take longer than I expected :(.</p> http://stackoverflow.com/questions/440019/who-should-pay-for-programming-books/440038#440038 11 Answer by pmlarocque for Who should pay for programming books? pmlarocque 2009-01-13T17:53:17Z 2009-01-13T18:13:38Z <p>I tend to make my job pay for technical books on specific technologies, lets say WCF. Because they change fast and often and they will be outdated fast enough. </p> <p>I buy with my money the concept/practice books, like Domain-driven design or Refactoring or GOF design patterns, as they are books I often come back and understand more of it as I become a better developer.</p> http://stackoverflow.com/questions/375472/what-is-the-best-way-for-the-domain-layer-to-call-out-to-the-ui/375484#375484 1 Answer by pmlarocque for What is the best way for the domain layer to "call out" to the UI pmlarocque 2008-12-17T18:12:04Z 2008-12-17T18:27:10Z <p>The presenter or the controller, depending if you do MVC or MVP should know about it, not the domain, the domain will assert ( defensive coding ) is as all needed values ok, or throw an exception, not ask for it. </p> <p>So let say you don't supply the number, your model throw a AuthorizationNumberRequiredException, then your presenter handle it from there. So your domain is not coupled to the presenter, it simply throw errors, your presenter must know how to handle it, but it not duplicating the logic.</p> http://stackoverflow.com/questions/364155/what-type-of-programming-tasks-do-you-find-most-interesting-challenging/364954#364954 0 Answer by pmlarocque for What type of programming tasks do you find most interesting/challenging? pmlarocque 2008-12-13T07:22:37Z 2008-12-13T07:22:37Z <p>Understanding the domain and making a clean design out of it. Also, I enjoy doing lower level more technical stuff, like communication with new hardware, solving threadings problem. etc...</p> http://stackoverflow.com/questions/363659/dealing-with-application-redesign/363780#363780 0 Answer by pmlarocque for Dealing with application redesign pmlarocque 2008-12-12T18:52:52Z 2008-12-12T18:52:52Z <p>I really don't know the scope of the projects. But 4 months to redesign a system which as 100 tables seem unrealistic. Except ,maybe, if you know the domain very well.</p> <p>my 0.02$</p> http://stackoverflow.com/questions/339356/tag-cloud-web-service/350283#350283 0 Answer by pmlarocque for Tag Cloud web service? pmlarocque 2008-12-08T17:41:50Z 2008-12-08T17:41:50Z <p>Maybe you could make a use of this : <a href="http://www.wordle.net/" rel="nofollow">http://www.wordle.net/</a></p> http://stackoverflow.com/questions/349420/how-to-gain-professional-credibility-faster-at-a-new-workplace/350276#350276 1 Answer by pmlarocque for How to gain professional credibility faster at a new workplace? pmlarocque 2008-12-08T17:36:39Z 2008-12-08T17:36:39Z <p>Deliver and stay focused on getting the job done.</p> http://stackoverflow.com/questions/349833/what-programming-jobs-do-you-aspire-to/350256#350256 0 Answer by pmlarocque for What programming jobs do you aspire to? pmlarocque 2008-12-08T17:32:13Z 2008-12-08T17:32:13Z <p>Being my own boss. Simply to use the tool and language I like. I am a .Net developer in my resume and will continue to be simply because "real" experience is what count when they hire you. It very hard to escape this once your started...</p> <p>I wish I could put the bread on the table programming Ruby and various other tools as needed. Doing a product I like and care about. I am a bit sick of doing software so people can produce/sale more, when we already live in a overconsumption/overproduction world.</p> http://stackoverflow.com/questions/326256/what-is-the-best-software-project-management-book/326261#326261 3 Answer by pmlarocque for What is the best software project management book? pmlarocque 2008-11-28T17:22:47Z 2008-11-28T17:29:33Z <p><a href="http://pragprog.com/titles/jrpm/manage-it" rel="nofollow">Manage IT</a>, rocks, won Jolt 2008 award. But I must say that "Head first software development" is almost perfect, if you manage to apply every practice in it, you'll be better than 99% of the people in this industry. It's may look not serious, but it is!</p> http://stackoverflow.com/questions/273108/which-programming-languages-have-helped-you-to-understand-programming-better/273147#273147 3 Answer by pmlarocque for Which programming languages have helped you to understand programming better? pmlarocque 2008-11-07T18:45:09Z 2008-11-07T18:45:09Z <p>Not as general as your question, but learning Erlang with this <a href="http://pragprog.com/titles/jaerlang/programming-erlang" rel="nofollow">excellent book</a>, helped me understand and make effective multi-threaded code.</p> http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/262189#262189 1 Answer by pmlarocque for What's the best/easiest GUI Library for Ruby? pmlarocque 2008-11-04T15:30:48Z 2008-11-04T15:30:48Z <p><a href="http://limelight.8thlight.com/main/sparkle" rel="nofollow">Limelight</a> I really enjoy the theator metaphor.</p> http://stackoverflow.com/questions/262089/back-end-choice-for-a-new-dynamic-programming-language/262100#262100 0 Answer by pmlarocque for Back-end choice for a new dynamic programming language? pmlarocque 2008-11-04T15:12:35Z 2008-11-04T15:12:35Z <p>.NET as the DLR now that sit on top of the CLR for Dynamic language.</p> http://stackoverflow.com/questions/1842140/is-there-any-cause-for-concern-using-log4net-with-net-3-5-and-later/1842165#1842165 Comment by pmlarocque on is there any cause for concern using log4net with .NET 3.5 and later pmlarocque 2009-12-03T19:06:37Z 2009-12-03T19:06:37Z that the right answer! http://stackoverflow.com/questions/309258/c-and-net-interview-questions/309295#309295 Comment by pmlarocque on C# and .NET Interview Questions pmlarocque 2009-12-03T18:50:49Z 2009-12-03T18:50:49Z @John Kraft if I am building a car and pick a MacPherson suspension type and my handling is bad, I need to know how it work at a low level to fix it or make right decision to replace it for another type. http://stackoverflow.com/questions/888137/nhibernate-map-state-pattern Comment by pmlarocque on NHibernate map state pattern pmlarocque 2009-05-22T13:52:19Z 2009-05-22T13:52:19Z Only way I found was to make an enum for each state class, save the current state as a int, and change the StateOwner.CurrentState for StateOwner.GetState() which call the StateFactory with the enum value. Works because the State class can be considered as a value object. But it look'n'feel like monkey patching to me. http://stackoverflow.com/questions/888137/nhibernate-map-state-pattern Comment by pmlarocque on NHibernate map state pattern pmlarocque 2009-05-22T13:47:13Z 2009-05-22T13:47:13Z The class State (StateXYZ) is not persisted, but I need the state owner to know how to persist it's current State. So it will instantiate right state class. StateOwner.CurrentState need to be persisted but NH does not know of State class, which is my problem. http://stackoverflow.com/questions/829793/nhibernate-get-and-load Comment by pmlarocque on Nhibernate Get and Load. pmlarocque 2009-05-06T15:42:40Z 2009-05-06T15:42:40Z Well seem related to the fact they call this method via reflection and it's in the Generic class. So I decided to let it call it the wrong way in most place, and simply override the base method in classes where it's called often. Thanks! http://stackoverflow.com/questions/829793/nhibernate-get-and-load/829831#829831 Comment by pmlarocque on Nhibernate Get and Load. pmlarocque 2009-05-06T15:24:07Z 2009-05-06T15:24:07Z I mean the &quot;propertyNameValues&quot; is there standard way of doing for other query... like key = &quot;Number&quot; Value = &quot;1234&quot; ... but the method GetByID simply redirect to this method using key = &quot;ID&quot; value = &quot;1&quot;. And as posted by Ayende : <a href="http://ayende.com/Blog/archive/2009/04/30/nhibernate-ndash-the-difference-between-get-load-and-querying-by.aspx" rel="nofollow">ayende.com/Blog/archive/&hellip;</a> this is not the good way to do it. http://stackoverflow.com/questions/534054/model-view-presenter-how-to-pass-entities-between-view/534674#534674 Comment by pmlarocque on Model view presenter, how to pass entities between view ? pmlarocque 2009-02-11T13:44:54Z 2009-02-11T13:44:54Z I think events are a good approach to this problem and as you said in conjunction with a IoC it make very clean code. http://stackoverflow.com/questions/534054/model-view-presenter-how-to-pass-entities-between-view/534092#534092 Comment by pmlarocque on Model view presenter, how to pass entities between view ? pmlarocque 2009-02-11T13:43:55Z 2009-02-11T13:43:55Z well that almost like I said except that you use a method instead of a property to set the customer. Thanks. http://stackoverflow.com/questions/488928/how-do-i-get-back-into-real-programming-should-i/488940#488940 Comment by pmlarocque on How do I get back into *real* programming? Should I? pmlarocque 2009-01-28T20:07:06Z 2009-01-28T20:07:06Z Did it to learn Ruby. http://stackoverflow.com/questions/480432/do-you-pseudo-code/480486#480486 Comment by pmlarocque on Do you pseudo-code? pmlarocque 2009-01-26T18:16:17Z 2009-01-26T18:16:17Z That from Code complete, isn't? http://stackoverflow.com/questions/480627/why-wont-anyone-accept-public-fields-in-c/480635#480635 Comment by pmlarocque on Why won't anyone accept public fields in C#? pmlarocque 2009-01-26T18:15:26Z 2009-01-26T18:15:26Z Ignore Iraimbilanja comment please, Cody is right. http://stackoverflow.com/questions/362226/whats-your-next-programming-language-and-why/362235#362235 Comment by pmlarocque on What's your next programming language? And why? pmlarocque 2009-01-22T03:46:54Z 2009-01-22T03:46:54Z Rails is a neat framework, but the value lies in Ruby language. Sorry had to say ths. http://stackoverflow.com/questions/448440/generic-exception-over-webservices/448779#448779 Comment by pmlarocque on Generic Exception over webservices. pmlarocque 2009-01-16T14:55:17Z 2009-01-16T14:55:17Z It's a step in the right direction but it does not work. In GP helps. I says to get the Guid needed by &quot;GetLoggedValidationResultByKey&quot; from &quot;soapErr.Detail.InnerText&quot; and in the case of &quot;GetCustomerByKey&quot; is invalid key, that property is empty.... I'll just parse the error for now I think. http://stackoverflow.com/questions/448440/generic-exception-over-webservices/448779#448779 Comment by pmlarocque on Generic Exception over webservices. pmlarocque 2009-01-15T22:57:29Z 2009-01-15T22:57:29Z Thanks will investigate. http://stackoverflow.com/questions/448440/generic-exception-over-webservices/448519#448519 Comment by pmlarocque on Generic Exception over webservices. pmlarocque 2009-01-15T21:28:15Z 2009-01-15T21:28:15Z Thanks, yes I was glad to see that all the services I needed were available via web services or I would have trap with eConnect.