Monthly Archives: April 2006
Thread pooling with Java concurrency utilities new (java 1.5) and old (util.concurrent)
Java Concurrency in Practice Threading in java is fairly easy and now with java 1.5 some of the stuff that was harder has become even easier. A few years ago someone pointed me to a site that had some concurrency utils that where the precursor to what are now the concurrent utils in java 1.5. [...]
Posted in java Comments closed
Good Techcrunch review of mapping apis
Techcrunch has a good review by Frank Gruber of the look and feel of mapping services. I think it is notable that ESRI's service is not included in the review. I think it is at least as good as the mapquest service. I may have to find time to redo my review of the acuracy [...]
Posted in gis Leave a comment
Approximating a circle with a polygon
I recently had an opportunity to use ESRI's ArcSDE again. It is a spatial database interface and in this instance I was using the java api. I wanted to change what used to be a query using a rectangle into a query using a circle. For some reason parts of the java api for ArcSDE [...]
Posted in gis Leave a comment
Howto base64 encode with C/C++ and OpenSSL
I've been doing a little C programming lately and I have found that if you have a up to date distribution of linux there are a lot of libraries out there that make doing things you do in other languages like java easier.
AJAX file upload progress for Java using commons fileupload and prototype
This has been done before with PHP (AJAX upload progress meter for PHP) etc but I needed something a little different because I wanted to upload a file and then have it loaded into a database. I looked around and found that someone had already made something that used the commons file upload package to [...]
Converting unix or java timestamps (time since the epoch) to real dates with Oracle