User Michael Easter - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T00:13:55Zhttp://stackoverflow.com/feeds/user/12704http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1903252/extract-integer-part-in-string/1903715#19037150Answer by Michael Easter for Extract Integer Part in StringMichael Easter2009-12-14T21:45:23Z2009-12-14T21:45:23Z<p>Assuming you want a trailing digit, this would work:</p>
<pre><code>import java.util.regex.*;
public class Example {
public static void main(String[] args) {
Pattern regex = Pattern.compile("\\D*(\\d*)");
String input = "Hello123";
Matcher matcher = regex.matcher(input);
if (matcher.matches() && matcher.groupCount() == 1) {
String digitStr = matcher.group(1);
Integer digit = Integer.parseInt(digitStr);
System.out.println(digit);
}
System.out.println("done.");
}
}
</code></pre>
http://stackoverflow.com/questions/1888661/is-using-an-if-return-an-accepted-practise/1888791#18887917Answer by Michael Easter for Is using an if() ... return an accepted practise ?Michael Easter2009-12-11T15:25:12Z2009-12-11T15:25:12Z<p>Martin Fowler would favour the early return, and calls the idea a <a href="http://www.refactoring.com/catalog/replaceNestedConditionalWithGuardClauses.html" rel="nofollow">Guard Clause</a>.</p>
<p>Personally, I don't like it in Java, as I prefer one return per method. However this is subjective and I may be in the minority.</p>
<p>I've blogged about this <a href="http://codetojoy.blogspot.com/2007/04/case-for-guard-clauses.html" rel="nofollow">for</a> and <a href="http://codetojoy.blogspot.com/2007/04/guard-clauses-considered-harmful.html" rel="nofollow">against</a>.</p>
http://stackoverflow.com/questions/1871573/can-someone-provide-a-bare-bones-ant-build-script-for-hibernate/1871658#18716581Answer by Michael Easter for Can someone provide a bare bones Ant build script for Hibernate?Michael Easter2009-12-09T04:56:35Z2009-12-09T05:12:43Z<p>I have a project exactly along those lines.</p>
<p>I have just uploaded it to GitHub: <a href="http://is.gd/5gy74" rel="nofollow">Easter's Eggs For Hibernate</a></p>
<p>It uses Postgres as the database, but the Ant file is fairly clean and you should be able to morph it to your needs. Be sure to see the ReadMe about the ordering of the Ant targets.</p>
<p>The intent is to clean a sandbox database and populate it with data, then reading the new data into POJOs. </p>
<p>Even if you don't have an account on GitHub, you can browse the source and help yourself. The build.xml, build.properties, and db.properties will be vital.</p>
<p>Feel free to contact me with questions.</p>
http://stackoverflow.com/questions/1844620/which-antlr-book-is-best/1844698#18446981Answer by Michael Easter for Which Antlr book is "best" ?Michael Easter2009-12-04T03:42:32Z2009-12-04T03:42:32Z<p>FWIW, <a href="http://jnb.ociweb.com/jnb/jnbJun2008.html" rel="nofollow">this is a free article</a> written by a colleague of mine. Parr has linked to it from his website. It may not replace a book but it is a solid introduction.</p>
http://stackoverflow.com/questions/1823632/have-you-applied-game-theory-on-a-project8Have you applied Game Theory on a project?Michael Easter2009-12-01T02:23:56Z2009-12-01T04:15:54Z
<p>I haven't studied <a href="http://en.wikipedia.org/wiki/Game%5Ftheory" rel="nofollow">game theory</a>, but it fascinates me. My intuition is that it isn't used by most "enterprise app" developers. However, it is clearly relevant to the large online sites (e.g. recommendation systems), and a huge influence on SO.</p>
<p>Have you applied any principles of game theory in your daily projects? If so, which principles? </p>
http://stackoverflow.com/questions/1822830/how-do-i-manage-my-ideas-personal-projects-to-completion/1822942#18229423Answer by Michael Easter for How do I manage my ideas/personal projects to completion?Michael Easter2009-11-30T22:42:45Z2009-11-30T22:42:45Z<p>One effective technique is to sign up for giving a talk or writing an article on the subject. By doing so, you will have a true deadline and a sense of fear (e.g. being unprepared).</p>
<p>It is amazing how focused you will become ;-)</p>
http://stackoverflow.com/questions/1812700/timezone-problem-in-java/1812738#18127386Answer by Michael Easter for TimeZone problem in JavaMichael Easter2009-11-28T15:13:42Z2009-11-28T15:13:42Z<p>I'm not sure if this answers your question, but this is one way to get "now" in GMT.</p>
<pre><code>import java.text.*
import java.util.*
Calendar cal = new GregorianCalendar();
Date date = cal.getTime();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy.MM.dd G 'at' HH:mm:ss z");
formatter.setTimeZone(TimeZone.getTimeZone("GMT"));
System.out.println(formatter.format(date));
</code></pre>
<p>See the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/text/SimpleDateFormat.html" rel="nofollow">Javadoc on SimpleDateFormat</a> for different patterns. Also, you may want to consider Joda Time as it is far superior for dates and times.</p>
http://stackoverflow.com/questions/1765475/grails-log4j-configuration/1811453#18114530Answer by Michael Easter for Grails log4j configurationMichael Easter2009-11-28T03:32:21Z2009-11-28T03:32:21Z<p>Using Grails 1.1.1 and an approximation to your setup, I have a unit test called <code>FooTests.groovy</code> </p>
<p>After running <code>grails test-app</code>, I am able to see the output from the test in the directory:</p>
<pre><code>./test/reports/plain
</code></pre>
<p>specifically in the files, as appropriate:</p>
<pre><code>TEST-com.mypackages.FooTests-err.txt
TEST-com.mypackages.FooTests-out.txt
TEST-com.mypackages.FooTests.txt
</code></pre>
<p>Note that I see no output in the hibeFile. I'm not sure, but I suspect a previous poster is correct in that unit tests don't receive the logging setup.</p>
http://stackoverflow.com/questions/1809093/how-can-i-place-validating-constraints-on-my-method-input-parameters/1809593#18095931Answer by Michael Easter for How can I place validating constraints on my method input parameters?Michael Easter2009-11-27T16:18:00Z2009-11-27T16:18:00Z<p>I've seen a technique by <a href="http://stuffthathappens.com/blog" rel="nofollow">Eric Burke</a> that is roughly like the following. It is an elegant use of static imports. The code reads very nicely.</p>
<p>To get the idea, here is the <code>Contract</code> class. It is minimal here, but can be easily filled out as needed.</p>
<pre><code>package net.codetojoy;
public class Contract {
public static void isNotNull(Object obj) {
if (obj == null) throw new IllegalArgumentException("illegal null");
}
public static void isNotEmpty(String s) {
if (s.isEmpty()) throw new IllegalArgumentException("illegal empty string");
}
}
</code></pre>
<p>And here is an example usage. The <code>foo()</code> method illustrates the static imports:</p>
<pre><code>package net.codetojoy;
import static net.codetojoy.Contract.*;
public class Example {
public void foo(String str) {
isNotNull(str);
isNotEmpty(str);
System.out.println("this is the string: " + str);
}
public static void main(String[] args) {
Example ex = new Example();
ex.foo("");
}
}
</code></pre>
<p>Note: when experimenting, note that <a href="http://bugs.sun.com/bugdatabase/view%5Fbug.do?bug%5Fid=4989710" rel="nofollow">there may be a bug</a> around doing this in the default package. I've certainly lost brain cells trying it.</p>
http://stackoverflow.com/questions/1734654/java-serializable-interface/1734671#17346712Answer by Michael Easter for java serializable interface Michael Easter2009-11-14T16:07:01Z2009-11-14T16:43:17Z<p><a href="http://en.wikipedia.org/wiki/Serialization#Java" rel="nofollow">This link</a> has some reasons. I think the underlying philosophy is that the marker interface (i.e. no methods) genuinely conveys information to the developer and to the compiler/JVM.</p>
<p>Edit: I began to write a comment in response to the first comment, but decided to edit the answer.</p>
<p>The link lists 3 reasons why you may not want an object to be serializable: (a) may not make sense to serialize state (b) additional contract/versioning overhead (c) privacy concerns. There is no way for the compiler to know these issues in advance.</p>
<p>One might ask "why isn't Serialization a default, and there is a way to opt-out?". The answer here is probably that (1) it is weird to express in the language (2) it is more dangerous. For an example of (2), if you don't know about the privacy issue (c), then you might expose sensitive information with <strong>no</strong> explicit indication of doing so.</p>
http://stackoverflow.com/questions/1719594/iterative-cartesian-product-in-java/1719937#17199371Answer by Michael Easter for Iterative Cartesian Product in JavaMichael Easter2009-11-12T04:44:47Z2009-11-12T04:44:47Z<p>The following answer uses iteration and not recursion. It uses the same <code>Tuple</code> class from my previous answer. </p>
<p>It is a separate answer because IMHO both are valid, different approaches.</p>
<p>Here is the new main class:</p>
<pre><code>public class Example {
public static <T> List<Tuple<T>> cartesianProduct(List<Set<T>> sets) {
List<Tuple<T>> tuples = new ArrayList<Tuple<T>>();
for (Set<T> set : sets) {
if (tuples.isEmpty()) {
for (T t : set) {
Tuple<T> tuple = new Tuple<T>();
tuple.add(t);
tuples.add(tuple);
}
} else {
List<Tuple<T>> newTuples = new ArrayList<Tuple<T>>();
for (Tuple<T> subTuple : tuples) {
for (T t : set) {
Tuple<T> tuple = new Tuple<T>();
tuple.addAll(subTuple);
tuple.add(t);
newTuples.add(tuple);
}
}
tuples = newTuples;
}
}
return tuples;
}
}
</code></pre>
http://stackoverflow.com/questions/1719594/iterative-cartesian-product-in-java/1719881#17198810Answer by Michael Easter for Iterative Cartesian Product in JavaMichael Easter2009-11-12T04:29:44Z2009-11-12T04:29:44Z<p>I believe this is correct. It is not seeking efficiency, but a clean style through recursion and abstraction.</p>
<p>The key abstraction is to introduce a simple <code>Tuple</code> class. This helps the generics later:</p>
<pre><code>class Tuple<T> {
private List<T> list = new ArrayList<T>();
public void add(T t) { list.add(t); }
public void addAll(Tuple<T> subT) {
for (T t : subT.list) {
list.add(t);
}
}
public String toString() {
String result = "(";
for (T t : list) { result += t + ", "; }
result = result.substring(0, result.length() - 2);
result += " )";
return result;
}
}
</code></pre>
<p>With this class, we can write a class like so:</p>
<pre><code>public class Example {
public static <T> List<Tuple<T>> cartesianProduct(List<Set<T>> sets) {
List<Tuple<T>> tuples = new ArrayList<Tuple<T>>();
if (sets.size() == 1) {
Set<T> set = sets.get(0);
for (T t : set) {
Tuple<T> tuple = new Tuple<T>();
tuple.add(t);
tuples.add(tuple);
}
} else {
Set<T> set = sets.remove(0);
List<Tuple<T>> subTuples = cartesianProduct(sets);
System.out.println("TRACER size = " + tuples.size());
for (Tuple<T> subTuple : subTuples) {
for (T t : set) {
Tuple<T> tuple = new Tuple<T>();
tuple.addAll(subTuple);
tuple.add(t);
tuples.add(tuple);
}
}
}
return tuples;
}
</code></pre>
<p>}</p>
<p>I have a decent example of this working, but it is omitted for brevity.</p>
http://stackoverflow.com/questions/1713522/how-can-i-rename-file/1713541#17135411Answer by Michael Easter for How can i Rename File???Michael Easter2009-11-11T07:04:30Z2009-11-11T07:04:30Z<p>I am having a hard time reading the code as given, but there is a <code>renameTo</code> method on <code>File</code> (<a href="http://java.sun.com/j2se/1.4.2/docs/api/java/io/File.html#renameTo%28java.io.File%29" rel="nofollow">see this javadoc</a>). Note that it takes a File object representing the desired pathname, and returns a boolean.</p>
http://stackoverflow.com/questions/1713481/groovy-string-to-int/1713510#17135103Answer by Michael Easter for Groovy String to intMichael Easter2009-11-11T06:57:23Z2009-11-11T06:57:23Z<p>Well, Groovy accepts the Java form just fine. If you are asking if there is a <em>Groovier</em> way, there is a way to go to <code>Integer</code>.</p>
<p>Both are shown here:</p>
<pre><code>String s = "99"
assert 99 == Integer.parseInt(s)
Integer i = s as Integer
assert 99 == i
</code></pre>
http://stackoverflow.com/questions/1704947/have-you-also-become-memory-lazy-as-a-programmer-how-do-you-overcome-it/1705138#17051383Answer by Michael Easter for Have you also become memory-lazy as a programmer? How do you overcome it?Michael Easter2009-11-10T01:34:48Z2009-11-10T01:34:48Z<blockquote>
<p>Knowledge is of two kinds. We know a
subject ourselves, or we know where we
can find information upon it.
- Samuel Johnson, 1775 (<a href="http://en.wikiquote.org/wiki/Samuel%5FJohnson" rel="nofollow">reference</a>)</p>
</blockquote>
<p>As long as you thoroughly understand the material when you find it, I don't see a problem. In fact I run Tomcat on my dev machine with a page full of handy links. e.g. The Javadoc for String is never more than 2-3 clicks away.</p>
http://stackoverflow.com/questions/1674126/specify-a-character-value-as-an-offset-from-a-constant-in-java/1674271#16742710Answer by Michael Easter for Specify a character value as an offset from a constant in JavaMichael Easter2009-11-04T14:52:24Z2009-11-04T14:52:24Z<p>How about this? Ugly casting but no compilation errors. Should generate a random capital letter:</p>
<pre><code>int rand = (int) (Math.random() * 100);
int i = 65 + (rand % 26);
char c = (char) i;
System.out.println(c);
</code></pre>
http://stackoverflow.com/questions/1669119/what-is-a-ghost-reference/1671556#16715560Answer by Michael Easter for What is a Ghost Reference?Michael Easter2009-11-04T03:39:11Z2009-11-04T03:39:11Z<p>As I stated in the comment, I don't know of a <em>ghost</em> reference, but <a href="http://weblogs.java.net/blog/enicholas/archive/2006/05/understanding%5Fw.html" rel="nofollow">this article</a> has a nice write-up on the various weak references (weak, soft, and phantom). It even mentions the <code>ReferenceQueue</code> issue, though I must say that I hadn't heard that before.</p>
http://stackoverflow.com/questions/1671001/compare-date-objects-with-different-levels-of-precision/1671028#16710281Answer by Michael Easter for Compare Date objects with different levels of precisionMichael Easter2009-11-04T00:28:33Z2009-11-04T00:28:33Z<p>I don't know if there is support in JUnit, but one way to do it:</p>
<pre><code>import java.text.SimpleDateFormat;
import java.util.Date;
public class Example {
private static SimpleDateFormat formatter = new SimpleDateFormat("dd MMM yyyy HH:mm:ss");
private static boolean assertEqualDates(Date date1, Date date2) {
String d1 = formatter.format(date1);
String d2 = formatter.format(date2);
return d1.equals(d2);
}
public static void main(String[] args) {
Date date1 = new Date();
Date date2 = new Date();
if (assertEqualDates(date1,date2)) { System.out.println("true!"); }
}
}
</code></pre>
http://stackoverflow.com/questions/1669689/pre-java-5-collections-and-the-unwillingness-to-change/1669744#16697442Answer by Michael Easter for Pre Java 5 collections and the unwillingness to changeMichael Easter2009-11-03T19:52:21Z2009-11-03T19:52:21Z<p>If there are <em>R</em> readers of the code, and it takes them <em>N</em> milliseconds to realize that m is <code>Map<String,Object></code>, then using generics would save approx. <em>R x N</em> milliseconds. Over time, this is significant. Also, you are improving the doc to the client (with something real, not just Javadoc).</p>
http://stackoverflow.com/questions/1669305/how-does-jvm-deal-with-duplicate-jars-of-different-versions/1669386#16693863Answer by Michael Easter for How does JVM deal with duplicate JARs of different versionsMichael Easter2009-11-03T18:48:20Z2009-11-03T18:48:20Z<p>FWIW, this is an example of a larger topic (modularity) that is addressed by <a href="http://blog.springsource.com/2008/02/18/creating-osgi-bundles/" rel="nofollow">OSGi</a> and <a href="http://openjdk.java.net/projects/jigsaw/" rel="nofollow">Project Jigsaw/JSR 294</a> in JDK 7.</p>
<p>Your question is good motivation for the topic: the venerable, simple classpath may have been a good idea at its inception, but it is certainly a pain point in today's age of high dependence on 3rd-party-libraries.</p>
http://stackoverflow.com/questions/1668901/java-modcount-arraylist/1668923#16689230Answer by Michael Easter for Java Modcount (ArrayList)Michael Easter2009-11-03T17:31:52Z2009-11-03T17:31:52Z<p><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/AbstractList.html#modCount" rel="nofollow">From the 1.4 javadoc on AbstractList</a>:</p>
<blockquote>
<p>protected transient int modCount</p>
<p>The number of times this list has been
structurally modified. Structural
modifications are those that change
the size of the list, or otherwise
perturb it in such a fashion that
iterations in progress may yield
incorrect results.</p>
<p>This field is used by the iterator and
list iterator implementation returned
by the iterator and listIterator
methods. If the value of this field
changes unexpectedly, the iterator (or
list iterator) will throw a
ConcurrentModificationException in
response to the next, remove,
previous, set or add operations. This
provides fail-fast behavior, rather
than non-deterministic behavior in the
face of concurrent modification during
iteration.</p>
<p><strong>Use of this field by subclasses is optional.</strong></p>
</blockquote>
http://stackoverflow.com/questions/1667279/what-is-the-difference-between-jetspeed-2-and-pluto/1667352#16673521Answer by Michael Easter for What is the difference between jetspeed 2 and pluto?Michael Easter2009-11-03T13:31:54Z2009-11-03T13:31:54Z<p>I have worked extensively with Jetspeed 1. I have been a bit out of the loop since J2 and JSR 186, but here is my best guess. It is only a guess, but I'm confident enough to post it here.</p>
<p>(Assumption: a portal uses a portlet container, and a portlet container cannot really run by itself.)</p>
<p>Jetspeed 2 aims to be a full enterprise portal which uses Pluto as the portlet container. Pluto has its own simple portal, as it does not want a dependency on any given portal project. I believe the Pluto portal is not intended as enterprise-level.</p>
<p>The statement above is supported by this part of the Pluto FAQ (<a href="http://portals.apache.org/pluto/faq.html#portal" rel="nofollow">from here</a>):</p>
<blockquote>
<p><em>Is Pluto an Enterprise Portal?</em></p>
<p>No, the Pluto project aims to provide a Java Specification compliant
Portlet Container. In order to support
the container, the Pluto project
provides a simple portal, however,
this does not provides optional
services such as single sign on. If
you are looking for an Open Source
enterprise Portal implementation,
there are several available. Apache
Jetspeed is an enterprise portal
hosted by the Apache Software
Foundation. Sakai and uPortal are both
educational portals which utilize
Pluto as their container. There are
many other open source portals.</p>
</blockquote>
http://stackoverflow.com/questions/1475914/multi-language-testing-framework/1655484#16554840Answer by Michael Easter for Multi language testing frameworkMichael Easter2009-10-31T20:12:25Z2009-10-31T20:12:25Z<p>I recommend re-examining the granularity of your question. It implies unit-testing but why not go to functional/system level testing. In this context, <a href="http://en.wikipedia.org/wiki/Framework%5Ffor%5FIntegrated%5FTest" rel="nofollow">FIT</a> becomes a choice.</p>
<p>As one example, we have a client-server app in Java. We use FIT as an alternate client: we can specify Html input files and with some glue (aka fixtures), we can hit the server.</p>
<p>The good news is that this is agnostic to the language on the server, and the Html files can be used as acceptance tests.</p>
<p>The bad news is that FIT is merely a framework: it can take a lot of glue. Also, one must realize that these aren't unit tests. Not only is the granularity different, but also the speed is different. i.e. A large set of tests may not run in 'normal' amount of time, from a unit-test perspective. (We run ours at night and only a small subset during CI build.)</p>
http://stackoverflow.com/questions/1654923/in-the-13-years-that-java-has-been-around-are-there-any-specific-examples-of-bac/1655055#16550552Answer by Michael Easter for In the 13 years that Java has been around, are there any specific examples of backward incompatibilities?Michael Easter2009-10-31T17:39:27Z2009-10-31T17:39:27Z<p>I have not tried it but in theory this would work in Java 1.1 and break in Java 1.2. (More <a href="http://en.wikipedia.org/wiki/Strictfp" rel="nofollow">info here</a>)</p>
<pre><code>public class Test {
float strictfp = 3.1415f;
}
</code></pre>
http://stackoverflow.com/questions/1654923/in-the-13-years-that-java-has-been-around-are-there-any-specific-examples-of-bac/1655044#16550444Answer by Michael Easter for In the 13 years that Java has been around, are there any specific examples of backward incompatibilities?Michael Easter2009-10-31T17:36:18Z2009-10-31T17:36:18Z<p>The following will compile under Java 1.4 but <strong>not</strong> Java 1.5 or later. </p>
<p>(Java 5 introduced 'enum' as a keyword. Note: it will compile in Java 5 if the "-source 1.4" option is provided.)</p>
<pre><code>public class Example {
public static void main(String[] args) {
String enum = "hello";
}
}
</code></pre>
http://stackoverflow.com/questions/1619758/is-struts2-still-a-good-choice-of-web-framework-for-new-projects/1619976#16199760Answer by Michael Easter for Is Struts2 still a good choice of web framework for new projects?Michael Easter2009-10-25T04:06:23Z2009-10-25T04:06:23Z<p>Grails is a massive player in this space. It uses Spring/Hibernate, however it is debatable if it meets your requirements since it is Groovy, not Java.</p>
<p>That said, Spring MVC is definitely worth exploring. It is a leader in the pure-Java area, and with Spring 3, reflects some influence by Grails.</p>
http://stackoverflow.com/questions/1607479/whichddatabase-would-prove-efficient/1607696#16076960Answer by Michael Easter for WhichdDatabase would prove efficient?Michael Easter2009-10-22T14:37:39Z2009-10-22T14:37:39Z<p>Java, Hibernate, and Spring will work with almost any database. Tools like <a href="http://squirrel-sql.sourceforge.net/" rel="nofollow">Squirrel</a> simplify DB management across DBs as well.</p>
<p>The key point is cost. I recommend <a href="http://www.postgresql.org/" rel="nofollow">PostgreSql</a>. It is outstanding: capable of huge volume, strong list of features, has a solid user community, and is free/open-source. </p>
http://stackoverflow.com/questions/1606685/change-one-character-in-a-string-easiest-way/1606727#16067270Answer by Michael Easter for Change one character in a string. Easiest wayMichael Easter2009-10-22T11:58:09Z2009-10-22T11:58:09Z<p><a href="http://mail.python.org/pipermail/python-list/2006-September/044106.html" rel="nofollow">Here is a good resource</a> with 3 options. The most interesting one is "you may not have to do that".</p>
<p>In all honesty, I'm a bit surprised that the other solutions are as complex as they are.</p>
http://stackoverflow.com/questions/1573491/eclipse-find-all-classes-that-extend-interface/1573634#15736343Answer by Michael Easter for Eclipse - find all classes that extend interfaceMichael Easter2009-10-15T16:46:30Z2009-10-15T16:46:30Z<p>I would use Ctrl-T to get the descendants and then Ctrl-T again (see fine print in initial popup) if super interfaces/classes are wanted.</p>
<p>It is one of my most-used shortcuts.</p>
http://stackoverflow.com/questions/1509391/how-to-get-the-one-entry-from-hashmap-without-iterating/1509504#15095040Answer by Michael Easter for how to get the one entry from hashmap without iteratingMichael Easter2009-10-02T13:28:03Z2009-10-02T13:28:03Z<p>This would get a single entry from the map, which about as close as one can get, given 'first' doesn't really apply.</p>
<pre><code>import java.util.*;
public class Friday {
public static void main(String[] args) {
Map<String, Integer> map = new HashMap<String, Integer>();
map.put("code", 10);
map.put("to", 11);
map.put("joy", 12);
if (! map.isEmpty()) {
Map.Entry<String, Integer> entry = map.entrySet().iterator().next();
System.out.println(entry);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1903252/extract-integer-part-in-string/1903715#1903715Comment by Michael Easter on Extract Integer Part in StringMichael Easter2009-12-14T21:47:13Z2009-12-14T21:47:13ZWell, it would work for your example and for "small" numbers. It will clearly fail for large numbers that won't fit into an int.http://stackoverflow.com/questions/1288609/which-language-to-use-for-very-large-data-set-and-lot-of-computation-involvedComment by Michael Easter on which language to use for very large data set and lot of computation involvedMichael Easter2009-12-08T16:37:18Z2009-12-08T16:37:18Zwhat is your approximate deadline and background? Someone suggested java and Hadoop which could be very powerful but a signifiant learning curve.http://stackoverflow.com/questions/1851555/java-synchronized-block-for-more-than-1-objectsComment by Michael Easter on java synchronized block for more than 1 objects?Michael Easter2009-12-05T13:47:54Z2009-12-05T13:47:54ZPutting 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).http://stackoverflow.com/questions/1846221/a-way-to-catch-up-to-modern-programming-techniquesComment by Michael Easter on A way to catch up to modern programming techniquesMichael Easter2009-12-04T14:28:53Z2009-12-04T14:28:53Zcan you provide some example concepts with which you're struggling?http://stackoverflow.com/questions/1843905/clean-up-code-in-finalize-or-finallyComment by Michael Easter on Clean up code in finalize() or finally()?Michael Easter2009-12-04T03:44:20Z2009-12-04T03:44:20ZIIRC, 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.http://stackoverflow.com/questions/1834850/python-powershell-or-other/1834895#1834895Comment by Michael Easter on Python, PowerShell, or Other?Michael Easter2009-12-03T00:15:29Z2009-12-03T00:15:29Zwhy not edit the answer?http://stackoverflow.com/questions/1823632/have-you-applied-game-theory-on-a-projectComment by Michael Easter on Have you applied Game Theory on a project?Michael Easter2009-12-01T02:24:59Z2009-12-01T02:24:59Zps. I sincerely think this is an interesting question. SO does not agree, with its "subjective!" warning, so I've marked as community wiki. http://stackoverflow.com/questions/1815734/what-does-the-enterprise-ready-mean/1815746#1815746Comment by Michael Easter on What does the 'Enterprise Ready' mean?Michael Easter2009-11-29T15:32:25Z2009-11-29T15:32:25Zlol... very nicehttp://stackoverflow.com/questions/1813193/importing-contacts-in-to-an-address-book-gui-from-a-file-using-bufferedwriter-metComment by Michael Easter on Importing Contacts in to an address book GUI from a file using BufferedWriter methodMichael Easter2009-11-28T17:55:32Z2009-11-28T17:55:32ZYour 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.http://stackoverflow.com/questions/1812225/what-makes-ruby-an-elegant-language/1812240#1812240Comment by Michael Easter on What makes Ruby an Elegant Language?Michael Easter2009-11-28T16:05:14Z2009-11-28T16:05:14ZOne 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 <i>definitely</i> differ in that sense. One would be hard-pressed to favour COBOL over Smalltalk, for example.http://stackoverflow.com/questions/1809093/how-can-i-place-validating-constraints-on-my-method-input-parameters/1809593#1809593Comment by Michael Easter on How can I place validating constraints on my method input parameters?Michael Easter2009-11-27T16:19:38Z2009-11-27T16:19:38ZI 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.)http://stackoverflow.com/questions/1804311/how-to-check-if-an-integer-is-power-of-3Comment by Michael Easter on How to check if an integer is power of 3?Michael Easter2009-11-26T18:30:44Z2009-11-26T18:30:44ZQuestions often give rise to new questions, but I recommend considering generalizations. e.g. "power of N?" where N is an arbitrary integer. http://stackoverflow.com/questions/1779196/tool-to-find-duplicate-keys-and-value-in-properties-fileComment by Michael Easter on Tool to find duplicate keys and value in properties fileMichael Easter2009-11-24T14:01:02Z2009-11-24T14:01:02ZRather 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.http://stackoverflow.com/questions/1734654/java-serializable-interface/1734671#1734671Comment by Michael Easter on java serializable interface Michael Easter2009-11-14T16:43:49Z2009-11-14T16:43:49ZI've updated the answer to be a bit more clear (hopefully).http://stackoverflow.com/questions/1719594/iterative-cartesian-product-in-java/1719937#1719937Comment by Michael Easter on Iterative Cartesian Product in JavaMichael Easter2009-11-12T13:04:01Z2009-11-12T13:04:01ZAgreed, the performance could be wretched. I guess you are really asking for an algorithm rather than a coding style?