Re: [ilugd]: (fwd) Wizebyte workhop!!

2002-02-27 Thread Arminder Singh
Hi All, Wizebyte is IMTs' All India Info Tech Symposium, organized at our campus in Ghaziabad. Its a 72 hour fest with over 15 technical colleges participating!! We have Technical Events such as overnight software writing, DotCom, various quizzes etc. We also have non technical events , mainly m

Re: [ilugd]: Makefile Problem

2002-02-27 Thread Sandip Bhattacharya
On Wed, Feb 27, 2002 at 06:25:46AM -, Venkata Subramanian spoke out thus: > Actually, I want to run diff command depending on the status of > cmp, i-e only if the exit status is 1, indicating a difference in > the files. If you are sure that cmp won't generate an error( return value > 1) t

[ilugd]: Problem in Java

2002-02-27 Thread mohit
A problem in running a java Program in Linux import java.util.Stack; public class aClass { public static void main(String []agrs) { Stack st1 = new Stack(); Stack st2 = new Stack(); new aClass().Method(st1, st2); System.out.println("st1 has: " + st1); System.out.println("st2 has: " + s

Re: [ilugd]: Reverse of Fetchmail !

2002-02-27 Thread Sandip Bhattacharya
On Wed, Feb 27, 2002 at 03:20:58AM +0530, Yashpal Nagar spoke out thus: > Hi All, >Is there any utility available in linux which instead of fetching the mail > ... starts the process of putting the mail to it's detintaion... > e.g i am running fetchmail after every 5 minutes, Now many times (

Re: [ilugd]: Reverse of Fetchmail !

2002-02-27 Thread Yashpal Nagar
On Wednesday 27 February 2002 04:03 pm, Sandip Bhattacharya wrote: > On Wed, Feb 27, 2002 at 03:20:58AM +0530, Yashpal Nagar spoke out thus: > > Hi All, > >Is there any utility available in linux which instead of fetching the > > mail ... starts the process of putting the mail to it's detintai

[ilugd]: Application Servers

2002-02-27 Thread Harshal Vaidya
Are there any OpenSource Alternatives for Application Servers in Linux..something similar to IBM Websphere and BEA weblogic. -- Harshal. = Harshal Vaidya. Linux Suppot,Installation and Integration Services. __ Do You Yahoo!? Yahoo! Greetings -

[ilugd]: Wizebyte workshop !

2002-02-27 Thread Nishikant Kapoor
Arminder, Since there still seem to be so many questions about Wizebyte, I suggest that you open up an event under 'Upcoming Events' section at ILUG-D site (http://linux-delhi.org/), putting in all the necessary details. Then send out an email to the mailing list and let the people sign up online

Re: [ilugd]: Problem in Java

2002-02-27 Thread Sandip Bhattacharya
Been a long time since I had last touched Java. However I can perhaps hazard an explanation. Forgive me if I make a mistake. In a method, when you are sending an object reference, it is just like a pointer(Actually a double pointer in a Java implementation). So, the changes that you make to the

Re: [ilugd]: Makefile Problem

2002-02-27 Thread Chirag Kantharia
On Wed, Feb 27, 2002 at 01:48:37PM +0530, Sandip Bhattacharya wrote: | On Wed, Feb 27, 2002 at 06:25:46AM -, Venkata Subramanian spoke out thus: | > Actually, I want to run diff command depending on the status of | > cmp, i-e only if the exit status is 1, indicating a difference in | > the

[ilugd]: iptable error

2002-02-27 Thread Manish K Arya
hi i have a strange problem.i m trying to insert following iptable rule iptables -A INPUT -i eth0 -p ! --syn -m state --state NEW -j DROP i get error iptables:No chain/target/match by that name veri strange error !! pls help --- Manish Kumar Arya ---

Re: [ilugd]: Reverse of Fetchmail !

2002-02-27 Thread Sandip Bhattacharya
On Wed, Feb 27, 2002 at 04:18:14AM +0530, Yashpal Nagar spoke out thus: > Yes Sandip, fetchmail is running through cron job viz '*/5 * * * * > /usr/bin/fetchmail -a -d 0 -N -v' So why dont you make an init script for fetchmail and put it in init.d, so that it starts when the system starts.

Re: [ilugd]: Application Servers

2002-02-27 Thread Sandip Bhattacharya
You can take a look at: http://jboss.org http://jakarta.apache.org/tomcat - Sandip On Wed, Feb 27, 2002 at 02:53:42AM -0800, Harshal Vaidya spoke out thus: > Are there any OpenSource Alternatives for Application > Servers in Linux..something similar to IBM Websphere > and BEA weblogic. --

Re: [ilugd]: iptable error

2002-02-27 Thread Sandip Bhattacharya
On Wed, Feb 27, 2002 at 04:32:18PM +0530, Manish K Arya spoke out thus: > hi >i have a strange problem.i m trying to insert following iptable rule > > iptables -A INPUT -i eth0 -p ! --syn -m state --state NEW -j DROP > > i get error > > iptables:No chain/target/match by that name > To use

Re: [ilugd]: iptable error

2002-02-27 Thread Manish K Arya
hi sandip my fault i by mistake had typed in mail iptables -A INPUT -i eth0 -p ! --syn -m state --state NEW -j DROP actually i tried iptables -A INPUT -i eth0 -p tcp ! --syn -m state --state NEW -j DROP but it not worked. --- Manish Kumar Arya Wh

Re: [ilugd]: Problem in Java

2002-02-27 Thread Chirag Kantharia
On Wed, Feb 27, 2002 at 04:25:07PM +0530, Sandip Bhattacharya wrote: | In other words: | | Method "main": | Local reference: st1 ,st2 | | Method "Method": | Before Entering: | Local reference: st1->(main:st1) | st2->(main:st2) | After (st1=st2): |

Re: [ilugd]: Problem in Java

2002-02-27 Thread Sandip Bhattacharya
On Wed, Feb 27, 2002 at 06:51:04PM +0530, Chirag Kantharia spoke out thus: > But isn't this also st1->st2->(main:st2)? > ie. if a -> b and b -> c shouldn't it imply a -> c (for pointers)? It is. But only in the method "Method". That is why it is displaying correctly inside the method only. "st1

Re: [ilugd]: Problem in Java

2002-02-27 Thread Chirag Kantharia
On Wed, Feb 27, 2002 at 07:10:08PM +0530, Sandip Bhattacharya wrote: | "st1" in "Method" is just a *local-variable* where a memory location is stored - I am not sure if I still get it. Following is the Method: private void Method(Stack st1,Stack st2) { st2.push(new Integer(100)); st1 = st2;

[no subject]

2002-02-27 Thread ilugd-request
id SAA23987; Wed, 27 Feb 2002 18:48:33 -0500 Date: Wed, 27 Feb 2002 18:53:03 +0500 (GMT+0500) From: Dinesh Taneja <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: [ilugd]: same ip address to two

[ilugd]: a basic C/C++ question

2002-02-27 Thread Kapoor, Nishikant X
// tst.cpp #include main() { char cArr[] = {'a','b','c','\0'}; int iArr[] = {1, 2, 3}; cout << "cArr=" << cArr << " iArr=" << iArr << endl; } // Output: cArr=abc iArr=0x2ff202f8 Q: Why is iArr 0x2ff202f8 and not '123' ? Regards, Nishi =

Re: [ilugd]: a basic C/C++ question

2002-02-27 Thread Sandip Bhattacharya
- Original Message - From: "Kapoor, Nishikant X" <[EMAIL PROTECTED]> > Q: Why is iArr 0x2ff202f8 and not '123' ? > Because for arrays,any arrays, the array variable stands for the pointer to the first index(index 0). char * is handled specially i.e. there is language support, for it to

[ilugd][OT] Google Programming Constest

2002-02-27 Thread amit soni
http://www.google.com/programming-contest/ Say what ? To subscribe, send email to [EMAIL PROTECTED] with subscribe in subject header To unsubscribe, send email to [EMAIL PROTECTED] with unsubscribe in subject header Archives are availab