Re: Communication with Linux community

2000-07-05 Thread Tony Dean
I would start with the major archive sites. The MIT site is still around at ftp://tsx-11.mit.edu/pub/linux/ and its been there for years. The other major US archive site is http://metalab.unc.edu which used to be sunsite.unc.edu. This is also an old site that is often the source for people who wa

Re: Communication with Linux community

2000-07-05 Thread Nathan Meyers
Jacob Nikom wrote: > Hi, > > My question is little off the usual java-linux topics and relates > to the activity in Linux community. Jacob, There's no central authority for such things, but there are certainly good ways to announce and distribute your stuff. If "donating" means supplying sourc

Re: Communication with Linux community

2000-07-05 Thread Mo DeJong
On Wed, 5 Jul 2000, Jacob Nikom wrote: > Hi, > > My question is little off the usual java-linux topics and relates > to the activity in Linux community. > > My company thinks about donating some of their applications to the > Linux community. Where I can look how to do it, whom to communicate

applet's param!

2000-07-05 Thread wangmq
If I use the below applet tag, ie browser can view normally; but netscape can't. why? ¡CRP‚D€Dzf¢–Ú#jö¥Š{±­ê®zËcjö›•§$vŒ'¢¸0ŠØZ²æãyËh~éì¹»®&ÞNº.nW‚¢{ZrÙ®VåiÉ£ è®

Stupid JIT tricks?

2000-07-05 Thread Avi Cherry
Does anyone know if any of the JDKs available support the tricks that java.lang.Compiler offers? I would like to be able to selectively disable compiling so I can debug running systems without having to restart the system to turn off the JIT in order to enable line numbers. I have ye

Re: Communication with Linux community

2000-07-05 Thread Christopher Smith
--On Wednesday, July 05, 2000 6:55 PM -0400 Jacob Nikom <[EMAIL PROTECTED]> wrote: > My question is little off the usual java-linux topics and relates > to the activity in Linux community. > > My company thinks about donating some of their applications to the > Linux community. Where I can look h

Communication with Linux community

2000-07-05 Thread Jacob Nikom
Hi, My question is little off the usual java-linux topics and relates to the activity in Linux community. My company thinks about donating some of their applications to the Linux community. Where I can look how to do it, whom to communicate with and how it is usually happens? Thank you, Jacob

Re: String manipulation and optimization

2000-07-05 Thread Jason Reich
The java disassembler (javap -c) is a great tool for this.  For example, try a slightly modified version of your code: class test { public void test() { // original example String s; s = "SELECT COF_NAME, "; s += "SAL

Where can I download a complete Java-Linux source codes?

2000-07-05 Thread Erik Hu
Hi I am new to J2SE 1.2.2 for Linux (Blackdown). I have downloaded jdk1.2.2 source codes form www.sun.com. However, as mentioned in the jdk1.2.2 RC4 README document ( " The stock JDK source distribution from Sun won't build on Linux" ), I could not re-build the source code. I found errors duri

Re: THEY WORK AGAIN!!!

2000-07-05 Thread Man Chi Ly
http://www.ibm.com/java/jdk/linux130/ On Wed, 5 Jul 2000, Jacob Nikom wrote: > Could you tell me for the URL is? > > THank you, > > JAcob Nikom > > Patrick Ohnewein wrote: > > > > Ohh the links work now > > > > I guess they just had a server crash > > > > cu patrick > > > > Patrick O

Re: String manipulation

2000-07-05 Thread Man Chi Ly
On Wed, 5 Jul 2000, Tony J. Paul wrote: > Hi brEezE, > > I am new to this list. I don't know if this will suffice your > requirement. Anyway, Why don't you try StringBuffer class? You can use > it like this, > > StringBuffer sb=new StringBuffer(); > sb.append("SELECT COF_NAME,

Re: THEY WORK AGAIN!!!

2000-07-05 Thread Jacob Nikom
Could you tell me for the URL is? THank you, JAcob Nikom Patrick Ohnewein wrote: > > Ohh the links work now > > I guess they just had a server crash > > cu patrick > > Patrick Ohnewein wrote: > > > > I posted a report to IBM reporting the problem, I've got the response > > they forwarde

Re: JNI_CreateJavaVM() == -1

2000-07-05 Thread Juergen Kreileder
> "chris" == chris <[EMAIL PROTECTED]> writes: chris> I'm getting started trying to use the JNI from a C++ chris> program. JNI_CreateJavaVM() returns -1. Not much info chris> there except that it has failed. Any clues as to where to chris> begin debugging this? I'm using th

JNI_CreateJavaVM() == -1

2000-07-05 Thread chris
Hi, I'm getting started trying to use the JNI from a C++ program. JNI_CreateJavaVM() returns -1. Not much info there except that it has failed. Any clues as to where to begin debugging this? I'm using the examples from the Gordon book on JNI. Does someone have a JNI hello world for the Blackdown d

Re: Serious bug in System.identityHashCode() found.

2000-07-05 Thread Timothy Reaves
Miles Sabin wrote: > > Apart from anything else, hashCodes are ints, so there are at > most 2^32 distinct ones. A 64 bit implementation could support > more that 2^32 objects, in which case there'd have to be some collisions. This is not quite correct; only 21 bits are used for the HashCode.

Re: String manipulation

2000-07-05 Thread Tony J. Paul
Hi brEezE, I am new to this list. I don't know if this will suffice your requirement. Anyway, Why don't you try StringBuffer class? You can use it like this, StringBuffer sb=new StringBuffer();     sb.append("SELECT COF_NAME,  ");     sb.append("SALES FROM COFFEES  ");     stmt.executeQ

Re: hardware opengl success

2000-07-05 Thread Andreas Micklei
Hi, On Tue, Jul 04, 2000 at 09:42:40PM -0700, noisebrain wrote: > RH6.2, > added Xfree86 4.0.0 > Nvidia Geforce2 chip (Elsa card), using their closed-source driver > (an expert told me this is the current fastest card for my application) You are posting faster than me. ;-) Nevertheless, I got t

Re: hardware opengl success

2000-07-05 Thread Jesper Nordenberg
Interesting. I'm curious if you (or anyone else) have tried any other OpenGL bindings for Java, like Magician, Sparrow, Jogl etc. under Linux and compared them to GL4Java (running XFree86 4.x.x). I'm mostly interested in performance aspects as I only use basic OpenGL functionality. > Slightly of