Author Archives: Jan Sipke

Installing Sun JDK 6 on Ubuntu 10.04

The Sun JDK can be installed on Ubuntu by adding a repository and installing with apt-get. The following works with the latest versions of both at the time of writing: Sun JDK 6 update 20 Ubuntu 10.04 sudo add-apt-repository “deb … Continue reading

Posted in programming | Tagged | 8 Comments

Getting CPU, memory, disk and network metrics from XenServer

In a previous article we looked at getting CPU and memory metrics from XenServer. As noted in that article, as of version 5.5 of XenServer, the preferred way of getting virtual machine metrics is through HTTP calls to get RRD … Continue reading

Posted in Cloud computing, programming | Tagged , | 1 Comment

Using Google Visualization API with own data source

The Google Visualization API allows you to create charts and maps based on data you provide. This data can be in a Google Spreadsheet or be something you provide yourself. The visualizations themselves are mostly written in Javascript, although there … Continue reading

Posted in programming | Tagged , , | 1 Comment

Creating web charts using Open Flash Chart

Open Flash Chart gives you the possibility to have Flash based charts on your website without the need to know Flash. All it takes is a JSON file that describes the chart. This JSON file can be a static file … Continue reading

Posted in programming | Tagged , , | Leave a comment

Google Maps icons and circles

It is quite easy to add content to Google Maps by using the API. In this article we will use some icons to mark points of interest and use polygons to emulate circles around a marker. We want to give … Continue reading

Posted in programming | Tagged | 2 Comments

Getting XenServer VM metrics in Java

XenServer is a product of Citrix that can run virtual machines on a set of physical hosts called a pool. There is an API that allows you to create programs that interact with the XenServer pool. There are some function … Continue reading

Posted in Cloud computing, programming | Tagged , | 3 Comments

Using OpenJMS within Eclipse

OpenJMS allows you to use the Java Message Service (JMS) without a full-fledged Java Enterprise Edition container. It is an open source implementation of the JMS 1.1 specification. We start by installing and starting OpenJMS. On Windows this is done … Continue reading

Posted in programming | Tagged , , , | Leave a comment

Using the sage mathematical software system

This article describes the installation and simple usage of the Sage mathematical software system. Sage is free, open-source math software that supports research and teaching in algebra, geometry, number theory, cryptography, numerical computation, and related areas. We start by installing … Continue reading

Posted in programming | Tagged | 1 Comment

Examples of public SOAP web services

In the previous article we showed how to use the suds library in Python to access SOAP web services. Here are some extra examples of public SOAP web services. Some of the outputs are edited for readability. We start with … Continue reading

Posted in programming | Tagged , , | Leave a comment

Python SOAP client with suds

The library suds allows Python to make SOAP calls (that is, Python is the web service client). We start by installing the suds library on an Ubuntu machine. The Python setuptools are needed to install suds. sudo apt-get install python-setuptools … Continue reading

Posted in programming | Tagged , , | 13 Comments