This is a tutorial to have cpu of a server monitored via Hudson. Is intented to be a guide line, not all the aspect are detailed. To achieve this you need the following software installed: Hudson system working Hudson Plot Plugin, to install this, from your Hudson instance go to “Configure Hudson”>”Plugin” and search for…
Leggi tutto
For only $450 milions , Novell will be acquired by Attachmate Corporation that is a consortium of technology companies organized by Microsoft Corporation. This is the official article : http://www.novell.com/news/press/novell-agrees-to-be-acquired-by-attachmate-corporation. rgds ivan
Per avviare una macchina virtuale con VMWare player in linux è possibile se sul server remoto ovviamente è startato il gdm , è sufficiente connettersi in ssh ed esportare il display gdm sulla sessione tramite il comando : user@server:~$ export DISPLAY=:0.0 gksudo gedit dopodichè bisogna avviare la macchina virtuale semplicemente : user@server:~$ vmplayer a presto…
Leggi tutto
Hi, a short post to show a simple tip useful when dealing with Java Maps. The following Function sorts a Map through a custom Comparator and returns a new ordered LinkedHashMap: public static Map sortMapByKey(Map map, Comparator comparator) { List list = new LinkedList(map.keySet()); Collections.sort(list, comparator); Map result = new LinkedHashMap(); for (Object o :…
Leggi tutto
Hi, Maybe the issue addressed by this article could appear slightly prosaic for a develper familiar with Eclipse IDE. But for me, coming from a Java development based on Netbeans IDE, this step was not so simple… This article absolutely should not be intended as a comparison between the two development IDEs! Having said that,…
Leggi tutto
[lang_it] Cercando in rete non sono riuscito a trovare una funzione che mi permettesse di cambiare il valore ad una sequence definita sul mio DB oracle, spesso accade che dopo un importazione di dati ci sia un disallinamento delle chiavi fisiche del DB con le relative sequence. A questo proposito ho scritto una funzione che…
Leggi tutto