Tillmann Seidel
How to finally delete documents in CouchDB
Image via CC from Sh4rp\_i Documents in Apache CouchDB are usually not really deleted but rather marked as such.
Parsing JSON responses with JMeter
Image via CC from Hades2k JSON is becoming more and more important as a data exchange format, especially in Ajax web frameworks and RESTful web services.
Get rid of your StringUtils!
Image via CC from [Alexei Kuznetsov](https://www.flickr.com/photos/eofstr/5480421664) Probably every Java developer has developed at least one String utility class in his life.
Mutable variable capture in anonymous Java classes
The Java compiler requires local variables of enclosing contexts referenced in anonymous classes (so-called captured variables) to be final.
Invisible chaos - mastering white spaces in Eclipse
By Pöllö (Own work) [CC-BY-3.0], via Wikimedia Commons Did you ever look at a colleague’s Java source code file which contained mixed spaces and tabs for indentation, making the code completely unreadable?
UTF-8 RAP I18N
I always wanted to write a blog post with a title consisting of just acronyms and numeronyms - here it is!
Using EasyMock class extensions in Eclipse PDE tests
EasyMock is a powerful framework to create mock objects to use in Java JUnit tests.
When an exception gets lost
Image via CC from Paul Gorbould Recently I fell into the lost exception pitfall - when an exception thrown in a try block gets lost because another exception is thrown in the finally block.
Running Eclipse applications on Windows 8
Reading the title, you might ask why this could be a problem.
Use your HEAD - checking CouchDB document existence
One common task when working with CouchDB is to find out whether a document with a given ID exists.
Creating Tomcat heap dumps on Windows
One option for detecting memory leaks in Java is the analysis of heap dumps.
Finding the right OSGi services using the objectclass property
Recently I wanted to use the good old ServiceTracker to get access to OSGi services registered under a specific interface and matching a given filter.
Filtering tables in SWT/JFace
Working with tables or trees with more than a handful of rows, you quickly find that you need a way to filter or search for content, otherwise they become unusable.
Sorting out listener implementations in Java
Recently I scanned the source code of our current Eclipse RCP/RAP project for occurrences of the Listener (or Observer) pattern.
Improving reuse of JFace Data Binding validators
JFace Data Binding allows you to attach only one validator to a binding.
Reducing CouchDB disk space consumption
Apache CouchDB offers high availability, excellent throughput and scalability. These goals were achieved using immutable data structures - but they have a price: disk space.
Using the Whiteboard Pattern with RAP
When adopting the Whiteboard Pattern for one of our Eclipse RAP based web applications, we stumbled upon a problem concerning the session scope of events.