[OT] ISO 9000/9001 certification946 (2/9/2005 8:04:40 PM) comp.lang.java.programmer Our company produces Java software specialised for customers. Recently our project manager has recommended that our company should be ISO 9000/9001 certified. No one in our company yet knows what this actually ... Joona
Stupidest code of the day2636 (1/17/2005 8:22:24 PM) comp.lang.java.programmer Found in my work colleague's code... List historyList = /* ... */; double divider = Double.parseDouble("" + historyList.size()); Now I have come to expect that my colleagues are still stupid enough to use the... Joona
Log4J question #2240 (1/9/2005 8:37:48 PM) comp.lang.java.programmer Suppose I make my own implementation of org.apache.log4j.Level. Call it FOOBAR. Now in the style of the Log4J example configuration file (to be parsed with PropertyConfigurator): log4j.rootLogger=DEBUG, A1 lo... Joona
finalize() question1040 (12/11/2004 8:33:06 PM) comp.lang.java.programmer The recent messages about finalize() got me thinking about this... I got the impression that when the GC sweeps up an object, it calls its finalize() method. Now if this is true, what happens if the finalize() ... Joona
Generics question #2644 (10/14/2004 11:53:47 AM) comp.lang.java.programmer The generics introduced in Java 1.5 are quite an interesting concept, when it comes to inheritance. I therefore have a question: Suppose both SuperList and SubList are template-able (or what is the correct term... Joona
Log4J/JCL questions038 (10/8/2004 1:34:09 PM) comp.lang.java.programmer I'm trying to redesign our application's logging system to use Log4J and/or JCL instead of using our own proprietary implementation. I have some general questions: 1) I would want the system to always use Log4... Joona
A for loop iterating over the complete range of a variable1642 (8/29/2004 5:01:03 PM) comp.lang.c Reading Skybuck Flying's obvious troll message, I thought of how to properly do a for loop that would iterate over the complete range of an unsigned variable. As you all know, Skybuck's method won't work. There... Joona
J2SE certificates expired, can I get new ones?138 (8/16/2004 9:52:57 PM) comp.lang.java.programmer I just found out that some of my SSL certificates that I got along with J2SE 1.4.2_01 have expired. Can I get new ones by downloading a new J2SE from java.sun.com? Or will it have the same expired certificates?... Joona
Problem with Java SSL: No trusted certificate found057 (8/16/2004 7:44:15 PM) comp.lang.java.programmer Our application needs to communicate with an external server using SSL. I have J2SE 1.4.2_01 installed, which should include the Java SSL libraries, but I'm unable to get SSL to work. I tried this sample code f... Joona
Dynamically include JSP file?539 (7/5/2004 7:19:16 PM) comp.lang.java.programmer Can I somehow dynamically decide which JSP file to include in another JSP file, using the tag? Specifically, what I want to do is something like this: In the main JSP file: String jspFile = getJSPFileName(); ... Joona
C program to automatically press F6 every few seconds4049 (6/8/2005 7:59:45 AM) comp.lang.c I need a program in C (something like a TSR) which will automatically press the function key F6, say about every 5 seconds. Can anyone provide me with an exe of such a program? Thanks in advance. ... findmadhav(1)
What Math Is Needed for Programming?1534 (5/19/2005 8:44:08 PM) comp.lang.java.programmer I'm interesting in studying OOP programming languages on my own: C, C++, Java. I haven't studied the big 4 math subjects in my last year of high school, Calculus, Algebra, Geometry, Statistics. Which of these... bibby(3)
Does sizeof(char) always equal to 1?956 (5/22/2005 5:53:18 AM) comp.lang.c Hi, all FAQ of comp.lang.c said "In C, type char is defined as occupying one byte, so it is usually 8 bits". (http://www.eskimo.com/~scs/cclass/notes/sx2a.html) But I found in C99 that "An object declared as ... sunner(5)
ain't java grand ?434 (5/24/2005 2:48:13 AM) comp.lang.java.programmer I just got this error message from the java 4.2 compiler. --- Consulting.java:152: cannot resolve symbol symbol : variable $ location: class Consulting perchance you meant '.' --- Ain't it just the coolest mes... lisa8584(112)
System.exit(n)2048 (5/24/2005 11:59:17 AM) comp.lang.java.programmer While calling the method System.exit(int); what is the purpose of the argument (status code) and how can this value be captured by another program? ... kmouly(1)