Related Posts
Compiling JSON-RPC for Jetty
The JSON-RPC ant build.xml file comes configured by default for Tomcat 5 or JBoss. But what about those of us who like JETTY? Don’t panic, here’s the solution, just add that section for jetty, and comment out the default section for tomcat. I used /home/angel/bin/jetty, cause that’s the path of my jetty install, replace that […]
PHP, ordenando un arreglo de Objetos, y utilizando funciones dentro de funciones.
No fue hasta que programe en Python que me habia pillado que podia definir funciones dentro de funciones en PHP. Hoy tuve que arreglar un defecto en el home de wedoit4you.com del cual algunos bloggers se estaban aprovechando para permanecer en el home. Los articulos aparecen ordenados por fecha de publicacion, y algunos estaban publicando […]
How to check if a Java Process is running on any local Virtual Machine programmatically
Quick and dirty way to check if a Java Process is already running. Useful if you need to run cronjobs periodically and you don’t know how long they might take, you can add this check at the beginning of your main, and it’ll look for all the local virtual machines that have a main class […]