Tag Archives: programming

Do Not Track

If you have been paying attention to Tech News and the U.S. Government you may have heard about the ‘Do Not Track’ initiative that may become law. In a nutshell, the Do Not Track (DNT) initiative is a law that … Continue reading

Posted in Groovy, Java | Tagged , , | Leave a comment

Ajax Interception

The Problem I recently had a problem where I needed to intercept any AJAX based calls from the browser to, well, anything. After a lot of Googling and digging through StackOverflow all I ever found were suggestions for event listeners … Continue reading

Posted in JavaScript, Programming | Tagged , , | 1 Comment

TAR and GZIP Compression in Java

When you are generating a lot of output files as I do on some of my projects you at some point want to archive them so you end creating an archive directory and placing the files in there (usually with … Continue reading

Posted in Java, Programming | Tagged , | 2 Comments

Revisited: PGP Encryption/Decryption in Java

One of the most popular posts on my blog is my article about PGP Encryption and Decryption. I’ve had a lot of great questions as well as responses from user who have even been kind enough to post modifications to … Continue reading

Posted in Java, Programming | Tagged , , | 126 Comments

Dynamic Configuration of Hibernate Envers

The project I’m working on wanted to have audit tables for many of the tables in the system. Instead of writing our own plugins and creating the tables we decided to use Hibernate Envers. Hibernate Envers is a really nice … Continue reading

Posted in Java, Programming | Tagged , , , , | Leave a comment