User Mike Deck - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T03:02:20Zhttp://stackoverflow.com/feeds/user/1247http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/14823/is-ruby-on-rails-ready-for-the-enterprise16Is Ruby On Rails ready for the Enterprise?Mike Deck2008-08-18T15:53:49Z2009-11-15T21:53:05Z
<p>Is anyone out there using RoR for large scale, business critical enterprise applications?</p>
<p>Are there any other lightweight web-frameworks based on dynamic languages that people are using for these types of apps?</p>
<p>If you're not using these types of application frameworks what's stopping you? Is it simply the inertia associated with any large IT organization. Are the speed and stability issues of these frameworks enough of a problem that they offset the improvements in development cycle times?</p>
http://stackoverflow.com/questions/130095/most-useful-free-java-libraries/130140#13014056Answer by Mike Deck for Most useful free Java libraries?Mike Deck2008-09-24T21:39:26Z2009-11-09T19:33:09Z<p><a href="http://joda-time.sourceforge.net/" rel="nofollow">Joda Time</a> is an absolute must if you're doing anything beyond the most trivial of date computations.</p>
<p>Note: <a href="https://jsr-310.dev.java.net/" rel="nofollow">JSR 310</a> aims to fix a lot of the problems with the standard Java Date and Time API.</p>
http://stackoverflow.com/questions/1239751/pythonic-comparison-functions1Pythonic Comparison FunctionsMike Deck2009-08-06T15:39:06Z2009-08-06T16:31:49Z
<p>For the sake of simplicity, let's say I have a Person class in Python. This class has fields for firstname, lastname, and dob.</p>
<pre><code>class Person:
def __init__(self, firstname, lastname, dob):
self.firstname = firstname;
self.lastname = lastname;
self.dob = dob;
</code></pre>
<p>In some situations I want to sort lists of Persons by lastname followed by firstname followed by dob. In other situations I want to sort first by dob, then by lastname and finally by firstname. And sometimes I just want to sort by firstname.</p>
<p>The naive solution for creating the first comparison function would be something like this:</p>
<pre><code>def comparepeople(person1, person2):
if cmp(person1.lastname, person2.lastname) == 0:
if cmp(person1.firstname, person2.firstname) == 0:
return cmp(person1.dob, person2.dob);
return cmp(person1.firstname, person2.firstname);
return cmp(person1.lastname, person2.lastname);
</code></pre>
<p>It would seem like there should be an easy way to define comparison functions like these using a meta-programming approach where all I would need to do is provide the field names in order of precedence instead of writing these very verbose, ugly comparison methods. But I've only started playing with Python recently and haven't found anything like what I'm describing.</p>
<p>So the question is, what is the most Pythonic way to write a comparison function for a class with multiple comparable constituent members?</p>
http://stackoverflow.com/questions/12815/anyone-using-executable-requirements11Anyone Using Executable Requirements?Mike Deck2008-08-15T22:02:15Z2009-07-08T13:06:35Z
<p>In my limited experience with them executable requirements (i.e. specifying all requirements as broken automated tests) have proven to be amazingly successful. I've worked on one project in which we placed a heavy emphasis on creating high-level automated tests which exercised all the functionality of a given use case/user story. It was really amazing to me how much easier development became after we began this practice. Implementing features became so much easier after writing a test and we were able to make major architectural changes to the system with all the confidence in the world that everything still worked the same as it did yesterday.</p>
<p>The biggest problem we ran into was that the tools for managing these types of tests aren't very good. We used Fitnesse quite a bit and as a result I now hate the Fit framework.</p>
<p>I'd like to know 1) if anyone else has experience developing using this type of test-driven requirement definition and 2) what tools you all used to facilitate this.</p>
http://stackoverflow.com/questions/1088666/maven-javaee-application-client-plugin/1088795#10887950Answer by Mike Deck for maven javaee application client pluginMike Deck2009-07-06T19:24:44Z2009-07-06T19:24:44Z<p>I'm not very familiar with the JavaEE support in Maven, but it looks like the ejb plugin can generate a client jar as well if configured properly. Check this page out:</p>
<p><a href="http://maven.apache.org/plugins/maven-ejb-plugin/examples/generating-ejb-client.html" rel="nofollow">Maven EJB Plugin - Generating an EJB client</a></p>
http://stackoverflow.com/questions/976388/how-to-get-method-signatures-from-a-jar-file/976440#9764402Answer by Mike Deck for How to get method signatures from a jar file?Mike Deck2009-06-10T15:42:03Z2009-06-10T15:42:03Z<p>As Scott said, you can use Eclipse to get a lot of what you're looking for.</p>
<p>I would recommend getting the <a href="http://jadclipse.sourceforge.net/wiki/index.php/Main%5FPage" rel="nofollow">JadClipse plugin</a> which will decompile the .class files on the fly and show you actual Java code as you browse the classes in the IDE.</p>
http://stackoverflow.com/questions/95419/what-are-all-the-different-ways-to-create-an-object-in-java1What are all the different ways to create an object in Java?Mike Deck2008-09-18T18:35:16Z2009-05-31T12:32:45Z
<p>Had a conversation with a coworker the other day about this.</p>
<p>There's the obvious which is to use a constructor, but what other ways are there?</p>
http://stackoverflow.com/questions/539108/should-developers-really-have-private-offices/539254#5392546Answer by Mike Deck for Should developers *really* have private offices?Mike Deck2009-02-11T22:58:29Z2009-02-11T22:58:29Z<p>Why settle for one or the other? If you have the space and resources I think a "Caves and Commons" approach is ideal. You spend the majority of your time developing out in the commons where the whole team can easily collaborate on the tasks at hand, but there are "caves" available when you need to segregate yourself from the group for one reason or another.</p>
<p>You can read Cockburn's description of team communication patterns and how different office layouts leverage (or ignore) them. <a href="http://alistair.cockburn.us/ASD+book+extract:+%22Communicating,+cooperating+teams%22" rel="nofollow">http://alistair.cockburn.us/ASD+book+extract:+%22Communicating,+cooperating+teams%22</a></p>
http://stackoverflow.com/questions/530225/how-should-location-info-be-passed-in-the-visitor-pattern/530399#5303991Answer by Mike Deck for How should "location" info be passed in the visitor pattern?Mike Deck2009-02-09T22:41:45Z2009-02-09T23:07:02Z<p>You're still naming the methods backwards from the way I believe the pattern is traditionally used. Visitable (or Element) usually has an accept method and Visitor has a visitX method. I'm going to use the traditional naming scheme to avoid confusing myself :-)</p>
<p>IMO the easiest way to get this to work is by having multiple methods on your Visitor interface, one for each type of child. It doesn't matter if the children are the same language type or not, if they are semantically different they should be handled by different methods.</p>
<p>You should also try to avoid polluting the Visitor implementation with details about the structure of the Visitable. In order to do this I would move the accept method up into the Visitable interface instead of exposing childA and childB on that interface. Then each implementation of Visitable can decide which method on the visitor to call for each child. This communicates to the visitor all of the "location" context and gives you a nice, clean, decoupled solution.</p>
<p>Here's an example of what I'm thinking. Again, I've swapped the method names back to what I'm used to.</p>
<pre><code>interface Visitable {
accept(Visitor v)
}
interface Visitor {
visitA(Node a)
visitB(Node b)
}
class Container implements Visitable {
private Node childA
private Node childB
...
void accept(Visitor v) {
v.visitA(childA)
v.visitB(childB)
}
}
</code></pre>
<p>Now you get to have an implementation of Visitor that has 2 different methods, one for handling A children and one for handling B children.</p>
http://stackoverflow.com/questions/179460/correct-behavior-for-interface-methods-that-cant-be-implemented6Correct behavior for interface methods that can't be implementedMike Deck2008-10-07T17:10:17Z2009-01-19T16:08:52Z
<p>If I have a class that needs to implement an interface but one or more of the methods on that interface don't make sense in the context of this particular class, what should I do?</p>
<p>For example, lets say I'm implementing an adapter pattern where I want to create a wrapper class that implements <a href="http://java.sun.com/javase/6/docs/api/java/util/Map.html" rel="nofollow">java.util.Map</a> by wrapping some immutable object and exposing it's data as key/value pairs. In this case the methods put and putAll don't make sense as I have no way to modify the underlying object. So the question is what should those methods do?</p>
http://stackoverflow.com/questions/245932/how-to-release-a-project-which-depends-on-a-3rd-party-snapshot-project-in-maven/255011#2550110Answer by Mike Deck for how to release a project which depends on a 3rd party SNAPSHOT project in mavenMike Deck2008-10-31T21:27:38Z2008-10-31T21:27:38Z<p>Just install the jar with a pom you own. I generally change the group and artifact id to make it clear that this is not the official version, but that's generally the best work around for your problem.</p>
http://stackoverflow.com/questions/254276/would-syntax-for-composition-be-a-useful-addition-to-java/254425#2544251Answer by Mike Deck for Would syntax for composition be a useful addition to Java?Mike Deck2008-10-31T18:17:56Z2008-10-31T18:17:56Z<p>I think if you restricted it such that a class could only use this feature to compose a single class it would be somewhat useful and would avoid a lot of the headaches that are being discussed.</p>
<p>Personally I hate inheritance of concrete classes. I'm a big proponent of Item 14 from Bloch's <em>Effective Java</em>, <a href="http://books.google.com/books?id=ZZOiqZQIbRMC&pg=PA71&lpg=PA71&dq=effective+java+composition+over+inheritance&source=bl&ots=UZM06thG21&sig=MQ4wfulnG28_z6TzvxL8uZaszn4&hl=en&sa=X&oi=book_result&resnum=1&ct=result" rel="nofollow">Favor composition over inheritence</a>. I think that something like this would make it a little easier to implement the idiom he recommends in that item.</p>
<p>Honestly, if you really knew what you were doing I'll bet you could write a compiler annotation that would handle this. So assuming you had a class Bar that implemented the interface IBar, your class would look like this:</p>
<pre><code>public class Foo {
@Delegate(IBar.class)
private Bar bar;
// initialize bar via constructor or setter
}
</code></pre>
<p>Then during compilation Foo could be made to implement IBar and any of the methods on that interface that weren't already implemented by Foo would end up being generated to look like this:</p>
<pre><code>public Baz method1(Qux val) {
return bar.method1(val);
}
</code></pre>
<p>As mentioned above you would want to make the restriction that only one field per class could use this annotation. If multiple fields had this annotation you'd probably want to throw a compilation error. Alternatively you could figure out a way to encode some sort of precedence model into the parameters passed to it.</p>
<p>Now that I've written this out that seems kinda cool. Maybe I'll play around with it next week. I'll update this if I manage to figure anything out.</p>
http://stackoverflow.com/questions/247346/how-to-retrieve-maven-properties-inside-a-junit-test/247601#2476015Answer by Mike Deck for How to retrieve maven properties inside a JUnit test?Mike Deck2008-10-29T17:03:16Z2008-10-29T17:03:16Z<p>You have 2 options:</p>
<p>1) Pass the file path to your test via a system property (<a href="http://maven.apache.org/plugins/maven-surefire-plugin/examples/system-properties.html" rel="nofollow">docs</a>)</p>
<p>In your pom you could do something like:</p>
<pre><code><project>
[...]
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<systemProperties>
<property>
<name>filePath</name>
<value>/path/to/the/file</value>
</property>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
[...]
</project>
</code></pre>
<p>Then in your test you can do:</p>
<pre><code>System.getProperty("filePath");
</code></pre>
<p>2) Put the file inside src/test/resources under the same package as your test class. Then you can get to the file using Class.getResourceAsStream(String fileName) (<a href="http://java.sun.com/javase/6/docs/api/java/lang/Class.html#getResourceAsStream(java.lang.String" rel="nofollow">docs</a>)).</p>
<p>I would highly recommend option 2 over option 1. Passing things to your tests via system properties is very dirty IMO. It couples your tests unnecessarily to the test runner and will cause headaches down the road. Loading the file off the classpath is the way to go and that's why maven has the concept of a resources directory.</p>
http://stackoverflow.com/questions/244886/from-child-instance-call-base-class-method-that-was-overridden/245039#2450390Answer by Mike Deck for From Child instance call base class method that was overriddenMike Deck2008-10-28T22:01:10Z2008-10-28T22:01:10Z<p>I would ask why you are trying to get this type of behavior. It seems to me that the fact you need to invoke the parent class' implementation of a method is an indication that you have a design flaw somewhere else in the system.</p>
<p>Bottom line though, as others have stated there is no way to invoke the parent class' implementation given the way you've structured your classes. Now within the Dog class you could call</p>
<pre><code>MyBase.Speak()
</code></pre>
<p>which would invoke the parent class' implementation, but from outside the Dog class there's no way to do it.</p>
http://stackoverflow.com/questions/210022/dynamically-positioned-flex-components3Dynamically Positioned Flex ComponentsMike Deck2008-10-16T19:54:39Z2008-10-24T11:08:49Z
<p>I have a requirement on my current project (a Flex app which will be run in Flash player) to display an arbitrary subset of the components on a form while hiding all the other components based on certain aspects of the application state. There are about a dozen different text boxes and drop downs, but some become irrelevant based on previously entered user data and we don't want to display those when we get to this particular form. Every time this form is displayed I could need to show any one of the many permutations of these components.</p>
<p>I'm trying to decide what the best way to approach this problem is. Should I create a Canvas (or other container) with all of the needed controls on it and then just set visible = false on the ones I don't need? The problem then becomes making sure the layout looks decent. I don't want there to be gaps where the hidden controls would have been.</p>
<p>The other option I've thought about is just having a mechanism that could dynamically instantiate the TextInput or CheckBox etc. component and then call container.addChild(control) in order to build up the components and not have to worry about the gap issue.</p>
<p>This seems like a problem that has an idiomatic solution in flex, but I don't know what it is. Neither of these ideas seem great so I'm wondering if anyone else has a better idea.</p>
http://stackoverflow.com/questions/227634/how-do-i-work-around-this-error-while-copying-svn-repository-by-svnsync/228427#2284271Answer by Mike Deck for how do I work around this error while copying SVN repository by svnsync?Mike Deck2008-10-23T03:20:02Z2008-10-23T03:20:02Z<p>Are you just trying to copy the repo once or are you trying to setup an ongoing mirroring scheme?</p>
<p>If it's the former you could let sync go until it fails, then do a diff between the revision it failed on and the previous revision and output that to a file. So if the rev that failed was 135 it would be something like this:</p>
<pre><code>svn diff -r134:135 http://your/repo/url > patch.diff
</code></pre>
<p>Then you can apply this patch file to a working copy of the new repo.</p>
<pre><code>patch -p0 -i patch.diff
</code></pre>
<p>Then just commit the changes to that working copy and kick off svnsync again.</p>
<p>This is pretty hackish, but it might work.</p>
<p>NOTE: I didn't test any of the commands, there might be some syntax errors, but the general approach should work in theory.</p>
http://stackoverflow.com/questions/220026/how-do-i-make-flexbuilder-recognize-my-mxml-files-as-applications-instead-of-comp/220104#2201040Answer by Mike Deck for How do I make FlexBuilder recognize my MXML files as applications instead of components?Mike Deck2008-10-20T21:58:44Z2008-10-20T21:58:44Z<p>Make sure the MXML files are in the main source folder. You can't have a runnable application in a secondary source directory or subdirectory of the main source dir.</p>
http://stackoverflow.com/questions/218507/suggestions-please-for-a-home-version-control-system/218528#2185282Answer by Mike Deck for Suggestions please for a home version control systemMike Deck2008-10-20T13:58:33Z2008-10-20T13:58:33Z<p>I think SVN is really your best bet. Take a look at the documentation <a href="http://svnbook.red-bean.com/nightly/en/svn.reposadmin.create.html" rel="nofollow">here</a> about how to set it up.</p>
<p>I've set up a couple SVN repos on a windows box and never really had a problem especially when you use <a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a></p>
http://stackoverflow.com/questions/213698/maintenance-teams-vs-not-so-focused-development-teams/213731#2137311Answer by Mike Deck for Maintenance teams vs. not-so-focused development teamsMike Deck2008-10-17T20:29:07Z2008-10-17T20:29:07Z<p>If certain apps "belong" to a single programmer or a single team (and they should belong to teams, not individuals) then you just need to make any updates to those projects part of that team's backlog.</p>
<p>If there's a problem with a legacy app then that work gets added along with the appropriate acceptance criteria to the team's backlog. Then in the next sprint planning they can accept that "story" into the sprint backlog according to the business's priorities.</p>
http://stackoverflow.com/questions/212321/anyone-know-a-simple-way-using-java-calendar-to-subtract-x-days-to-a-date/212363#2123639Answer by Mike Deck for Anyone know a simple way using java calendar to subtract X days to a date?Mike Deck2008-10-17T14:24:34Z2008-10-17T14:24:34Z<p><a href="http://stackoverflow.com/questions/212321/anyone-know-a-simple-way-using-java-calendar-to-subtract-x-days-to-a-date#212334">Anson's answer</a> will work fine for the simple case, but if you're going to do any more complex date calculations I'd recommend checking out <a href="http://joda-time.sourceforge.net/" rel="nofollow">Joda Time</a>. It will make your life much easier.</p>
<p>FYI in Joda Time you could do</p>
<pre><code>DateTime dt = new DateTime();
DateTime fiveDaysEarlier = dt.minusDays(5);
</code></pre>
http://stackoverflow.com/questions/212239/what-java-exception-class-to-use-for-http-errors/212317#2123172Answer by Mike Deck for What Java exception class to use for HTTP errors?Mike Deck2008-10-17T14:13:09Z2008-10-17T14:13:09Z<p>Check out the page on <a href="http://hc.apache.org/httpclient-3.x/exception-handling.html" rel="nofollow">Exception Handling for HttpClient</a></p>
<p>To answer your question though there appears to be an <a href="http://hc.apache.org/httpclient-3.x/apidocs/index.html" rel="nofollow">org.apache.commons.httpclient.HttpException</a> class that is probably a good fit.</p>
<p>If you do need a custom exception class for this I would think <a href="http://java.sun.com/javase/6/docs/api/java/io/IOException.html" rel="nofollow">java.io.IOException</a> would be the correct super class to use.</p>
http://stackoverflow.com/questions/209558/column-order-of-results-from-rails-activerecord-findbysql-call/209750#2097500Answer by Mike Deck for Column order of results from rails ActiveRecord find_by_sql call.Mike Deck2008-10-16T18:40:53Z2008-10-16T18:40:53Z<p>How are you creating these "report screens"? Are they erb templates? Are you just calling .each on columns to print them all out?</p>
<p>If that's the case you could override the columns() method in your models to return an ordered array.</p>
http://stackoverflow.com/questions/209478/could-i-improve-this-method-with-duck-typing/209616#2096161Answer by Mike Deck for Could I improve this method with duck typing?Mike Deck2008-10-16T17:59:09Z2008-10-16T17:59:09Z<p>Duck typing is really just a nuanced version of polymorphism. In a statically typed language like Java you'd have to create an explicit interface that told the compiler all of the methods that a particular variable can accept. With a dynamic language like Ruby the interfaces still exist in an abstract sense, they're just implicit.</p>
<p>The problem is the fact that you're accepting two different data structures into one method. The way to make duck typing work is to require that all the objects that get passed to your method obey the same contract (i.e. it's always a hash of Integers to [Foo] objects.) The process of converting a hash with Property keys into the correct structure should be the job of the client code. That can be done very easily with a simple wrapper class or a conversion function consisting of just the body of your elseif clause.</p>
<p>Bottom line it's up to the guy calling the method to make sure his parameters all quack the way your method expects them to quack. If they don't, he's the one who need's to figure out how to make his turkey quack like a duck, not you.</p>
http://stackoverflow.com/questions/209495/best-ruby-idiom-for-nil-or-zero/209542#20954212Answer by Mike Deck for Best ruby idiom for "nil or zero"Mike Deck2008-10-16T17:35:04Z2008-10-16T17:35:04Z<p>First off I think that's about the most concise way you can check for that particular condition.</p>
<p>Second, to me this is a code smell that indicates a potential flaw in your design. Generally nil and zero shouldn't mean the same thing. If possible you should try to eliminate the possibility of val being nil before you hit this code, either by checking that at the beginning of the method or some other mechanism.</p>
<p>You might have a perfectly legitimate reason to do this in which case I think your code is good, but I'd at least consider trying to get rid of the nil check if possible.</p>
http://stackoverflow.com/questions/209074/rails-x-fastcgi/209200#2092001Answer by Mike Deck for Rails x FastCGIMike Deck2008-10-16T15:59:55Z2008-10-16T15:59:55Z<p>I would tend to avoid FastCGI. I haven't used it myself but I've read enough horror stories about it to never want to.</p>
<p>If the hosting company is going to be completely responsible for managing the server instance and you can trust them to be the ones who will make sure the app is always up and running, then maybe it would work. I doubt this is the case though, and if you don't own the servers I think you'll run into a lot of problems troubleshooting the all the weird bugs FastCGI will inevitably throw at you.</p>
http://stackoverflow.com/questions/202322/how-do-i-print-a-word-document-in-java-without-opening-it/202493#2024930Answer by Mike Deck for How do I print a Word document in Java without opening it?Mike Deck2008-10-14T19:25:15Z2008-10-14T19:25:15Z<p>Would it be possible to render the document in HTML instead? If you could do that then you could allow the users to print via the browser fairly simply. You might also have an easier time with PDF's, at the very least it would be more accessible across different platforms.</p>
<p>If you're forced to use MS Word then you're going to be very limited in what you can do. As <a href="http://stackoverflow.com/questions/202322/how-do-i-print-a-word-document-in-java-without-opening-it#202341">Leonel</a> mentioned, I think ActiveX is going to be your only choice and even then the document would have to be opened, you just might be able to launch Word from the browser automatically. You might even be able to embed an instance of Word into IE via ActiveX, but I'm not 100% sure about that.</p>
http://stackoverflow.com/questions/198831/activerecord-association-question-getting-hasmany-through-to-work/198956#1989561Answer by Mike Deck for Activerecord association question: getting has_many :through to workMike Deck2008-10-13T20:40:07Z2008-10-13T20:40:07Z<p>I don't think ActiveRecord can handle doing a 2 step join in a has_many relationship. In order for this to work you'll have to join users to team_users to teams to coaches. The through option only allows for one extra join.</p>
<p>Instead you'll have to use the :finder_sql option and write out the full join clause yourself. Not the prettiest thing in the world, but that's how it goes with ActiveRecord when you try to do something out of the ordinary.</p>
http://stackoverflow.com/questions/195020/what-is-the-best-way-to-use-javadoc-to-document-a-java-enum/195074#1950741Answer by Mike Deck for What is the best way to use JavaDoc to document a Java enum?Mike Deck2008-10-12T03:58:53Z2008-10-12T03:58:53Z<p>To answer the first part of your question, you do have to separate each enum value with a comma. As far as I know, there's no way around that.</p>
<p>Personally I don't have a problem with the code the way you've presented it. Seems like a perfectly reasonable way to document an enum to me.</p>
http://stackoverflow.com/questions/105121/production-logging-in-flex3Production Logging in FlexMike Deck2008-09-19T20:11:01Z2008-10-10T14:44:32Z
<p>Is there any way to capture the trace statements of your Flex app while not running in debug mode?</p>
<p>Or is there any other way to output logging information when not running a debugger?</p>
<p>Currently I'm trying to fix a bug that only presents itself in very specific deployment scenario, but I could see this being useful in some instances for customers to send logs to tech support when they are reporting bugs or other problems.</p>
http://stackoverflow.com/questions/105121/production-logging-in-flex/191534#1915341Answer by Mike Deck for Production Logging in FlexMike Deck2008-10-10T14:19:39Z2008-10-10T14:19:39Z<p>There's a project on Google Code called <a href="http://code.google.com/p/flash-thunderbolt/wiki/ThunderBoltAS3" rel="nofollow">Thunder Bolt</a> that allows you to write log messages that will appear in <a href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow">FireBug</a> when running the application in Firefox (assuming of course that you have that extension installed.)</p>
<p>Logging with this tool is as simple as:</p>
<pre><code>import org.osflash.thunderbolt.Logger;
var myNumber: int = 5;
var myString: String = "Lorem ipsum";
Logger.error ("Logging two objects: A number typed as int and a string", myNumber, myString);
</code></pre>
http://stackoverflow.com/questions/1766470/function-composition-in-javaComment by Mike Deck on Function composition in JavaMike Deck2009-11-19T21:50:52Z2009-11-19T21:50:52ZSo when you say you want to do map(map(map(stepFunction()))), does that mean you've got a list of lists of lists and you want to call stepFunction on every element of all of the child lists in that hierarchy? I'm still not completely clear on what you're trying to accomplish.http://stackoverflow.com/questions/1734592/i-am-having-a-problem-with-pointers-in-java-how-do-i-fix-a-java-lang-nullpointerComment by Mike Deck on I am having a problem with pointers in java. How do I fix a java.lang.NullPointerException ? Mike Deck2009-11-14T17:31:45Z2009-11-14T17:31:45ZAs Adam mentioned the stack trace would be extremely helpful along with the line numbers for this code within the context of the actual file it's in. Once you know which line of your code is throwing the exception it's just a matter of figuring out which variable on that line is set to null.http://stackoverflow.com/questions/1239751/pythonic-comparison-functions/1239861#1239861Comment by Mike Deck on Pythonic Comparison FunctionsMike Deck2009-08-06T16:20:45Z2009-08-06T16:20:45ZThe point is, I need the comparison function to be different in different situations and even if I did implement <b>cmp</b> on Person, I'd still have to use something like Ned describes for the implementation.http://stackoverflow.com/questions/130095/most-useful-free-java-libraries/130140#130140Comment by Mike Deck on Most useful free Java libraries?Mike Deck2009-07-28T05:14:36Z2009-07-28T05:14:36ZI haven't looked at it in depth, but I was under the impression that the proposed API would borrow heavily from the Joda Time project. I believe all of the value objects will be immutable and the primary domain concepts they are modeling look to be quite similar to those in Joda Time. Also, Stephen Colebourne, the project lead from Joda Time is one of the leads on the JSR 310 project as well. If/when this JSR is added to the public release the Joda Time project will likely die off or become radically transformed, and the new API will essentially be what Joda Time 2.0 would have been.http://stackoverflow.com/questions/998506/how-can-i-list-every-path-in-a-directed-graph-c/998520#998520Comment by Mike Deck on how can i list every path in a directed graph? (C#)Mike Deck2009-06-15T22:30:22Z2009-06-15T22:30:22ZKeep in mind that this only works assuming your graph is acyclical, and there is exactly one "foot" node which has no out bound edges. These seem like reasonable assumptions, but I'd state them explicitly before turning in the assignment if it were me. Without both of these assumptions, the problem and solution are more complex.http://stackoverflow.com/questions/998553/how-to-assert-something-at-compile-time-in-javaComment by Mike Deck on How to assert something at compile time in Java?Mike Deck2009-06-15T22:11:50Z2009-06-15T22:11:50ZI don't know that I agree that "data structures should have certain relationships that can't be directly described in Java." Your examples seem invalid. The relationship of an array's size to the rest of program can be expressed by defining the array size with a variable. And if you have an Enum in one package, why wouldn't you simply reference it from another? In fact I can't think of any reason for multiple Enums to have corresponding elements. If Foo is supposed to have the same elements as Bar why not just use Foo everywhere? Isn't that the point of an Enum?http://stackoverflow.com/questions/115039/is-there-any-reason-to-not-use-my-ioc-as-a-general-settings-repository/115183#115183Comment by Mike Deck on Is there any reason to not use my IoC as a general Settings Repository?Mike Deck2009-02-18T21:18:41Z2009-02-18T21:18:41ZI would argue that the vast majority of the time you shouldn't be instantiating (or retrieving from the container) any objects inside your classes. They should be passed in by the container via a constructor arg or setter. Otherwise you're really just turning the container into a big object cash.http://stackoverflow.com/questions/530225/how-should-location-info-be-passed-in-the-visitor-pattern/530399#530399Comment by Mike Deck on How should "location" info be passed in the visitor pattern?Mike Deck2009-02-09T22:53:39Z2009-02-09T22:53:39ZThe point is Visitable should have an accept method (or in your case visit) in which it calls different methods on the visitor which give it the appropriate "location" context.http://stackoverflow.com/questions/247346/how-to-retrieve-maven-properties-inside-a-junit-test/247601#247601Comment by Mike Deck on How to retrieve maven properties inside a JUnit test?Mike Deck2008-10-31T17:57:28Z2008-10-31T17:57:28ZThat's cool. Just be aware that if you ever have to run the tests out of a JAR (which is unlikely) you might get some weird behavior.http://stackoverflow.com/questions/244886/from-child-instance-call-base-class-method-that-was-overridden/244915#244915Comment by Mike Deck on From Child instance call base class method that was overriddenMike Deck2008-10-28T21:56:00Z2008-10-28T21:56:00Z"Another alternative, is to declare the object as an ANIMAL, and then cast it to a DOG when you need the dog's extended properties." That last part is not true. The declared type of the variable is meaningless when it comes to how a given instance behaves polymorphically.http://stackoverflow.com/questions/213368/how-can-i-reliably-discover-the-full-path-of-the-ruby-executableComment by Mike Deck on How can I reliably discover the full path of the Ruby executable?Mike Deck2008-10-17T20:22:59Z2008-10-17T20:22:59ZDon't update your question with an answer inline, just add an answer to your own question. That way people can upvote your answer.http://stackoverflow.com/questions/212425/creating-routes-with-an-optional-path-prefixComment by Mike Deck on Creating routes with an optional path prefixMike Deck2008-10-17T16:33:22Z2008-10-17T16:33:22ZIn your example you only reference 1 controller, but I take it you want to create this route for every controller?http://stackoverflow.com/questions/73491/missing-aar-file-in-maven2-multi-project-build/120938#120938Comment by Mike Deck on Missing aar file in maven2 multi-project buildMike Deck2008-10-17T14:04:47Z2008-10-17T14:04:47ZThat's too bad that you had to resort to using the dependency plugin, but I'm glad you got it to work. I'm thinking this is probably a bug in the war plugin though, you might want to post on the Maven usergroup and see if someone there can help you out.http://stackoverflow.com/questions/210022/dynamically-positioned-flex-components/210105#210105Comment by Mike Deck on Dynamically Positioned Flex ComponentsMike Deck2008-10-16T20:35:17Z2008-10-16T20:35:17ZI just updated the question. The first paragraph should give you a better idea of what I'm trying to do now.
I don't think 12 states would be more complex, but I'm still not convinced I could do it with only 12 states even if they were nested. Only 1 state can be active at at time right?http://stackoverflow.com/questions/210022/dynamically-positioned-flex-components/210105#210105Comment by Mike Deck on Dynamically Positioned Flex ComponentsMike Deck2008-10-16T20:24:19Z2008-10-16T20:24:19ZI should have been more clear, I could end up needing to display any combination of about a dozen components. If I understand view states correctly that would mean I would need a distinct state for every possible combination of controls which would be a lot.