Core Java
-

How to serialize an array of doubles with a byte (binary delta encoding for low-varianced monotonic sets of floating point data)
Low latency systems require high performance message processing and passing. As in most cases data has to be transfered over…
Read More » -

The Decorator Pattern
The Decorator Pattern One design pattern that I don’t see being used very often is Decorator. I’m not sure why this…
Read More » -

On Java Collection Waste
This article is about overhead posed by one of the most popular frameworks used – I bet there is close…
Read More » -

Closing 2013 with Core Java Posts
As 2013 starts drawing to a close, I have recently spotted several posts related to what I consider “core Java”…
Read More » -

java.util.Random in Java 8
One of the neat features of java.util.Random class in Java 8 is that it has been retrofitted to now return…
Read More » -

Setup your Java development environment in your new Mac in 10 minutes (updated)
This is just a small update post that references 2 older entries ( a, b) , I just combine them…
Read More » -

RxJava: From Future to Observable
I first came across Reactive Extensions about 4 years ago on Matthew Podwysocki’s blog but then haven’t heard much about…
Read More » -

How to write one of the fastest expression evaluators in Java
Granted, the title is a bit of an attention grabber, but nevertheless true (You course you never trust a benchmark…
Read More » -

An Annotation Nightmare
@XmlElementWrapper(name="orders") @XmlJavaTypeAdapter(OrderJaxbAdapter.class) @XmlElements({ @XmlElement(name="order_2",type=Order2.class), @XmlElement(name="old_order",type=OldOrder.class) }) @JsonIgnore @JsonProperty @NotNull…
Read More »
