Technology, life, programming, travel and money.

Posts Tagged ‘Java’

Phoload interview

Phoload interview

Phoload is a new website where you can download free mobile software. Here is our interview with Phoload CEO Jamie McDonald. What is phoload? Phoload showcases free-to-download mobile games and applications that have been uploaded directly to the site by software developers. Users of the website can download, rate, review and recommend the [...]

Adding a date/time stamp to a jpeg image in Java

I've been looking for a simple tool to add a date/time stamp to some jpeg images. There are quite a lot of tools to do this but they all tend to cost money. I decided to make my own in Java. The actual process of loading a jpeg, adding a stamp and then saving it again is very simple. The below snippet will do the job. BufferedImage bi = [...]

ProGuard Eclipse Ant build.xml

If you are building J2SE apps with Eclipse and want to use ProGuard to compress, optimise or obfuscate your code you'll need to create an Ant build.xml file to do this. I found various bits of help on the internet explaining parts of the build.xml file, but couldn't find anywhere that gave the complete build.xml to do the full compile, jar and [...]