Skip navigation

Monthly Archives: September 2006

Internet Explorer on Linux

It’s possible to run Internet Explorer on Linux (you know, that unsafe inferior webbrowser from Microsoft that the majority of internet users choose to use). In fact it’s very easy thanks to the wonderful IEs4Linux script.
The script will download and install IE5.01, IE5.5 and IE6. I tried it on my Ubuntu machine and it works […]

Java debugging tip

Here’s a little trick to help you debug your Java programs. When an Exception occurs and it’s not caught somewhere, you get a stacktrace to help you locate the problem. When you do catch an Exception you can still call printStackTrace() on it. But what if you just like to see the call stack? Just […]