Re: [ilugd] Photos on ILUG-D

2005-08-01 Thread Kapoor, Nishikant
 -Original Message-
 From: Raj Mathur
 Sent: Monday, August 01, 2005 4:15 AM
 To: The Linux-Delhi mailing list
 Subject: Re: [ilugd] Photos on ILUG-D
 
 
  Viksit == Viksit Gaur [EMAIL PROTECTED] writes:
 
 Viksit Helleaux!  --- Raj Mathur [EMAIL PROTECTED] wrote:
 
  Precisely!  We've already done the hard work, so whom should I
  mail the photographs to to upload onto the site?
 
 Viksit Hehe, giving the camera to a volunteer to click snaps is
 Viksit hard work? ;)
 
 Charging batteries, carrying camera, replacing batteries, making sure
 there's enough space in the camera memory, finding a volunteer,
 motivating a volunteer, copying pics to the computer -- yes, all these
 are hard work ;)
 
 Viksit BTW, Karunakar's camera - someone should inform him about
 Viksit this.
 
  The photographs are currently downloadable from:
  
  http://shanta.linuxops.net/~raju/ILUGD-20050731/
 
 Viksit Yeah, last I checked, it was on 23.. 11 more to go.
 
  The volunteer (who can easily be Viksit, since he'll have
  faster 'net access than any of us in the foreseeable future) is
  welcome to upload them onto the linux-delhi.org site.
 
 Viksit Okie Dokie. I don't mind doing that. How do i get the
 Viksit photos though? Email? In which case someone would have to
 Viksit upload them on to the web anyway.. Which might be done to
 Viksit the ILUG site itself?
 
 Actually it's easier for me to rsync to shanta than to upload photos
 individually into the album -- rsync is non-interactive so I just
 leave it on, while the album requires constant interaction.  Given my
 sucky outgoing bandwidth, it'd take me a few hours to populate the
 album.
 
 I hope Nishi's listening -- any way to upload photos in bulk and then
 put captions on selected ones?  The captioning could be done through a
 web form.

I was looking at the web form, and it allows you to upload 10 photos in one go 
but yes, you do have to tell it which 10 photos to upload - using 'File...' 
selection box. Once you identify all the photos, you can sit back and let the 
upload do its job. To make it a bit easier, I just configured it to upload 50 
photos in a single shot. Other suggestions to make it simpler are welcome.

Regards,
Nishi

PS: I just uploaded all the photos from the above mentioned link to ILUG-D. 
Needed to check the web form again.


___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] have you implemented 'drupal'?

2005-07-14 Thread Kapoor, Nishikant
Hello,

I am doing an assessment of 'drupal', and was wondering if you could share your 
thoughts about it - both, as drupal administrator, and as its user.

If you have implemented it, please send the URL too.

Regards,
Nishi


___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Meeting and elections, 2005-04-24

2005-04-25 Thread Kapoor, Nishikant
 The Governing Body of the society now is:
 
 President:Raj Mathur (unanimous)
 Vice President:   Sandip Bhattacharya (by 9 votes to 7)
 General Secretary:T Meyrivan (unanimous)
 Joint Secretary:  Kapil Dua (unanimous)
 Treasurer:Kishore Bhargava (unanimous)
 Member:   Vivek Khurana (unanimous)
 Member:   Vivek Iyyer (by 9 votes to 7)

All the Governing Body members are requested to sign up at ILUG-D web site 
(there are a couple who have not), and please upload your pictures. I will soon 
be posting a page listing the Governing Body.

Regards,
Nishi


___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] How to find client's IP address (or name)

2005-03-01 Thread Kapoor, Nishikant
[Sorry for cross posting].

I have a very basic server written in C. It creates a socket, binds it to a 
port and listens for client's requests. I am trying to find the IP address of 
the client when the client attempts to make a connection. Does anyone know how 
to do that? (I was hoping to have client structure filled in when client 
establishes connection, but that doesn't seem to be the case.)

Here is the trimmed code (can send complete code if you so desire).

Tanks,
Nishi

#includes

int main() {
   struct sockaddr_in  server;
   struct sockaddr client;
   struct hostnet  *hp;

   sock1 = socket(AF_INET, SOCK_STREAM, 0);

   memset(server, 0, sizeof(server));
   server.sin_family  = 127.0.0.1;
   server.sin_addr.s_addr = htonl(INADDR_ANY);
   server.sin_port= htons(atoi(argv[1]));
   rc = bind(sock1, (struct sockaddr *)server, sizeof(server));

   rc = listen(sock1, 32);

   rc = listen(sock2, 32);

  while (1) {
  printf(Waiting on select()...\n);
  rc = select(32, sock, NULL, NULL, timeout);

  rc = accept(msgSock, client, addrlen);

  fprintf (stdout, client.sa_data=%s \n, client.sa_data);

  fprintf (stdout, Client's IP address: %s \n, ???);
  fprintf (stdout, Client's port no: %s \n, ???);
   }

} /* end of main() */


___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] RE: [ILUGD-Dev] How to find client's IP address (or name)

2005-03-01 Thread Kapoor, Nishikant
 I have a very basic server written in C. It creates a socket, 
 binds it to a port and listens for client's requests. I am 
 trying to find the IP address of the client when the client 
 attempts to make a connection. Does anyone know how to do 
 that? (I was hoping to have client structure filled in when 
 client establishes connection, but that doesn't seem to be the case.)
 
 Here is the trimmed code (can send complete code if you so desire).
[snipped]

Never mind. I guess I was looking for 

  client = (char *)inet_ntoa(clntAddr.sin_addr);

Thanks,
Nishi


___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] Your event at ILUG-D

2004-11-17 Thread Kapoor, Nishikant
Rajat,

I just noticed that you created an Event in ILUG-D under the title educate 
more on linux for RHCE experts and programmers / administ.. on linux. Please 
note that 'Events' section is for scheduling events relating to ILUG-D, and 
should be used only if you are planning on getting together with the community. 
Otherwise, use the appropriate 'News' section to create your entry.

Your event, therefore, has been deleted because of above mentioned reason.

Please feel free to let me know if you have any questions.

Regards,
Nishi


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


RE: [ilugd] Your event at ILUG-D

2004-11-17 Thread Kapoor, Nishikant
Ooops! Apologies offered...needed to send to an individual...instead, sent it 
to the list.

-Nishi

 -Original Message-
 From:
 [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]
 linux-delh
 i.org]On Behalf Of Kapoor, Nishikant
 Sent: Wednesday, November 17, 2004 12:23 PM
 To: The Linux-Delhi mailing list
 Subject: [ilugd] Your event at ILUG-D
 
 
 Rajat,
 
 I just noticed that you created an Event in ILUG-D under the 
 title educate more on linux for RHCE experts and programmers 
 / administ.. on linux. Please note that 'Events' section is 
 for scheduling events relating to ILUG-D, and should be used 
 only if you are planning on getting together with the 
 community. Otherwise, use the appropriate 'News' section to 
 create your entry.
 
 Your event, therefore, has been deleted because of above 
 mentioned reason.
 
 Please feel free to let me know if you have any questions.
 
 Regards,
 Nishi


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] FW: ILUG-D: unknown error? what's happening

2004-10-07 Thread Kapoor, Nishikant
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Message from Rohit Kumar:
 
 Respected Sir, i am facing a similar problem i did some time 
 ago. when i post a message to ilug-d list, i get the 
 following message though the message i post, is visible at 
 the mailing list site.
 i am sending what i got in my inbox after sending three 
 mails.dated 7/10/04.
 here is the message...
 =
 Date: Thu, 7 Oct 2004 16:24:48 +0530 
 From: Administrator [EMAIL PROTECTED]  
 To: [EMAIL PROTECTED] 
 Subject: PostMaster Enterprise Alert - User Unknown 
 
 
 ***
 ** PostMaster Enterprise Alert
 ** System Generated Message
 ** Do Not Reply To This 
 ***
 
 
  Message not delivered 
 User [EMAIL PROTECTED] Unknown
  Original message replaced by message headers 
 Date: Thu, 7 Oct 2004 02:57:39 -0700 (PDT)
 From: Rohit Kumar [EMAIL PROTECTED]
 Subject: [ilugd] Modem for the long run
 ==


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/[EMAIL PROTECTED]/


RE: [ilugd] Linux and PHP interview question required

2004-09-23 Thread Kapoor, Nishikant
 From:
 Hello friends,
   I am new to this group and this is my first mail to 
 this group.
 I've a interview of Linux and PHP.
 I've done Linux but nothing of PHP.
 So,Please tell me wat type of questions of linux are asked in 
 the interview and also tell me how shud i do the basics of 
 PHP.Please refer me some good book of PHP or give me some 
 material of PHP so that i could clear my interview
 Waiting for your reply
 Thanks
 Nishant

Generally, it should be mentioned in the ad for position what is expected of a 
candidate in terms of what is essential, and what is preferred. If not, it is not at 
all a bad idea to ask them exactly what would they be looking for in a candidate.

Good luck,
Nishi


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/[EMAIL PROTECTED]/


RE: [ilugd] Some pics from the Themeless meet at eSys on 20th June 2004

2004-07-08 Thread Kapoor, Nishikant
Hello Tarun,

Just wanted to let you know that 'Pictures' module is up and running at ILUG-D and, 
you are now able to 'Submit pictures' once you are logged in.

Please give it a try and let me know if you notice anything odd.

Regards,
Nishi

PS: The pictures we had earlier need to be uploaded again so that the 'Pictures' 
module can 'see' them. I plan to do it as and when time permits, but if you like, 
please feel free to upload any pictures that you might have from prior meets and/or 
ILUG-D events.

 -Original Message-
 From: Tarun Dua [mailto:[EMAIL PROTECTED]
 Sent: Monday, June 21, 2004 12:12 PM
 To: [EMAIL PROTECTED]
 Subject: [ilugd] Some pics from the Themeless meet at eSys on 
 20th June
 2004
 
 
 http://tarundua.net/gallery/view_album.php?set_albumName=ilugd062004
 I posted them on my site temporarily because I couldn't find 
 a way to upload
 them to linux-delhi.org until the event gets approved.
 -Tarun
 
 
 ___
 ilugd mailinglist -- [EMAIL PROTECTED]
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: 
 http://news.gmane.org/gmane.user-groups.linux.delhi 
 http://www.mail-archive.com/[EMAIL PROTECTED]/
 
 


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/[EMAIL PROTECTED]/


[ilugd] RE: i am not getting emails on the new id

2004-06-25 Thread Kapoor, Nishikant
 -Original Message-
 Message from Vijay Shekhar:
 
 i was recieving mails on my prev email ID, i cnanged the 
 email id in profile, and i am not getting emails on the new id.
 Kindly see to it.
 -shekhar
 --

Since this seems to be the most frequently asked question, I am CCing my reply to the 
list.

Your email address that you specify in ILUG-D Membership Profile IS NOT related to 
mailing list subscription in any which way. Although you can join/leave the ILUG-D 
mailing list using ILUG-D web site interface, changing your email address in your 
ILUG-D membership profile does not automatically change it for the mailing list 
subscription. To change your mailing list subscriptions, please visit the following 
link:

ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd

HTH,
-Nishi


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/[EMAIL PROTECTED]/


RE: [ilugd] [x-posted] ilug-d's first ad-hoc, on-the-fly supercomputer

2004-04-08 Thread Kapoor, Nishikant
As exciting as it sounds, I would personally keep it on a low profile, at least until 
we have accomplished our objective (even if partial).

I would say lets stay focused on this project and, this project alone. Keep the specs 
to the bare minimum, keep the media and other distractions out, and just make sure 
that we have a working system when we are done with it.

There will be plenty of opportunities to invite media and other LUGs afterwards. In 
fact, we should host a formal, well-prepared presentation detailing the project...but 
only after we have made some significant progress.

Best wishes and good luck to all those involved in this exciting project,
Nishi

 -Original Message-
 From: linuxlingam [mailto:[EMAIL PROTECTED]
 Sent: Thursday, April 08, 2004 9:25 AM
 To: The Linux-Delhi mailing list
 Cc: linux india
 Subject: [ilugd] [x-posted] ilug-d's first ad-hoc, on-the-fly
 supercomputer
 
 
 dear linux users across india,
 
 looks like ilug-delhi is rolling with plans to build a flash mob
 supercomputer sometime this month or next month.
 
 people will be invited to bring in their pcs, whether linux or windoze
 boxes, and plug it into a high-speed LAN. a bootable live distro of
 gnulinux that allows clustering, will be used to boot the pcs and make
 them into nodes.
 
 our first, on-the-fly, supercomputer.
 
 this event will doubtlessly make news, and make history.
 
 more details about this can be found on the linux-delhi mailing list
 
 ilugd mailinglist -- [EMAIL PROTECTED]
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at:
 http://news.gmane.org/gmane.user-groups.linux.delhi 
 http://www.mail-archive.com/[EMAIL PROTECTED]/
 
 would be really exciting if Linux User Groups across india 
 also get into
 building flashmobsupercomputers in their areas.
 
 let's start this race.
 1) which ilug is the first to make the flash mob supercomputer
 2) who builds the fastest
 3) who has the largest number of nodes.
 4) how would these compare to india's fastest supercomputers?
 
 this will be so cool! we'll have supercomputers being built 
 on weekends
 across india.
 
 remember to call the local press in your area to the event.
 
 :-)
 LL
 
 
 
 ___
 ilugd mailinglist -- [EMAIL PROTECTED]
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: 
 http://news.gmane.org/gmane.user-groups.linux.delhi 
 http://www.mail-archive.com/[EMAIL PROTECTED]/
 
 


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/[EMAIL PROTECTED]/


[ilugd] Coding challenge

2004-04-06 Thread Kapoor, Nishikant
Has anyone taken this challenge?
Would you like to?

Regards,
Nishi

TAKE THE TOPCODER MONTHLY CODING CHALLENGE!
The solutions to last month's problem set were just posted. See how you did, or try 
your hand at the April problem set.
http://nl.internet.com/ct.html?rtr=ons=1,tlk,1,3b7o,c3ff,9v07,5ixn


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/[EMAIL PROTECTED]/


RE: [ilugd] Re: ILUGD April Meeting (summing up)

2004-04-01 Thread Kapoor, Nishikant
 Ritesh Raj Sarraf wrote:
  I hope these topics aren't clashing.
 So everything is set of the April Meet now.
 Cheers!!
 -Tarun

In that case, please update it at ILUG-D site. As the author of the event, you can 
always go back and change it if need be. Others can add comments.

I recall, there was a talk about maintaining details of ILUG-D meets, agenda, minutes, 
etc. I would urge you all to use ILUG-D 'Event Calendar' for it. Give it a try, you 
might like it.

Regards,
Nishi


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/[EMAIL PROTECTED]/


RE: [ilugd] Next Meet

2004-03-30 Thread Kapoor, Nishikant
 -Original Message-
 From: vivek khurana [mailto:[EMAIL PROTECTED]
 
 --- Manpreet Singh Nehra [EMAIL PROTECTED]
 wrote:
  On Tue, 2004-03-30 at 16:52, vivek khurana wrote:
 
  there someone who's keeping a log/list of all the
  topics covered till
  date of lugd meets
 
  I don't think there is any log/list, but you can
 start maintaing them. Also, we can implement a
 priority for topics in such a list with newbies meet
 having highest priority.

Actually, all the ILUG-D meets, their agenda, minutes and comments (in some cases) are 
maintained at ILUG-D web site. Check it under 'Events' calendar.

Regards,
Nishi


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/[EMAIL PROTECTED]/


[ilugd] yet another mailing list for jobs in gnulinux

2004-03-16 Thread Kapoor, Nishikant
 -Original Message-
 From: LinuxLingam [mailto:[EMAIL PROTECTED]

 ps: nishikant, looks like we need *yet* another mailing list 
 for people
 who wish to solicit job opportunities in this emerging era of 
 gnulinux.
 think its a good idea.

Sure, why not.

How about starting it with Discussions--Job Openings at ILUG-D site?

We can look into creating another mailing list if the traffic happens to be decent 
enough.

Regards,
Nishi


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/[EMAIL PROTECTED]/


RE: [ilugd] Pool at ilugd website

2004-02-27 Thread Kapoor, Nishikant
I guess, you just pick the one that you use it for most.

Regards,
Nishi

 -Original Message-
 From: vivek khurana [mailto:[EMAIL PROTECTED]
 
 Hi!
 
  I saw the polling section in the new ilugd site. 
 
  One question, what one should select if he uses linux
 box for more than one of the listed purpose???
 
 with regads
 vivek


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/[EMAIL PROTECTED]/


RE: [ilugd] Pool at ilugd website

2004-02-27 Thread Kapoor, Nishikant
 
  I agree that single Linux box can be used for
  multiple purposes but for the poll, you just need to
  pick the one that you use it most for.
  what if the a single box is used for internet access
 and  file sharing???

Still, just pick one.

  Well, let me also admit that the poll software does
  not cater to multiple answers format, at least not
  in its present form :-(
  Ok then can we add more items such as 2 or more
 applications from above

We sure can. Will do it tonight.
Thanks for the suggestion.

Regards,
Nishi


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/[EMAIL PROTECTED]/


RE: [ilugd] Re: ILUG-D website

2004-02-24 Thread Kapoor, Nishikant
Ok, ok, ok...I am at work now and do not have access to ILUG-D site.
Will do it tonight (assuming my 2 yr old goes to bed on time :-)

Regards,
Nishi

 -Original Message-
 From: LinuxLingam [mailto:[EMAIL PROTECTED]
 
 argh! how difficult is it to put the illustration on the 
 right, and the
 logo on the left. tarun, you exasperate me!
 
 goddamit! just try it, and let's see how wretched it looks.
 
 BAH!
 
 [fuming]
 
 LL


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/[EMAIL PROTECTED]/


[ilugd] ILUG-D logo

2004-02-24 Thread Kapoor, Nishikant
LL,

I downloaded LinuxDelhiLogo.png from ILUG-D/downloads and am trying to open it using 
gimp 1.2.1 but it says Unknown file type. Same is the case with xv 3.10a.

I noticed that if I open it in IE, it uses QuickTime to display the file. Is that how 
IE renders all .png files?

Anyway, how do I open the file? I need to resize it to file ILUG-D page-header.

Regards,
Nishi


___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/[EMAIL PROTECTED]/


RE: [ilugd] News server for ilugd

2003-09-25 Thread Kapoor, Nishikant X
Please, go ahead.

Regards,
Nishi

 -Original Message-
 From: Sandip Bhattacharya [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 25, 2003 1:21 AM
 To: The Linux-Delhi mailing list
 Subject: Re: [ilugd] News server for ilugd
 
 
 Sandip Bhattacharya wrote:
  game offers trivial email encryption (some what like the 
 way my email 
  address is written in my sig). Teh only reason many folks have 
  objecttions to such an idea is email harvesting.
  
 
 Hmm. The email encryption is not that trivial. Here is the 
 email address 
 of someoen on the ilug-calcutta list.
 
 [EMAIL PROTECTED]
 
 I dont think people should have problem with this now!
 
 Kishore/Nishikant! How about it then? Would you do the honours at 
 http://gmane.org/subscribe.php ? Or shall I do it myself?
 
 - Sandip
 
 -- 
 Sandip Bhattacharyahttp://www.sandipb.net
 sandip at puroga.com
 Puroga Technologies Pvt. Ltd.
 http://www.puroga.com
 
 
 ___
 ilugd mailing list
 [EMAIL PROTECTED]
 http://frodo.hserus.net/mailman/listinfo/ilugd
 
 


___
ilugd mailing list
[EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd


RE: [ilugd] Re: python perl programming. thanks!

2003-09-03 Thread Kapoor, Nishikant X
I have been observing this thread for a while now and have been thinking ever since to 
put in my 2 bits but been too busy lately. Finally, managed to find some time today 
and here it is.

In the beginning of your technical career, it takes an effort to learn and understand 
a programming language but as you go along, language syntax (and programming) takes 
the back seat and design (and testing) carry majority of the load.

Picking a programming language to learn is important and so, pick a language that you 
think you are going to use in foreseeable future. If you are not sure which one you 
will be using, pick the one that is most popular and more important, most easy to use. 
Trying to learn a language that claims to be extremely powerful, flexible, structured, 
etc. etc. will not help if you end up spending countless hours figuring out what its 
few lines of code mean. Not only will you feel intimidated by the language, it is very 
likely that you will end up losing interest in the programming itself.

And if you are already passed that stage, and feel comfortable with couple of 
programming languages already, it should be of least concern what programming language 
to learn next since the basic drill is pretty much the same - pick up a book, write 
test programs, get onto the mailing list and voila!

My professor once said - If you know one programming language well, you can claim to 
know them all.

Regards,
Nishi

 -Original Message-
 From: Viksit Gaur [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, September 03, 2003 1:55 PM
 To: [EMAIL PROTECTED]; The Linux-Delhi mailing list
 Subject: Re: [ilugd] Re: python perl programming. thanks!
 
 
 Well, thanks to the combined efforts of the people on
 this list, and LinuxLingam, not to mention #linux at
 freenode, i've decided to learn python instead of
 Java. 
 
 Hehe, thanks!
 
 But, i do wonder. after using so many languages
 limited by braces, isnt python something which takes
 time to get used to? or is this just a fancy i have?
 
 vik
 
 --- LinuxLingam [EMAIL PROTECTED] wrote:
  
   However, a general culture that I have observed in
  Perl hackers is that the
   more you know the language, the more you are prone
  to use real complex
   code. Beautiful code != optimized code, in
  perl-land. IF there is more than
   one way to do it, then perl users are more prone
  to do it in away that
   reduces keystrokes, and hence ...
  
   Very difficult to do it in languages like Python
  and Java.
  
  this is a *deliberate* design in python.
  general rule of code: it will evolve, ad infinitum,
  unless you fork, or 
  outgrow your initial architectural limitations.
  hence it is good practice to have code
  'comprehensible' to various eyeballs: 
  past, present, future.
  
  however, this is not a flame-war. as several people
  point out, 
  programming-language agnostism is a great idea.
  knowing python, perl, java, 
  c, c++, and a few more is a more pragmatic approach
  to take to serious 
  developing
  
  okay, so i deliberately loaded that initial posting
  to ilug-d, since for the 
  past few months i discovered the interest-level
  towards python was rather low 
  in ilug-d, and not so on other ilugs in india. its
  also quite hot in other 
  parts of the world. anand, great to know you taught
  yourself python. sandip 
  also knows it. supreet is our resident
  python-charmer.
  would be nice to have a show of hands.
  
  
  :-)
  LL
  
  ___
  ilugd mailing list
  [EMAIL PROTECTED]
  http://frodo.hserus.net/mailman/listinfo/ilugd
 
 
 =
 viksit gaur   http://viksit.tripod.com
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]
 
 Linux. The choice of a GNU generation. 
 New eh?
 I tried sniffing coke once, but the ice cubes seemed to get 
 in the way...
 
 __
 Do you Yahoo!?
 Yahoo! SiteBuilder - Free, easy-to-use web site design software
 http://sitebuilder.yahoo.com
 
 ___
 ilugd mailing list
 [EMAIL PROTECTED]
 http://frodo.hserus.net/mailman/listinfo/ilugd
 
 


___
ilugd mailing list
[EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd


RE: RE: [ilugd] Linux-delhi.org working?

2003-08-02 Thread Kapoor, Nishikant X
 -Original Message-
 From: MALKIAT BENIPAL [mailto:[EMAIL PROTECTED]
 
 I have also some problem with linux-delhi.org. I updated my 
 account and changed my email address in order to get my 
 furture mail over new account. But still I am getting my 
 mails relating to ILUGD on my old email-id given in my user 
 account with ILUGD.
  
 Dear Administrator, Pl. check where the problem is
 best regards,
 malkiat

ILUG-D mailing list subscription list is not tied to your ILUG-D accounts. When you 
login at ILUG-D site and update your account, you update ONLY your ILUG-D account. For 
changing mailing list subscription, you need to (a) unsubscribe your old address (b) 
subscribe your new address.

However, the idea is indeed a good one. Any takers?

Regards,
Nishi


___
ilugd mailing list
[EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd


RE: [ilugd] How to know whether the file has been copied fully?

2003-07-10 Thread Kapoor, Nishikant X
 -Original Message-
 On Thu, 2003-07-10 at 16:54, Jasmeet S. Virdi wrote:
  Hi,
 I have an vsftpd server running on RH9 system. The 
 behaviour is to
  copy the files to a new location when the upload has 
 completed for just
  one particular user. I have a simple cron job with mv 
 command that runs
  every minute to check for new files and moves them to the 
 new location.
  The problem that I am facing is that the files have not been ftp'ed
  completely when the cron job runs and hence moves only 
 partial files.
  Does anyone have any ideas on how to figure out whether the complete
  file has been ftp'ed and then only move it to the new 
 location. Or is
  there an FTP server that can run a script when the upload 
 completes ?
  
  Thanks
  -jasmeet
 Have the md5sum of the corresponding files uploaded as well 
 with a .md5
 extension to differentiate and check it before moving to the new
 location.
 
 Tarun Dua

Or, simply write the filesize in a tmp file and compare it with the actual every time 
you come in. If the filesize has NOT changed since the last visit, perform a 'mv' and 
remove the tmp file otherwise update the tmp file.

Regards,
Nishi


___
ilugd mailing list
[EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] FW: Need help

2003-06-23 Thread Kapoor, Nishikant X
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 
 Message from Narasimhan Ramaswamy:
 
 I am preparing for redhat linux exam. 
 I need some help from your side. Tell me some guys who 
 cleared rhce and give some information about how the exam 
 going to be and how i have prepare for the exam.  If possible 
 send me some links for linux job openings.
 
 -ramaswamy-
   member
 --
 This email is brought to you by http://www.linux-delhi.org/


___
ilugd mailing list
[EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] Latest version of ILUG-D web site software

2003-06-19 Thread Kapoor, Nishikant X
Not sure if it made it to list first time...

 -Original Message-
 From: Kapoor, Nishikant X 
 Sent: Wednesday, June 18, 2003 4:03 PM
 
 Folks,
 
 I have uploaded the latest release of ILUG-D web site 
 software (someone had to test the new functionality - Download :-)
 
 This is the latest release of the ILUG-D web site software. 
 The underlying platform is Perl, HTML::Template and some 
 other basic Perl modules. Simply download the tar ball, untar 
 it at the appropriate place and give it a try.
 
 cd HTML_ROOT
 tar -zxvf dlug_0_50.tar.gz
 
 In case of any questions, please feel free to write to me.
 
 Regards,
 Nishi


___
ilugd mailing list
[EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] FW: ILUG-D: Contact Us/Query

2003-06-17 Thread Kapoor, Nishikant X
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Message from Sheena Singh:
 
 I am new to Computers. I have small knowledge of computers. I 
 intent starting a Cyber Cafe. Would you please advise and 
 suggest the variousLinux products which can be used. These 
 should be compatible with windows softwares. What I feel ; 
 Operating System, Office Suite, Browser, Chat 
 software(compatible to MSN and Yahoo chats), 
 Anti-Virus(Norton) etc. are few which can be used in Cyber cafe.
 
 Please also advise any other software and its availbility for 
 the use of Cyber cafe. 
 Can I run a cyber cafe exclusively on Linux products ??
 Please advise   
 --
 This email is brought to you by http://www.linux-delhi.org/


___
ilugd mailing list
[EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd


RE: [ilugd] download font

2003-06-16 Thread Kapoor, Nishikant X
 -Original Message-
 From: Avneesh / Shivaas [mailto:[EMAIL PROTECTED]
 
 hi guys
 since we can't send attachment over the mailing list u can 
 download the hindi freehand font version 2.0 using the 
 following url.(its from our school website server).
 htttp://www.msmschool.com/freehand2.ttf
 
 waiting for feedback.
 
 Thanks,


You might want to consider the 'Download' section at ILUG-D. This section is aimed at 
providing exactly the same functionality that you are talking about. It has a very 
basic interface to facilitate uploads and downloads. Please check it out and let me 
know if you have any questions.

Regards,
Nishi

PS: We are yet to see the uploads that prompted the need of this functionality.


___
ilugd mailing list
[EMAIL PROTECTED]
http://frodo.hserus.net/mailman/listinfo/ilugd