24h-payday

StupidZombie 1.1: Now faster

Just finished branching StupidZombie 1.1. If you want to take a look on the code (making changes) then do the following:

svn co https://kenai.com/svn/stupidzombie~source-code-repository/Branches/1.1

So, what’s new? Well, some speedup came for free this time. I decided to upgrade all the major libraries of StupidZombie and some of them have important improvements in term of speed and memory utilization, like the usage of the new class ‘XmlRpcLiteHttpTransportFactory’:


HashMap result = new HashMap();
XmlRpcClient xmlrpc = null;
XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
try {
config.setServerURL(new URL(BUNDLE.getString(directory)));
xmlrpc = new XmlRpcClient ();
xmlrpc.setConfig(config);
xmlrpc.setTransportFactory(new XmlRpcLiteHttpTransportFactory(xmlrpc));
Object[] params = new Object[]{name, url};
result =
(HashMap) xmlrpc.execute("weblogUpdates.ping", params);

Next update is to fix (once for all) the menu handling in OSX. After that localization is the next milestone!

Tags: , ,

2 Responses to “StupidZombie 1.1: Now faster”

  1. Valora en Bitacoras.com: Just finished branching StupidZombie 1.1. If you want to take a look on the code (making changes) then do the following: 1 svn co https://kenai.com/svn/stupidzombie~source-code-repository/Branches/1.1 So, what?s new? Well, so…..

  2. […] Ya comenzó la cuenta regresiva para StupidZombie 1.1. Hoy cree las ‘ramas’ en SubVersion, hice pequeños cambios en la compilación del proyecto, y actualice las librerías de terceros (con la ganancia grátis en velocidad del Pinger de XML-RPC). […]