pita

Has anyone ever got a remote JMX JConsole to work?

It seems that I've never got this to work in the past. Currently, I KNOW it doesn't work. But we start up our Java process: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=6002 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false I can telnet to the port, and "something is ther...

How can I flag source code in an MS Word document to not spell check?

Sometimes, for what ever reason, I copy source code into either a word document, or an email ... which in Outlook, I believe, is using Word. Anyway, it would be nice if I could spell check the english part of my document without having to manually ignore each and every source code token. Is there an option, or some type of style format...

Searching in Java collection. Why it's so hard ?

Hi everyone, Is there a reasonable explanation, why searching an element in Java collection is so hard? For example, let's say I have: ArrayList<People> listPeople = new ArrayList<People>(); public class People { public String name; public String age; //some other code here } You got the idea ... Now, if I want to get from ...