Ear Test for iPhone/iPod touch
December 9th, 2008I created fun application for testing your ears!
Should be available on AppStore shortly. See http://www.dolejsky.com/ear-test/ for details.
I created fun application for testing your ears!
Should be available on AppStore shortly. See http://www.dolejsky.com/ear-test/ for details.
One thing I really missed about my iPhone was the ability to synchronize its internal calendar with my Google Calendar. I know it can be done via iTunes + MS Outlook + some iCal Outlook plugin, but I don’t use Outlook and would prefer more direct way. So I decided to write a simple utility called ics that’s able to do the 2-way sync of events.

I needed to directly modify pixel values of several images in a special way. First, I looked into Gimp’s Script-Fu functionality, but this seemed too complicated for what I needed so I decided to write such one-off utility in Java.
It simply reads all GIF images in specified directory, does some custom transformation of pixels, and then writes images back onto disk. It is really quick’n'dirty so be warned
Source code: ImageManipulation.java
Reading and writing CLOBs and BLOBs from/to Oracle database via Spring’s JdbcTemplate might be a little bit confusing as it significantly differs from dealing with other types. Interested? Read on…
I ran into several issues during the development of an application which is to be run in OC4J 10.1.3.1 and needs to use SOAP web services and Oracle AQ (Advanced Queueing) messaging:
If anyone encountered such problems, read the rest of the article for tips and solutions.
Have you ever wondered how to:
If the answer to any of these questions is yes, be sure to read on!
Bugzilla is well known bug tracking software. I would like to show simple solution on how to implement automatic submitting of uncaught exceptions (caused or somehow connected with our code) to company Bugzilla system.
XOM parser is a great piece of code. I was missing just one feature - to be able to get position of element in source file (line and column). So I did a quick and dirty hack resulting in two new nu.xom.Element methods: getLineNumber() and getColumnNumber().
Complex systems usually need some kind of asynchronous messaging and caching for better performance. And yes, that’s pretty much what this article is about. Let’s dive into the following issues: