Mike Deck

2,261
Reputation
125 views

Registered User

Name Mike Deck
Member for 1 year
Seen yesterday
Website
Location US
Age 26
I'm primarily a Java developer with experience working with several other technologies including Ruby/Rails, C# and ASP.Net, and Flex.
Nov
19
comment Function composition in Java
So 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.
Nov
14
comment I am having a problem with pointers in java. How do I fix a java.lang.NullPointerException ?
As 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.
Nov
12
revised Why is java.lang.CharSequence designed as an Interface?
Fixed grammar and phrasing
Nov
9
accepted Would syntax for composition be a useful addition to Java?
Nov
9
revised Most useful free Java libraries?
removing comment about JSR 310 being in Java 7 since it has slipped
Nov
4
awarded  Notable Question
Oct
20
awarded  Popular Question
Sep
23
revised How do you return two values from a single method?
fixing spelling error
Aug
19
awarded  Popular Question
Aug
14
awarded  Yearling
Aug
6
revised Pythonic Comparison Functions
the answer was missing a set of parens which resulted in a syntax error
Aug
6
comment Pythonic Comparison Functions
The point is, I need the comparison function to be different in different situations and even if I did implement cmp on Person, I'd still have to use something like Ned describes for the implementation.
Aug
6
revised Pythonic Comparison Functions
added tag for keyfunction based on accepted answer
Aug
6
asked Pythonic Comparison Functions
Aug
1
awarded  Popular Question
Jul
29
revised How do I write a for loop in bash
added iterator tag
Jul
28
comment Most useful free Java libraries?
I 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.
Jul
6
answered maven javaee application client plugin
Jul
6
accepted Correct behavior for interface methods that can’t be implemented
Jun
15
comment how can i list every path in a directed graph? (C#)
Keep 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.
Jun
15
comment How to assert something at compile time in Java?
I 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?
Jun
10
answered How to get method signatures from a jar file?