Michael Easter

2,832
reputation
166 views

Registered User

name Michael Easter
member for 1 year
seen 1 hour ago
website
location St Louis, Missouri, USA
age 40
Software composer, cyber-scriber, runner/triathlete.
20h
comment Are multiple conditional operators in this situation a good idea?
I think it is a legitmate idiom but it strikes me as being too cute by half. I don't like it.
1d
accepted Is using an if() … return an accepted practise ?
2d
answered how to become a good python coder
2d
comment Extract Integer Part in String
Well, it would work for your example and for "small" numbers. It will clearly fail for large numbers that won't fit into an int.
2d
answered Extract Integer Part in String
Dec
12
revised How and where are Annotations used in Java?
grammar
Dec
11
answered Is using an if() … return an accepted practise ?
Dec
9
revised Can someone provide a bare bones Ant build script for Hibernate?
used URL shortener
Dec
9
answered Can someone provide a bare bones Ant build script for Hibernate?
Dec
8
comment which language to use for very large data set and lot of computation involved
what is your approximate deadline and background? Someone suggested java and Hadoop which could be very powerful but a signifiant learning curve.
Dec
6
awarded  Mortarboard
Dec
5
comment java synchronized block for more than 1 objects?
Putting them in a new class may help clarify what you want to do, so I would recommend that. However, that doesn't impact the thread-safety at all. I like the answer that uses explicit locks (below).
Dec
4
comment A way to catch up to modern programming techniques
can you provide some example concepts with which you're struggling?
Dec
4
comment Clean up code in finalize() or finally()?
IIRC, a single thread is dedicated to running finalize() on various objects. It is one way to bring a system to its knees in terms of performance.
Dec
4
answered Which Antlr book is “best” ?
Dec
3
comment Python, PowerShell, or Other?
why not edit the answer?
Dec
1
comment Have you applied Game Theory on a project?
ps. I sincerely think this is an interesting question. SO does not agree, with its "subjective!" warning, so I've marked as community wiki.
Dec
1
asked Have you applied Game Theory on a project?
Nov
30
answered How do I manage my ideas/personal projects to completion?
Nov
30
revised Diamond Inheritance in C++
typo
Nov
29
comment What does the ‘Enterprise Ready’ mean?
lol... very nice
Nov
28
accepted TimeZone problem in Java
Nov
28
comment Importing Contacts in to an address book GUI from a file using BufferedWriter method
Your best bet is to use a true IDE, fix the formatting, and start commenting out chunks until it starts to compile. When it does, re-introduce pieces back in until you find the precise location. That said, it is probably an extra "}" or ")" somewhere.
Nov
28
comment What makes Ruby an Elegant Language?
One can argue that elegance is subjective, and as such reflects what one brings to the table. However, in many areas (art, architecture, music, programming languages), there is generally a consensus on the existence of Elegant Design. Languages definitely differ in that sense. One would be hard-pressed to favour COBOL over Smalltalk, for example.
Nov
28
answered TimeZone problem in Java
Nov
28
answered Grails log4j configuration
Nov
27
comment How can I place validating constraints on my method input parameters?
I forgot to mention that there is a subtle advantage to throwing an IllegalArg exception versus a NullPointer. In the case of the former, the API author is clearly telling you something about the contract. (i.e. You are left wondering if you are dealing with a bug.)
Nov
27
answered How can I place validating constraints on my method input parameters?
Nov
27
awarded  
Nov
26
comment How to check if an integer is power of 3?
Questions often give rise to new questions, but I recommend considering generalizations. e.g. "power of N?" where N is an arbitrary integer.
Nov
24
comment Tool to find duplicate keys and value in properties file
Rather than a tool, you may want to consider an integration test. It sounds weird, but I've written one (with JUnit) to help prevent an issue with properties files and our 3rd party translation staff.
Nov
16
accepted Pre Java 5 collections and the unwillingness to change
Nov
14
comment java serializable interface
I've updated the answer to be a bit more clear (hopefully).
Nov
14
revised java serializable interface
elaborated in response to comment
Nov
14
answered java serializable interface
Nov
12
comment Iterative Cartesian Product in Java
Agreed, the performance could be wretched. I guess you are really asking for an algorithm rather than a coding style?
Nov
12
answered Iterative Cartesian Product in Java
Nov
12
comment Iterative Cartesian Product in Java
sorry, I didn't realize you were looking for iterative only. I guess this falls under a general suggestion.
Nov
12
answered Iterative Cartesian Product in Java
Nov
11
answered How can i Rename File???
Nov
11
revised whether reading swing is worth it?
edited title
Nov
11
answered Groovy String to int
Nov
11
comment Java: When to make methods static v. instance
+1 Note that static imports can make the utility classes very clean, which is a rare case for statics. e.g. Something like an assertion framework for design-by-contract.
Nov
10
answered Have you also become memory-lazy as a programmer? How do you overcome it?
Nov
8
comment Can a program output a copy of itself
It wasn't until this moment that I equated a quine with RNA. Where are the quine vaccines, I ask! Save yourselves, people!
Nov
4
answered Specify a character value as an offset from a constant in Java
Nov
4
comment Compare Date objects with different levels of precision
I think you meant "/" versus "%"? This gets messy regarding arbitrary precision, IMHO. Good point though.
Nov
4
answered What is a Ghost Reference?
Nov
4
comment Compare Date objects with different levels of precision
Agreed. I wanted to run the code and didn't have JUnit at hand.
Nov
4
answered Compare Date objects with different levels of precision