
Another great article from hansolo_ http://harmoniccode.blogspot.de/2013/06/taming-nashornagain.html .
The Timezone Updater Tool (aka TZUpdater) is available for public download from OTN [1] again.
A simple working model of a valveless pulse jet engine inspired by an article in Make magazine. I found our worked better without the diffuser. Read the full article before you try this at home. Sometimes our blog systems does not allow embedded video, so just in case you can use this direct link.
Scalable Statistics Counters will appear in SPAA 2013.
"Lightweight Contention Management for Efficient Compare-and-Swap Operations" by Dave Dice, Danny Hendler and Ilya Mirsky will appear in Euro-Par 2013. A longer technical report is also available in arxiv.
Compile the following code:
class Base {
protected final void finalize() {
System.out.println("Base.finalize");
}
}
class Derived extends Base {
private void fin_lize() {
System.out.println("Derived.finalize");
}
public static void main(String[] args) {
new Derived();
System.gc();
System.runFinalization();
}
} ...The recent series of patches1 for javadoc completes the work started during JDK 7 to change the internal data model for standard javadoc doclets from strings to a document tree. As a result of this work, there should no longer be any unnecessary internal conversion from tree nodes to strings and back again.





