ChuckNorrisException in Java

This is my attempt to make a ChuckNorrisException in Java, an exception that cannot be caught. The implementation is interesting, because it actually throws an exception, and it may cause a true confusion if you see it for the first... »

Barriers in LMAX Disruptor

LMAX Disruptor is an event queue implementation that made a lot of buzz on the Internet a couple of years ago due to its impressive performance and unique approach to concurrency issues. The library was designed by LMAX Exchange Inc.,... »

Startable services with Guice

I’ve been using Guice for several years so far. After some time, I encountered a problem of implementing startable services in one of my applications. I could not hardcode the bootstraping sequence, because the application had a modular design, and... »