Good Day to All! SUN Microsystems is pleased to announce...The 2003 Java and Solaris 8 Track Promo! Gift Cheques from selected establisments, SUN Exam Vouchers...
just installed eclipse 2.1 in my red hat 8 box (btw, rh9 is now available for download) sa wakas! there are some improvements on the cvs client, like support ...
Announcement The Global Knowledge Partnership (GKP) has just launched the GKP Youth Award. We invite submissions from youth led projects from all over the ...
Here's even more discussion: http://www.mindview.net/Etc/Discussions/CheckedExceptions http://www.mindview.net/Etc/Discussions/UnCheckedExceptionComments What...
good day! i've experienced some sort of problem with the configuration of jsse on my machine. here's the stack trace from the log file: ***** IOException:...
... configuration ... server ... Lemme guess... you're connecting to a SSL server with a self-signed certificate. You'll need to add your fake Certification...
http://www.itmatters.com.ph/news/news_04022003e.html With the global application server market showing signs of huge potential growth, multinational database...
... the ... I duplicated what you did and got the certificate from entrust.com and installed it. After installing, the output of 'keytool -list' includes: ...
http://www.onjava.com/pub/a/onjava/2003/03/26/design_markers.html Interesting concept in making more use of Javadocs in source. I like how it promotes writing...
I have found this before, but am watching out for them again: http://www.junit.org/news/article/bug_patterns/index.htm We can discuss these for the Design SIG....
Looks like many of us could use this... http://www.openadaptor.org/ Openadaptor is a Java/XML-based software platform which allows for rapid business system...
Folks, You are all invited to the technical talks during the Technology Awareness Week of Mapua I.T. Center from April 21-25, 2003. This will be open to I.T....
i think it will be available on April 9 for non-RHN subscribers ... ===== J O J O P A D E R E S "The only necessary thing for evil to triumph is for good...
i always thought that i could spent time less coding(?) by using the following loop [1] String str = "abcdefghijkl"; for (int j =0; j < str.length(); j++) ...
It's a hassle to factor out String's length() into a separate value. But, if this is a server app, and you run 'java -server', you can give a hint to the Just...
Nice tip Migs! =D if I change the method "test3" like this: private static void test3(final String s, int n) { while (n-- > 0) { final int length = s.length();...
... You can further optimize the block by using ++j instead of j++; the latter saves a copy of value in memory, before incrementing it; the former just...
... thanks... so let's have the Design SIG meeting... :) ... I just tried it. It's the same as without the 'final' for 'int length'. My guess is that the JIT...
... Just tested it. No difference. I guess the JIT figures out that there's no value to save since it's not used. ... No direct comparison there, since Java...
Just installed Mandrake 9.1 The eyecandy is good but too slow especially when I load openoffice. Planning to switch to rh9. Its a noticeably faster. For now im...
... Aside from this, sometimes we use the loop to look into something then do some actions there. Well, according to the best practices article. It's advisable...
... then ... article. ... what ... That's a best language for any language, actually. ... Why create a new HashTable() for ht, if ht is reassigned anyway? Is...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the pinoyjug group. File : /Talk...
pinoyjug@yahoogroups....
Apr 5, 2003 3:59 pm
4547
<<< ... "This code has a trailer: It's got a database, and every line of code is riddled with SQL commands. It's not reusable because it's got dependencies on...