I found this funny article on the Embarcadero blog, i agree on a lot of this predictions and i wanna share it, the original article can be found at : http://blogs.embarcadero.com/michaelrozlog/2010/12/28/37181
Hi, The uptime is the percentage of time that one site is reachable, sometime uptime is a measure regulated by a contracts, in that case is important to track it. We need Hudson up and running with the SiteMonitor plugin installed. Every builds the site monitor checks if a site is up, if it is…
Leggi tutto
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 :
1 |
user@server:~$ export DISPLAY=:0.0 gksudo gedit |
dopodichè bisogna avviare la macchina virtuale semplicemente :
1 |
user@server:~$ vmplayer |
a presto ivan
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:
1 2 3 4 5 6 7 8 9 |
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 : list) { result.put(o, map.get(o)); } return result; } |
And this is an example of Comparator for MyClass objects sorted on the base of a String property “sortField” (note the toLowerCase method):…
Leggi tutto