User moffdub - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T09:20:04Z http://stackoverflow.com/feeds/user/10759 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/137550/is-programming-math 19 Is Programming == Math? moffdub 2008-09-26T03:11:29Z 2009-12-08T18:07:26Z <p>I've heard many times that all programming is really a subset of math. <a href="http://c2.com/cgi-bin/wiki?ProgrammingIsMath" rel="nofollow">Some suggest</a> that OO, at its roots, is mathematically based. I don't get the connection. Aside from some obvious examples:</p> <ul> <li>using induction to prove a recursive algorithm</li> <li>formal correctness proofs</li> <li>functional languages</li> <li>lambda calculus</li> <li>asymptotic complexity</li> <li>DFAs, NFAs, Turing Machines, and theoretical computation in general</li> <li>the fact that everything on the box is binary</li> </ul> <p>In what ways is programming really a subset of math?</p> <p>I'm looking for an explanation that might have relevance to enterprise/OO development (if there is a strong enough connection, that is). Thanks in advance.</p> <p>Edit: as I stated in a comment to an answer, math is uber important to programming, but what I struggle with is the "subset" argument.</p> http://stackoverflow.com/questions/142179/which-object-should-i-mock 0 Which object should I mock? moffdub 2008-09-26T21:46:44Z 2009-10-04T03:41:35Z <p>I am writing a <a href="http://martinfowler.com/eaaCatalog/repository.html" rel="nofollow">repository</a>. Fetching objects is done through a DAO. Creating and updating objects is done through a Request object, which is given to a RequestHandler object (a la <a href="http://en.wikipedia.org/wiki/Command_pattern" rel="nofollow">Command pattern</a>). I didn't write the DAO, Request, or RequestHandler, so I can't modify them.</p> <p>I'm trying to write a test for this repository. I have mocked out both the DAO and RequestHandler. My goal is to have the mocked RequestHandler simply add the new or updated object to the mocked DAO. This will create the illusion that I'm talking to the DB. This way, I don't have to mock the repository for all the classes that call this repository.</p> <p>The problem is that the Request object is this gob of string blobs and various alphanumeric codes. I'm pretty sure XML is involved too. It's sort of a mess. Another developer is writing the code to create the Request object based on the objects being stored. And since RequestHandler takes in Requests and not the object I'm storing, it can't update the mocked DAO.</p> <p>So the question is: do I mock the Request too, or should I wait until the other guy, who is kind of slow, to finish his code before I write the test? Or screw it and mock out the entire repository when testing the classes that call the repository?</p> <p>BTW, I say "mock" not in the NMock sense, but rather like faking the DB with an in-memory collection.</p> http://stackoverflow.com/questions/231607/constructing-a-domain-object-from-multiple-dtos 4 Constructing a Domain Object from multiple DTOs moffdub 2008-10-23T21:32:19Z 2009-10-04T03:07:41Z <p>Suppose you have the canonical Customer domain object. You have three different screens on which Customer is displayed: External Admin, Internal Admin, and Update Account.</p> <p>Suppose further that each screen displays only a subset of all of the data contained in the Customer object. </p> <p>The problem is: when the UI passes data back from each screen (e.g. through a DTO), it contains only that subset of a full Customer domain object. So when you send that DTO to the Customer Factory to re-create the Customer object, you have only part of the Customer.</p> <p>Then you send this Customer to your Customer Repository to save it, and a bunch of data will get wiped out because it isn't there. Tragedy ensues.</p> <p>So the question is: how would you deal with this problem?</p> <p>Some of my ideas:</p> <ul> <li><p>include an argument to the Repository indicating which part of the Customer to update, and ignore others</p></li> <li><p>when you load the Customer, keep it in static memory, or in the session, or wherever, and then when you receive one of the DTOs from the UI, update only the parts relevant to the DTO</p></li> </ul> <p>IMO, both of these are kludges. Are there any other better ideas?</p> <p>@chadmyers: Here is the problem.</p> <p>Entity has properties A, B, C, and D.</p> <p>DTO #1 contains properties for B and C.</p> <p>DTO #2 contains properties for C and D.</p> <p>UI asks for DTO #1, you load entity from the repository, convert it into DTO #1, filling in only B and C, and give it to the UI.</p> <p>Now UI updates B and sends the DTO back. You recreate the entity and it has only B and C filled in because that is all that is contained in the DTO.</p> <p>Now you want to save the entity, which has only B and C filled in, with A and D null/blank. The repository has no way of knowing if it should update A and D in persistence as blanks, or whether it should ignore them.</p> http://stackoverflow.com/questions/517014/any-way-to-reconcile-feature-envy-with-long-parameter-list 0 Any way to reconcile Feature Envy with Long Parameter List? moffdub 2009-02-05T17:51:16Z 2009-06-14T16:00:07Z <p>I have been thinking about the Feature Envy smell lately. Suppose I have an object called DomainObject, that responds to a message "exportTo:someExport". This is basically the DomainObject's way to provide a copy of its internal state:</p> <pre><code>exportTo:someExport someExport setX:myX. someExport setY:myY. someExport setZ:myZ. </code></pre> <p>That way, in the data access layer, I could say something like this:</p> <pre><code>saveNew:someDomainObject |domainObjectExport| domainObjectExport := DomainObjectSQLWriter new. someDomainObject exportTo:domainObjectExport. db exec:(domainObjectExport generateInsertStatement). </code></pre> <p>This is an example of Feature Envy. In order to refactor, I should extract this code into a single message to someExport:</p> <pre><code>exportTo:someExport someExport setX:myX setY:myY setZ:myZ </code></pre> <p>However, now the setX:setY:setZ: message suffers from Long Parameter List (imagine 10 parameters instead of 3). Is there a way to have it both ways, or is Feature Envy only a bad smell if data is flowing out of the object you are envious of?</p> http://stackoverflow.com/questions/930289/how-can-i-find-all-the-methods-that-call-a-given-method-in-java/931416#931416 -1 Answer by moffdub for How can I find all the methods that call a given method in Java? moffdub 2009-05-31T05:55:19Z 2009-05-31T05:55:19Z <p><a href="http://www.headwaysoftware.com/products/structure101/index.php" rel="nofollow">Structure 101</a> excels at this kind of analysis.</p> http://stackoverflow.com/questions/14987/do-you-listen-to-anything-while-programming/727982#727982 0 Answer by moffdub for Do you listen to anything while programming? moffdub 2009-04-07T23:27:28Z 2009-04-07T23:27:28Z <p>Let's see how far I can drive down my own answer.</p> <ul> <li>Until noon EST: <a href="http://www.live365.com/stations/whitecluster69" rel="nofollow">Dark ambient music</a>.</li> <li>From noon to 3pm EST: <a href="http://www.rushlimbaugh.com/" rel="nofollow">El Rushbo</a>.</li> <li>From 3pm to 5pm EST: <a href="http://www.drlaura.com/" rel="nofollow">Dr. Laura</a>.</li> </ul> http://stackoverflow.com/questions/713441/should-non-technical-project-managers-be-paid-more-than-programmers/713457#713457 5 Answer by moffdub for Should non-technical project managers be paid more than programmers? moffdub 2009-04-03T10:50:29Z 2009-04-03T10:50:29Z <p>As a general rule, I don't think you should be a manager of anyone unless you have solid experience in the work of the people you are managing.</p> <p>Personally, I don't care that I'd be paid more as a manager. I would absolutely hate the work, so the pay raise isn't worth it.</p> http://stackoverflow.com/questions/623352/business-objects-vs-entities/623825#623825 0 Answer by moffdub for Business objects vs. entities moffdub 2009-03-08T16:31:18Z 2009-03-08T16:31:18Z <p>All entities are business objects, but not all business objects are entities.</p> <p>Entities are business objects whose identity is defined not by their attributes, but by an identifier, like Product's ID.</p> <p>An example of a business object that is not an entity could be Color. Color derives its identity from its RBG values.</p> <p>I'm referring to, of course, <a href="http://devlicio.us/blogs/casey/archive/2009/02/13/ddd-entities-and-value-objects.aspx" rel="nofollow">Entities and Value Objects in Domain-Driven Design</a>.</p> http://stackoverflow.com/questions/600456/what-should-be-learned-right-now-to-keep-skills-updated 3 What should be learned right now to keep skills updated? moffdub 2009-03-01T20:35:39Z 2009-03-02T06:57:07Z <p>Occasionally I'll run across a developer who is unemployed and says their skills are "out-dated." These are usually COBOL developers or people who never have touched an OO language. So, I'm not concerned right now.</p> <p>While I do play with mini side projects at home, tinker with different designs for enterprise apps, write a technical blog, and learn things I find interesting (the latest of which is Smalltalk), I can't help but wonder that if I don't learn something to enhance employability, I might end up "out-dated" too.</p> <p>At some point, OO and everything that is "now" will become "then." So, what are the latest languages, design methodologies, paradigms, and development tools to get familiar with to prevent becoming "out-dated" and unemployed?</p> http://stackoverflow.com/questions/588441/how-bad-is-this-code/588594#588594 1 Answer by moffdub for How bad is this code? moffdub 2009-02-26T00:37:23Z 2009-02-26T00:37:23Z <blockquote> <pre><code>((Hashtable)((ArrayList)((Hashtable)MultipleTestPasses[i])["HasMultipleDataSet"])[j])["subject"] </code></pre> </blockquote> <p>Oh... my eyes...</p> http://stackoverflow.com/questions/584507/what-is-the-purpose-of-null/584510#584510 29 Answer by moffdub for What is the purpose of null? moffdub 2009-02-25T02:31:54Z 2009-02-25T23:23:58Z <p><a href="http://dow.ngra.de/2009/02/01/correcting-the-billion-dollar-mistake/" rel="nofollow">Null: The Billion Dollar Mistake</a>. Tony Hoare:</p> <blockquote> <p>I call it my billion-dollar mistake. It was the invention of the null reference in 1965. At that time, I was designing the first comprehensive type system for references in an object oriented language (ALGOL W). My goal was to ensure that all use of references should be absolutely safe, with checking performed automatically by the compiler. <strong>But I couldn't resist the temptation to put in a null reference, simply because it was so easy to implement. This has led to innumerable errors, vulnerabilities, and system crashes, which have probably caused a billion dollars of pain and damage in the last forty years. In recent years, a number of program analysers like PREfix and PREfast in Microsoft have been used to check references, and give warnings if there is a risk they may be non-null.</strong> More recent programming languages like Spec# have introduced declarations for non-null references. This is the solution, which I rejected in 1965.</p> </blockquote> http://stackoverflow.com/questions/584231/do-you-consider-yourself-as-programmer-or-software-engineer/584270#584270 3 Answer by moffdub for Do you consider yourself as programmer or software engineer ? moffdub 2009-02-25T00:26:00Z 2009-02-25T00:26:00Z <p>Funny you should ask: <a href="http://moffdub.wordpress.com/2008/07/03/developer-vs-engineer-vs-programmer/" rel="nofollow">Developer vs. Engineer vs. Programmer</a></p> http://stackoverflow.com/questions/580249/java-leaky-abstraction-checker/580365#580365 2 Answer by moffdub for Java Leaky Abstraction Checker moffdub 2009-02-24T03:32:44Z 2009-02-24T03:32:44Z <p>Since I didn't detect a question in the original post, I will ramble.</p> <p>Any such tool would have to have the user tell it what exceptions qualify as non-leaks for a given class, and anything not on such a list would be a leak.</p> <p>That's just exceptions. As I understand it, leaky abstractions apply to much more. Consider this:</p> <pre><code>class Client { private Integer ID; public Integer ID() { return this.ID; } } </code></pre> <p>Does this qualify as a leak? If later I needed to represent ID as Long, then it does. You might fix such a scenario like this:</p> <pre><code>class Client { private ClientID ID; public ClientID ID() { return this.ID; } } class ClientID { private Integer value; public ClientID(String id) { this.value = Integer.parseInt(id); } public String asString() { return value.toString(); } ... other methods that don't reveal value's type here ... } </code></pre> <p>This would solve the leak out of Client, but now you'd run your tool on ClientID. Is it leaky?</p> <p>This could get even more complicated if you have to examine methods that aren't simple getters. What if ClientID had a method that did some mathematical operation on its ID (indulge me) and returned an Integer. Is that a leak? Does this qualify as leaking that value is an Integer?</p> <p>So I'm not sure if this is a code smell that a machine could easily catch.</p> http://stackoverflow.com/questions/555241/domain-driven-design-and-the-role-of-the-factory-class/571819#571819 2 Answer by moffdub for Domain Driven Design and the role of the factory class moffdub 2009-02-21T00:53:20Z 2009-02-22T19:06:18Z <blockquote> <p>But what is not clear to me is where the factory "layer" lies with a DDD architecture? Should the factory be calling directly into the repository to get its data or the service library?</p> </blockquote> <p>The factory should be the one-stop shop to construct domain objects. Any other part of the code that needs to do this should use the factory.</p> <p>Typically, there are at least three sources of data that are used as input into a factory for domain object construction: input from the UI, the results of queries from persistence, and domain-meaningful requests. So to answer your specific question, the repository would use the factory.</p> <p>Here is an example. I am using <a href="http://www.javaworld.com/javaworld/jw-01-2004/jw-0102-toolbox.html?page=4" rel="nofollow">Holub's Builder pattern</a> here. <strong>Edit</strong>: disregard the use of this pattern. I've started realizing that it <a href="http://moffdub.wordpress.com/2009/02/22/i-suffer-from-ocd-odorless-code-dreamer/" rel="nofollow">doesn't mix too well with DDD factories</a>. </p> <pre><code>// domain layer class Order { private Integer ID; private Customer owner; private List&lt;Product&gt; ordered; // can't be null, needs complicated rules to initialize private Product featured; // can't be null, needs complicated rules to initialize, not part of Order aggregate private Itinerary schedule; void importFrom(Importer importer) { ... } void exportTo(Exporter exporter) { ... } ... insert business logic methods here ... interface Importer { Integer importID(); Customer importOwner(); Product importOrdered(); } interface Exporter { void exportID(Integer id); void exportOwner(Customer owner); void exportOrdered(Product ordered); } } // domain layer interface OrderEntryScreenExport { ... } // UI class UIScreen { public UIScreen(OrderEntryDTO dto) { ... } } // App Layer class OrderEntryDTO implements OrderEntryScreenExport { ... } </code></pre> <p>Here is what the OrderFactory might look like:</p> <pre><code>interface OrderFactory { Order createWith(Customer owner, Product ordered); Order createFrom(OrderEntryScreenExport to); Order createFrom(List&lt;String&gt; resultSets); } </code></pre> <p>The logic for the featured Product and the generation of the Itinerary go in the OrderFactory.</p> <p>Now here is how the factory might be used in each instance.</p> <p>In OrderRepository:</p> <pre><code>public List&lt;Order&gt; findAllMatching(Criteria someCriteria) { ResultSet rcds = this.db.execFindOrdersQueryWith(someCriteria.toString()); List&lt;List&lt;String&gt;&gt; results = convertToStringList(rcds); List&lt;Order&gt; returnList = new ArrayList&lt;Order&gt;(); for(List&lt;String&gt; row : results) returnList.add(this.orderFactory.createFrom(row)); return returnList; } </code></pre> <p>In your application layer:</p> <pre><code>public void submitOrder(OrderEntryDTO dto) { Order toBeSubmitted = this.orderFactory.createFrom(dto); this.orderRepo.add(toBeSubmitted); // do other stuff, raise events, etc } </code></pre> <p>Within your domain layer, a unit test perhaps:</p> <pre><code>Customer carl = customerRepo.findByName("Carl"); List&lt;Product&gt; weapons = productRepo.findAllByName("Ruger P-95 9mm"); Order weaponsForCarl = orderFactory.createWith(carl, weapons); weaponsForCarl.place(); assertTrue(weaponsForCarl.isPlaced()); assertTrue(weaponsForCarl.hasSpecialShippingNeeds()); </code></pre> <blockquote> <p>Where does the factory fit into the following framework: UI > App > Domain > Service > Data</p> </blockquote> <p>Domain.</p> <blockquote> <p>Also, because the factory is the only place allowed for object creation would'nt you get circular references if you wanted to create your objects in your data and service layers?</p> </blockquote> <p>In my example, all dependencies flow from top to bottom. I used the <a href="http://www.objectmentor.com/resources/articles/dip.pdf" rel="nofollow">Dependency Inversion Principle</a> (PDF link) to avoid the problem you speak of.</p> <blockquote> <p>If the role of the factory class is for object creation then what benefits does the service layer have?</p> </blockquote> <p>When you have logic that doesn't fit into any single domain object OR you have an algorithm that involves orchestrating multiple domain objects, use a service. The service would encapsulate any logic that doesn't fit in anything else and delegate to domain objects where it does fit. </p> <p>In the example I scribbled here, I imagine that coming up with an Itinerary for the Order would involve multiple domain objects. The OrderFactory could delegate to such a service.</p> <p>BTW, the hierarchy you described should probably be UI > App > Domain Services > Domain > Infrastructure (Data)</p> <blockquote> <p>I've asked a lot of questions and appreciate any response. What i'am lacking is a sample application which demonstrates how all the layers in a domain driven design project come together...Is there anything out there?</p> </blockquote> <p><a href="http://rads.stackoverflow.com/amzn/click/0321268202" rel="nofollow">Applying Domain Driven Design and Patterns</a> by Jimmy Nilsson is a great compliment to Eric Evans' <a href="http://rads.stackoverflow.com/amzn/click/0321125215" rel="nofollow">Domain-Driven Design</a>. It has lots of code examples, though I don't know if there is an emphasis on layering. Layering can be tricky and is almost a topic separate from DDD.</p> <p>In the Evans book, there is a very small example of layering you might want to check out. Layering is an enterprise pattern, and Martin Fowler wrote <a href="http://rads.stackoverflow.com/amzn/click/0321127420" rel="nofollow">Patterns of Enterprise Application Architecture</a>, which you might find useful too.</p> http://stackoverflow.com/questions/540130/good-domain-driven-design-samples/572868#572868 1 Answer by moffdub for Good Domain Driven Design samples moffdub 2009-02-21T12:03:11Z 2009-02-21T12:03:11Z <p><a href="http://sourceforge.net/projects/timeandmoney/" rel="nofollow">Time and Money</a>, though it leaves a lot to be desired.</p> http://stackoverflow.com/questions/270401/is-oslo-going-to-make-the-role-of-developer-obsolete/567394#567394 2 Answer by moffdub for Is Oslo going to make the role of developer obsolete? moffdub 2009-02-19T21:57:55Z 2009-02-19T21:57:55Z <p>In "<a href="http://blog.slickedit.com/?p=255" rel="nofollow">Eliminating The Programmer</a>", Scott Westfall had this to say:</p> <blockquote> <p>Programmers think more logically. Working through if-then-else conditions is a core capability for any programmer.</p> <p>Programmers have a superior ability to analyze problems and come up with solutions. They excel at analyzing preconditions, sequences of events, and outcomes.</p> <p>Another key ability where programmers typically have an edge is the ability to make <a href="http://moffdub.wordpress.com/2008/12/24/chaos-crusher/" rel="nofollow">order out of chaos</a>. I think that’s because the programmer is responsible for creating order within the program. We break systems into subsystems, subsystems into modules, and modules into units. There are no physical constraints that dictate the structure of the solution.</p> <p>Let’s say that someone does manage to write a tool that allows people to define software and control its behavior without having to write code. The person using this tool will still need all of the other mental abilities of a programmer. <strong>If this were to happen, we haven’t eliminated the programmer; we just changed the job description a little.</strong></p> </blockquote> http://stackoverflow.com/questions/563890/is-there-a-way-to-simulate-a-click-on-an-alert-in-javascript 2 Is there a way to simulate a click on an alert in JavaScript? moffdub 2009-02-19T03:52:50Z 2009-02-19T16:27:22Z <p>I have a page with an iframe whose source page is in a separate domain. From time to time, the source page generates an alert. When it does so, it stops what it is doing until the user clicks OK to the alert.</p> <p>What I would like to do is programmatically click OK on this alert so the source page can get back to being useful. Is this possible?</p> http://stackoverflow.com/questions/530741/whats-the-difference-between-a-procedural-program-and-an-object-oriented-program/531135#531135 1 Answer by moffdub for What's the difference between a procedural program and an object oriented program? moffdub 2009-02-10T05:20:35Z 2009-02-10T05:20:35Z <p>For a fairly in-your-face example of the difference between procedural and OO, try learning Smalltalk. In Smalltalk, everything, and I mean everything is an object. There are no if-statements or while-loops. You achieve that functionality by sending messages to (a.k.a. invoking methods on) other objects. It really makes your head spin at first, but I think you'll quickly grok what OO is supposed to be.</p> http://stackoverflow.com/questions/524075/lazy-loading-whats-the-best-approach/524178#524178 1 Answer by moffdub for Lazy loading - what's the best approach? moffdub 2009-02-07T17:35:19Z 2009-02-07T17:35:19Z <p>You can use the <a href="http://en.wikipedia.org/wiki/Lazy_loading#Virtual_proxy" rel="nofollow">Virtual Proxy</a> pattern, along with the <a href="http://en.wikipedia.org/wiki/Observer_pattern" rel="nofollow">Observer pattern</a>. This would give you lazy loading without the Person class having explicit knowledge about how Children are loaded.</p> http://stackoverflow.com/questions/498512/how-to-be-an-eco-friendly-programmer/498927#498927 -2 Answer by moffdub for How to be an eco-friendly programmer? moffdub 2009-01-31T14:43:53Z 2009-01-31T14:43:53Z <p><a href="http://www.webguild.org/2009/01/googling-bad-for-environment-says-harvard.php" rel="nofollow">Stop Googling</a>:</p> <blockquote> <p>Harvard physicist, Alex Wissner-Gross, says that performing two Google searches uses up as much energy and can generate about the same amount of carbon dioxide as boiling the kettle for a cup of tea.</p> <p>A typical search generates about 7g of CO2 and boiling a kettle generates about 15g. It is estimated that more than 200 million searches are generated daily worldwide.</p> </blockquote> <p>After you get that one nailed down, stop breathing.</p> http://stackoverflow.com/questions/494187/how-do-you-test-methods-that-take-enums/494234#494234 1 Answer by moffdub for How do you test methods that take enums. moffdub 2009-01-30T01:53:01Z 2009-01-30T01:53:01Z <p>If I understand you correctly, your method under test is supposed to pass the enum value to the COM object and return the string that the COM object returns. So the goal of the test is to make sure that the method is talking to the COM object correctly.</p> <p>I would mock out the COM object to return the expected string for each enum value, then pass that to the method.</p> http://stackoverflow.com/questions/490990/should-i-still-learn-c-if-i-already-know-assembly/491316#491316 1 Answer by moffdub for Should I still learn C if I already know Assembly? moffdub 2009-01-29T11:53:58Z 2009-01-29T11:53:58Z <p>Learning a new language is always a fun thing to do, especially if it's significantly different, paradigm-wise, from what you already know. So I'd say go for it. </p> <p>I found it very interesting that C has still been one of <a href="http://www.langpop.com/#normalized" rel="nofollow">the most sought-after languages on major search engines and book sites</a>.</p> http://stackoverflow.com/questions/485451/how-is-smalltalks-whiletrue-message-implemented-behind-the-scenes 1 How is Smalltalk's whileTrue message implemented behind the scenes? moffdub 2009-01-27T21:49:25Z 2009-01-28T23:47:10Z <p>I am trying to teach myself Smalltalk. <a href="http://objectsroot.com/squeak/squeak_tutorial-2.html#ss2.5" rel="nofollow">A tutorial</a> has this example of a while loop:</p> <pre><code>|i| i:=5. [i &gt;0] whileTrue:[ Transcript show: ((i*2) asString) ; cr. i:=i-1. ]. </code></pre> <p>As I understand it, whileTrue is a message sent to a BlockClosure, telling the receiving BlockClosure to run the BlockClosure given as the argument as long as the receiver is true.</p> <p>How is the whileTrue message that BlockClosure responds to implemented without a while loop construct in Smalltalk? Or is it implemented in whatever language the run-time is written in?</p> http://stackoverflow.com/questions/481582/how-can-an-object-oriented-programmer-get-his-her-head-around-database-driven-pro/481656#481656 1 Answer by moffdub for How can an object-oriented programmer get his/her head around database-driven programming? moffdub 2009-01-26T22:31:44Z 2009-01-26T22:31:44Z <p>Sounds like you are discovering the <a href="http://blogs.tedneward.com/2006/06/26/The+Vietnam+Of+Computer+Science.aspx" rel="nofollow">Object-Relational Impedance Mismatch</a>.</p> http://stackoverflow.com/questions/478403/can-i-add-and-remove-elements-of-enumeration-at-runtime-in-java/478591#478591 1 Answer by moffdub for Can I add and remove elements of enumeration at runtime in Java moffdub 2009-01-26T00:22:54Z 2009-01-26T00:22:54Z <p>I faced this problem on the <a href="http://moffdub.wordpress.com/2008/04/28/introducing-the-project/" rel="nofollow">formative project of my young career</a>. </p> <p>The approach I took was to save the values and the names of the enumeration externally, and the end goal was to be able to write code that looked as close to a language enum as possible.</p> <p>I wanted my solution to look like this:</p> <pre><code>enum HatType { BASEBALL, BRIMLESS, INDIANA_JONES } HatType mine = HatType.BASEBALL; // prints "BASEBALL" System.out.println(mine.toString()); // prints true System.out.println(mine.equals(HatType.BASEBALL)); </code></pre> <p>And I ended up with something like this:</p> <pre><code>// in a file somewhere: // 1 --&gt; BASEBALL // 2 --&gt; BRIMLESS // 3 --&gt; INDIANA_JONES HatDynamicEnum hats = HatEnumRepository.retrieve(); HatEnumValue mine = hats.valueOf("BASEBALL"); // prints "BASEBALL" System.out.println(mine.toString()); // prints true System.out.println(mine.equals(hats.valueOf("BASEBALL")); </code></pre> <p>Since my requirements were that it had to be possible to add members to the enum at run-time, I also implemented that functionality:</p> <pre><code>hats.addEnum("BATTING_PRACTICE"); HatEnumRepository.storeEnum(hats); hats = HatEnumRepository.retrieve(); HatEnumValue justArrived = hats.valueOf("BATTING_PRACTICE"); // file now reads: // 1 --&gt; BASEBALL // 2 --&gt; BRIMLESS // 3 --&gt; INDIANA_JONES // 4 --&gt; BATTING_PRACTICE </code></pre> <p>I dubbed it the Dynamic Enumeration "pattern", and you read about <a href="http://moffdub.wordpress.com/2008/05/09/dynamic-enumerations/" rel="nofollow">the original design</a> and <a href="http://moffdub.wordpress.com/2009/01/14/dynamic-enumerations-revisited/" rel="nofollow">its revised edition</a>. </p> <p>The difference between the two is that the revised edition was designed after I really started to grok OO and DDD. The first one I designed when I was still writing nominally procedural DDD, under time pressure no less.</p> http://stackoverflow.com/questions/478365/what-is-the-best-approach-to-take-when-you-cant-figure-something-out-and-you-ha/478554#478554 0 Answer by moffdub for What is the best approach to take when you can't figure something out, and you have no one to ask? moffdub 2009-01-25T23:53:41Z 2009-01-25T23:53:41Z <p>I faced this situation for an entire project in which I was the <a href="http://moffdub.wordpress.com/2008/04/28/introducing-the-project/" rel="nofollow">only programmer on the job, responsible for architecture all the way down to maintenance</a>.</p> <p>I dealt with it by aggressive use of Google and programming Q&amp;A sites, though I didn't have SO at the time (resorted to Yahoo! Answers a couple of times). Most of the time I wouldn't find exactly what I needed, and I had to use my brain and do some hard-core trouble-shooting to solve most problems.</p> <p>When you get absolutely stuck behind a brick wall, you need to come up with workarounds that are satisfactory for your end users. Chances are you won't be able to make everything work by sheer force of programming.</p> <p>I agree with another answer here that sometimes getting up and walking away from a problem will often provide you with flashes of insight that would never occur to you while you're behind the keyboard. I have often had my most brilliant ideas come to me while driving or in the shower.</p> http://stackoverflow.com/questions/476348/that-a-ha-moment-for-understanding-oo-design-in-c/478539#478539 1 Answer by moffdub for That A-Ha Moment for Understanding OO Design in C# moffdub 2009-01-25T23:43:09Z 2009-01-25T23:43:09Z <p><a href="http://www.javaworld.com/javaworld/jw-09-2003/jw-0905-toolbox.html" rel="nofollow">This inflammatory article on why getters and setters are evil</a> challenged how I thought I was doing OOP. A few of the points made in the article might be tenuous, but the idea of "tell, don't ask, when possible" revolutionized how I think about OO design and write my code.</p> http://stackoverflow.com/questions/475097/is-there-a-rule-of-thumb-for-when-to-code-a-static-method-vs-an-instance-method/475231#475231 7 Answer by moffdub for Is there a rule of thumb for when to code a static method vs an instance method? moffdub 2009-01-24T00:46:42Z 2009-01-24T00:46:42Z <p>I don't think any of the answers get to the heart of the OO reason of when to choose one or the other. Sure, use an instance method when you need to deal with instance members, but you could make all of your members public and then code a static method that takes in an instance of the class as an argument. Hello C.</p> <p>You need to think about the <strong>messages</strong> the object you are designing responds to. Those will always be your instance methods. If you think about your objects this way, <a href="http://misko.hevery.com/2008/12/15/static-methods-are-death-to-testability/" rel="nofollow">you'll almost never have static methods</a>. Static members are ok in certain circumstances.</p> <p>Notable exceptions that come to mind are the Factory Method and Singleton (use sparingly) patterns. Exercise caution when you are tempted to write a "helper" class, for from there, it is a slippery slope into procedural programming.</p> http://stackoverflow.com/questions/474788/merging-two-domain-objects/474960#474960 1 Answer by moffdub for Merging two domain objects moffdub 2009-01-23T22:54:34Z 2009-01-23T22:54:34Z <p>Possibilities:</p> <ul> <li>If the import process allows it, inject your domain object when it is creating so it actually populates your object.</li> <li>Have your object's implementation be a wrapper around the one created by the import process. Change your factory accordingly.</li> </ul> http://stackoverflow.com/questions/458146/repository-pattern-how-to-lazy-load-or-should-i-split-this-aggregate/471704#471704 1 Answer by moffdub for Repository Pattern: how to Lazy Load? or, Should I split this Aggregate? moffdub 2009-01-23T02:45:29Z 2009-01-23T02:45:29Z <p>It depends on your application's needs. If it is a big problem to load all of the Projects for a given Editor, then try a lazy loading pattern like a <a href="http://en.wikipedia.org/wiki/Lazy_loading#Virtual_proxy" rel="nofollow">Virtual Proxy</a>.</p> <p>Regarding lazily loading the member Editors of a Project, if you use Virtual Proxy, I don't see a problem injecting the proxy with the EditorRepository since I don't consider the proxy to be part of the domain.</p> <p>If you split up the Aggregate, you can investigate the <a href="http://martinfowler.com/eaaCatalog/unitOfWork.html" rel="nofollow">Unit of Work</a> pattern as one solution to atomicity. This problem, though, is not unique to DDD and I'm sure there are other solutions for transactional behavior.</p> http://stackoverflow.com/questions/903572/consequences-of-doing-good-enough-software/903609#903609 Comment by moffdub on Consequences of doing "good enough" software moffdub 2009-05-24T12:44:37Z 2009-05-24T12:44:37Z You must have great requirements stability at your shop. http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/889724#889724 Comment by moffdub on What is the worst interviewee answer? moffdub 2009-05-20T22:48:55Z 2009-05-20T22:48:55Z Senator, may I remind you that you are under oath! http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/890074#890074 Comment by moffdub on What is the worst interviewee answer? moffdub 2009-05-20T22:38:35Z 2009-05-20T22:38:35Z I understand looking at someone sideways who doesn't dabble with code at home. The best developers are also the ones sick enough to enjoy it. http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/889708#889708 Comment by moffdub on What is the worst interviewee answer? moffdub 2009-05-20T22:34:25Z 2009-05-20T22:34:25Z I don't understand why MAXINT is involved. http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/368326#368326 Comment by moffdub on What is the worst interviewee answer? moffdub 2009-05-20T22:23:42Z 2009-05-20T22:23:42Z I really don't think you can interview someone over IM. I think that is contrary to the meaning and spirit of &quot;interview.&quot; http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/220535#220535 Comment by moffdub on What was the strangest coding standard rule that you were forced to follow? moffdub 2009-05-14T21:30:22Z 2009-05-14T21:30:22Z Of course not! &quot;The database does that.&quot; (actual quote from co-worker) http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/750835#750835 Comment by moffdub on What technologies are you using even though they are embarassingly out of date? moffdub 2009-05-03T06:42:18Z 2009-05-03T06:42:18Z I hate PVCS. All it does is get in your way. DAMN YOU PVCS. http://stackoverflow.com/questions/713441/should-non-technical-project-managers-be-paid-more-than-programmers/713457#713457 Comment by moffdub on Should non-technical project managers be paid more than programmers? moffdub 2009-04-03T21:10:38Z 2009-04-03T21:10:38Z @Jens: will you be managing people who clean houses, maintain hardware, architect buildings, develop software, answer phones, and clean windows all at the same time? http://stackoverflow.com/questions/707927/whats-the-funniest-source-code-example-youve-come-across/707937#707937 Comment by moffdub on What's the funniest source code example you've come across? moffdub 2009-04-02T01:33:03Z 2009-04-02T01:33:03Z See that stuff all the time in The Daily WTF. http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/431183#431183 Comment by moffdub on What was your first computer game that got you interested in computers? moffdub 2009-03-15T02:26:08Z 2009-03-15T02:26:08Z Yep, this game is why I'm a programmer today. http://stackoverflow.com/questions/616743/abstract-base-class-or-interface-neither-seem-right/616782#616782 Comment by moffdub on Abstract base class or Interface? Neither seem right. moffdub 2009-03-05T22:41:49Z 2009-03-05T22:41:49Z Since Cache is static, doesn't this mean both subclasses share the same cache? I thought one requirement was that they both maintain their own cache. http://stackoverflow.com/questions/616743/abstract-base-class-or-interface-neither-seem-right/616785#616785 Comment by moffdub on Abstract base class or Interface? Neither seem right. moffdub 2009-03-05T22:32:40Z 2009-03-05T22:32:40Z Leave singletons out of it. At the risk of sounding enterprisey, create a CacheFactory that maintains the invariant that each no more than one cache per subclass is ever handed out. http://stackoverflow.com/questions/616743/abstract-base-class-or-interface-neither-seem-right/616785#616785 Comment by moffdub on Abstract base class or Interface? Neither seem right. moffdub 2009-03-05T22:01:00Z 2009-03-05T22:01:00Z Good thing we have the &quot;load new answers&quot; feature. I was about to post this. http://stackoverflow.com/questions/600456/what-should-be-learned-right-now-to-keep-skills-updated/601341#601341 Comment by moffdub on What should be learned right now to keep skills updated? moffdub 2009-03-05T03:13:21Z 2009-03-05T03:13:21Z Spoken like a true coder, a generic, pattern-based, timeless answer. I agree that on-the-job learning is essential for our field, and I think where or how it occurs is irrelevant. When we have to do it, we do it. http://stackoverflow.com/questions/600456/what-should-be-learned-right-now-to-keep-skills-updated/600497#600497 Comment by moffdub on What should be learned right now to keep skills updated? moffdub 2009-03-05T03:11:10Z 2009-03-05T03:11:10Z Considered this for accepted answer as well. Questioning how we code and design is how we improve, and I'm constantly doubting myself. :)