Via Cà Matta 2 - Peschiera Borromeo (MI)
+39 02 00704272
info@synaptica.info

Blog

Digital Innovation Partner

Monitor CPU via Hudson

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

Novell will be a part of Microsoft Corporation

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

Starting a Virtual Machine with VMWare Player from remote shell in Linux

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

Sorting a Java Map

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

Creating a new ZK JPA project

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

Reset Sequence in Oracle 10g

[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