iPhone DZone: Fresh Links On Your iPhone by matt on 7/5/08
Reading DZone on your iPhone just got a little bit easier. Visit http://dzone.com/iphone from your iPhone to try out our beta iPhone support. You can view stories, filter by tags, and login. We'd appreciate your feedback at feedback@dzone.com.
Exception Handling in Distributed Systems
Here's another technique that's worked well in the last few systems I've had a hand in, this time for coordinating exception handling within a... more »
0 commentsSave Tags: how-to, java, server
Still using an old JDK? Why?
I was interested in how prevalent JDK 1.4 and earlier were in production so I created a very short poll (3 questions, only the first is required). It... more »
1 commentsSave Tags: java, server, trends
Set your Java 7 Phasers to stun
Saw a very interesting note today from Doug Lea on the concurrency-interest mailing list. Looks like they are extracting a useful internal part of the... more »
0 commentsSave Tags: java, trends
Apache Harmony: Thanks for the TreeMap Work!
Controlled measurements showed the "fat" TreeMap significantly faster with in order traversals, and improved our SPECjbb2005 score by a solid 3-5%... more »
0 commentsSave Tags: java, open source
Phat Data
I think that increased data volumes will impact day to day programing work far more than multicore will.
0 commentsSave Tags: database, trends
Alternative syntax for BGGA closure
In my last blog entry, i've said it was time to discuss about the BGGA closure syntax. So here is my proposed syntax.
0 commentsSave Tags: java, trends
This is how I want all project web sites to look…
I thought I’d list these rules because I suspect others are like me: we’re extremely busy, we work too many hours, and are involved with too many... more »
1 commentsSave Tags: open source, tools, usability
Launch Java Applications from Assembly Language Programs
Here I deal with the technique for invoking Java programs from an ASM process through a demo application that calls a Java method from assembly... more »
0 commentsSave Tags: how-to, java, other languages
RedHat has release candidate for JBoss App Server 5 - is it too late?
Surprise, surprise, JBoss App Sever 5 has reached a release candidate.
0 commentsSave Tags: announcement, java, open source, server
Clustered Scala Actors
The first thing to do was to come up with a sample problem. After some thought, I settled on writing a parallel Fold implementation. As a quick recap:... more »
0 commentsSave Tags: how-to, java, other languages
Singleton Methods
Ruby has a neat feature called Singleton Methods. The idea behind them is that you can define a method on an instance of an object, and that method... more »
0 commentsSave Tags: how-to, java, ruby
The Easiest Java XML Binding
I have an XML document and I want to use that document to populate a corresponding set of Java objects. This is a commonly encountered scenario when... more »
5 commentsSave Tags: how-to, java, xml
The new internet traffic spikes
What isn't entirely obvious in the above graphs? These spikes happen inside 60 seconds. The idea of provisioning more servers (virtual or not) is... more »
0 commentsSave Tags: server, trends, web services
HashMap.get() can cause an infinite loop!
Yes, it is true. HashMap.get() can cause an infinite loop. Everyone I’ve talked to didn’t believe it either, but yet there it is — right in front of... more »
4 commentsSave Tags: java
@SuppressWarnings values
This build-in annotation, usable since JDK 1.5.0_06, allowed the developer to signal the compiler in the form of the @SuppressWarnings annotation. It... more »
0 commentsSave Tags: how-to, java
20 Wrenches In The Software Startup Machinery
I have had the misfortune of personally making every one of these mistakes during my years as a software entrepreneur. I am currently reviewing a... more »
0 commentsSave Tags: how-to
Top Ten Firefox Keyboard Shortcuts
With the release of Firefox 3, I thought I would share my top ten Firefox shortcuts.
2 commentsSave Tags: apple, tools, usability
Parsing dates for web feeds in .NET
Parsing dates in Atom and RSS
0 commentsSave Tags: .net, how-to, java
Cheap Tricks XV - Static Collections in Java
Here's another cheap trick around reducing the common need for a static block populated list
4 commentsSave Tags: how-to, java, ruby
@SuppressWarnings
One of the built-in annotations in Java 5 is SuppressWarnings. You can use this annotation on all the available annotation levels (class, field,... more »
1 commentsSave Tags: eclipse, how-to, java
HasThisTypePatternTriedToSneakIn SomeGenericOrParameterizedType PatternMatchingStuffAnywhereVisitor.java
A more humorous class in the wild
0 commentsSave Tags: eclipse, humor, java
Nothing's guaranteed
Getting rid of unreachable code with BGGA closures
0 commentsSave Tags: how-to, java
Schwartzian Transforms in Java
Libraries like Java's Collections API contain numerous algorithms tuned to give good performance in a theoretical 'typical case', but it can be very... more »
0 commentsSave Tags: how-to, java, perl