Stop sent the mail to me

2011-10-07 Thread ganesh vignesh
Stop the mail On 10/7/11, Marc sono...@fannullone.us wrote: On Sep 8, 2011, at 10:13 AM, Rob Dixon wrote: my $string = 'The Kcl Group'; $string =~ s/\b([aeiouy]{3,4}|[^aeiouy]{3,4})\b/\U$1/ig; print $string, \n; I'd like to revisit this, if I could. I've modified the above regex

Stop the mail to me

2011-10-07 Thread ganesh vignesh
Stop mail On 10/6/11, Chris Stinemetz chrisstinem...@gmail.com wrote: trying to learn smart matching in an exercise. Why does this program output odd when I input an even number? Thank you, Chris #!/usr/bin/perl use warnings; use strict; use 5.010; say Checking the number $ARGV[0

Re: Stop the mail to me

2011-10-07 Thread Ramprasad Prasad
To unsubscribe, e-mail: beginners-unsubscr...@perl.org Read the footer of the mail

Re: Stop the mail to me

2011-10-07 Thread Sheppy R
Stop spamming us with stop mail requests and use the instructions included at the bottom of the email to unsubscribe. To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/ On Fri, Oct 7, 2011 at 6:24 AM, ganesh

Please Stop (Was: environment variables in perl)

2011-07-18 Thread Shawn H Corey
Could someone please remove lel...@claimspages.com from the mailing list so I won't get any more of these annoying messages? Original Message Subject: Re: Re: environment variables in perl Date: Mon, 18 Jul 2011 09:31:05 -0400 From: RightFax E-mail

Extract substring from offset to space or full stop

2010-04-18 Thread Mimi Cafe
I used MySQL substr function to extra 100 characters from the result of a query, but understandably, I don't get what I want. Now I looked at Perl's substr function and it doesn't look like it can help me achieve what I need to. Let's say I have: $s = The black cat climbed the green

Re: Extract substring from offset to space or full stop

2010-04-18 Thread Akhthar Parvez K
Hi Mimi, How can I have this return the whole word climbed rather than the c (i.e. I need to get The black cat climbed)? I need to get the remaining characters from the length till the next white space or end of a phrase. Any other way to overcome this limitation? How can I use regex here?

Re: Extract substring from offset to space or full stop

2010-04-18 Thread Shawn H Corey
Mimi Cafe wrote: $s = The black cat climbed the green tree; $substring = substr( $s, 1, 15); # this will return The black cat c. How can I have this return the whole word climbed rather than the c (i.e. I need to get The black cat climbed)? I need to get the remaining characters from the

Re: Extract substring from offset to space or full stop

2010-04-18 Thread Akhthar Parvez K
Hi Shawn, $str =~ m{ \A ( .{15} .*? ) \s }msx; I don't think this would work if the value given in the match string (15 as per above eg.) is greater than the character count of the particular string. Right? Regards, Akhthar Parvez K http://Tips.SysAdminGUIDE.COM UNIX is basically a simple

RE: Extract substring from offset to space or full stop

2010-04-18 Thread Mimi Cafe
Hi, It works fine and I like it. My regex is not that good, but I can see what is doing. I modified it a bit (to capture up till a full stop sign). Code #!/usr/bin/perl # use strict; use warnings; # my $str = The black cat is trying to climbed the green tree. This time it failed.; print string

Re: Extract substring from offset to space or full stop

2010-04-18 Thread Akhthar Parvez K
Hi, It works fine and I like it. My regex is not that good, but I can see what is doing. I modified it a bit (to capture up till a full stop sign). Kewl. Good to hear that! Regards, Akhthar Parvez K http://Tips.SysAdminGUIDE.COM UNIX is basically a simple operating system, but you have

Re: Extract substring from offset to space or full stop

2010-04-18 Thread Shawn H Corey
Akhthar Parvez K wrote: Hi Shawn, $str =~ m{ \A ( .{15} .*? ) \s }msx; I don't think this would work if the value given in the match string (15 as per above eg.) is greater than the character count of the particular string. Right? No, it will fail if $str is less than 15 characters. Try:

Re: Extract substring from offset to space or full stop

2010-04-18 Thread John W. Krahn
Mimi Cafe wrote: I used MySQL substr function to extra 100 characters from the result of a query, but understandably, I don't get what I want. Now I looked at Perl's substr function and it doesn't look like it can help me achieve what I need to. Let's say I have: $s = The black cat climbed

Extract substring from offset to space or full stop

2010-04-18 Thread Mimi Cafe
should be fine I think. Mimi -Original Message- From: John W. Krahn [mailto:jwkr...@shaw.ca] Sent: 18 April 2010 17:03 To: Perl Beginners Subject: Re: Extract substring from offset to space or full stop Mimi Cafe wrote: I used MySQL substr function to extra 100 characters from

Re: Extract substring from offset to space or full stop

2010-04-18 Thread John W. Krahn
Mimi Cafe wrote: From: John W. Krahn [mailto:jwkr...@shaw.ca] Mimi Cafe wrote: I used MySQL substr function to extra 100 characters from the result of a query, but understandably, I don't get what I want. Now I looked at Perl's substr function and it doesn't look like it can help me

Re: Extract substring from offset to space or full stop

2010-04-18 Thread Akhthar Parvez K
$str =~ m{ \A ( .{0,15} .*? ) \s }msx; Yeah, this would do. I talked about the scenario where you didn't put {0,15}, but just {15}. In that case, it wouldn't work if the value given in the match string (15 as per above eg.) is greater than the character count of the particular string

Re: PLEASE STOP SENDING MIALS

2009-07-24 Thread Randal L. Schwartz
Shawn == Shawn H Corey shawnhco...@gmail.com writes: Shawn Alok Alan wrote: Shawn There is nothing that can be done about mials but if you don't want emails, Shawn see: http://lists.cpan.org/showlist.cgi?name=beginners I don't want any Mials either. I don't know what they are, but they

PLEASE STOP SENDING MIALS

2009-07-23 Thread Alok Alan

Re: PLEASE STOP SENDING MIALS

2009-07-23 Thread Shawn H. Corey
Alok Alan wrote: There is nothing that can be done about mials but if you don't want emails, see: http://lists.cpan.org/showlist.cgi?name=beginners -- Just my 0.0002 million dollars worth, Shawn Programming is as much about organization and communication as it is about

Re: how to stop RPC::XML::Server blocking

2006-11-14 Thread Todd W
started in its own thread (preferably with the ability to specify an upper limit, after which it blocks to stop it getting hammered with thread creation). Is there a nice way to do this without writing my own RPC::XML::Server replacement? Sure. Just run your server in a mod_perl enabled

how to stop RPC::XML::Server blocking

2006-11-13 Thread Robin Sheat
an upper limit, after which it blocks to stop it getting hammered with thread creation). Is there a nice way to do this without writing my own RPC::XML::Server replacement? Cheers, Robin. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http

Stop XML::Parser

2005-09-07 Thread [EMAIL PROTECTED]
Hi, I have a simple question about XML::Parser. Is there a way to stop parsing in progress and how ? Thanks in advance, Andre -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ http://learn.perl.org/first-response

STOP THREAD ! Can't locate object method new via package

2004-04-15 Thread test testname
THANK YOU !!! THAT´s IT ! Jose is right. My editor changed the text I filled in... Sorry for nerving with such easy stuff! Best regards posty Mit schönen Grüßen von Yahoo! Mail - http://mail.yahoo.de -- To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: stop

2004-02-26 Thread Rob Dixon
Casey West wrote: For the record the archives don't lie, the thread will be there. That's precisely why rudeness must be kept in check. So we could be rude, except that it will be recorded so we mustn't? Rob -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

stop

2004-01-07 Thread David Kapp
I've requested 50 times to be taken off your mailing list, but you still send me this unwanted mail. I will now report all mail sent to me by you as SPAM Stop sending me spam. 2003 www.hushport.com

RE:[OT] stop

2004-01-07 Thread Tim Johnson
To: [EMAIL PROTECTED] Subject: stop I've requested 50 times to be taken off your mailing list, but you still send me this unwanted mail. I will now report all mail sent to me by you as SPAM Stop sending me spam. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[ADMIN] Re: stop

2004-01-07 Thread Casey West
It was Wednesday, January 07, 2004 when David Kapp took the soap box, saying: : I've requested 50 times to be taken off your mailing list, but you still : send me this unwanted mail. : I will now report all mail sent to me by you as SPAM : Stop sending me spam. You can send

RE: [OT] stop

2004-01-07 Thread Ned Cunningham
[mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 2:36 PM To: David Kapp; [EMAIL PROTECTED] Subject:RE:[OT] stop Wow. 50 times. That's some stamina. I imagine that's almost as annoying

RE: stop

2004-01-07 Thread Dan Muey
all mail sent to me by you as SPAM What are the headers and ip addresses, I doubt it's coming from the real beginners list or else I'd have gotton spam also since I've subscribed for a while now. Stop sending me spam. I never have and the list hasn't either. It's got

Re: stop

2004-01-07 Thread jeff
you could always change your email address! Just a thought. - Original Message - From: David Kapp To: [EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 14:31 Subject: stop

Re: stop

2004-01-07 Thread Dan Anderson
Uhhh...at the bottom of every list message is: -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ http://learn.perl.org/first-response withold sarcastic comment about thinking before you post / -Dan -- To unsubscribe,

Re: stop

2004-01-07 Thread u235sentinel
After being part of this list for a month, I don't recall seeing more than just this email requesting removal from the list. Oh well. An amusing message. I see them all the time in the Linux mail lists I participate in. Pity people can't follow directions :-) Uhhh...at the bottom of every

Re: stop

2004-01-07 Thread Morbus Iff
For the sake of: * giving the guy a break. * expecting some intellect. * realizing he's probably not reading your responses. Notice he didn't say whether he requested to the list, or to the proper email unsubscribe address: just that he had requested multiple times to be removed. The flip

RE: stop

2004-01-07 Thread Charles K. Clarkson
[EMAIL PROTECTED] [EMAIL PROTECTED] wrote: : : Oh well. An amusing message. I see them all the time in : the Linux mail lists I participate in. Pity people can't : follow directions :-) Be careful what you wish for. If everyone could follow directions we would be one step closer to

RE: stop

2004-01-07 Thread Dan Muey
Subject: stop I've requested 50 times to be taken off your mailing list, but you still send me this unwanted mail. I will now report all mail sent to me by you as SPAM Stop sending me spam. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: stop

2004-01-07 Thread Casey West
time to stop this thread. Everything that should have been said has been, as well as some things that shouldn't have. :-) Casey West -- Shooting yourself in the foot with Pascal The compiler won't let you shoot yourself in the foot. -- To unsubscribe, e-mail: [EMAIL PROTECTED

Re: stop

2004-01-07 Thread R. Joseph Newton
in check. I think now is a good time to stop this thread. Everything that should have been said has been, as well as some things that shouldn't have. :-) Casey West Hi Casey, I think there is one point that I have not seen presented here. Unfortunately, many *real* spammers abuse the courtesy

RE: stop/start

2003-10-09 Thread Tristram Nefzger
Regarding writing a unix daemon in perl, you might have a look at http://www.webreference.com/perl/tutorial/9/index.html -tristram -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: stop/start

2003-09-23 Thread TN
, Snort's the best beast (www.snort.org). Why else would you dedicate a machine to promiscuous mode? -- Tris Nefzger -Original Message- From: Stephen Hardisty [mailto:[EMAIL PROTECTED] Sent: Monday, September 22, 2003 5:10 PM To: Perl List Subject: Re: stop/start $SIG{ALRM

stop/start

2003-09-22 Thread rmck
Hi I'm trying to get this to work in perl. I want to start a unix process send it to a log file. Then at midnight kill it and restart it, with the date at the top. I'm starting with the following but the intial start of the proccess is not working right: #!/bin/perl $date = `date | awk

Re: stop/start

2003-09-22 Thread Stephen Hardisty
Hi, you could write a handler for the signal alarm that starts a new process and kills the current: $SIG{ALRM} = { `this-script`; exit; }; At the beginning of the script set the alarm to go off 24 hours later: alarm(84600); DISCLAIMER: haven't really thought it through and it's really

Re: stop/start

2003-09-22 Thread Stephen Hardisty
$SIG{ALRM} = { `this-script`; exit; }; Sorry, didn't think it through (before anybody notices.). Remove the thing that executes the script (the bit in backticks) and just have the process start on a cron job. Tired, apologies. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Find regex in Start/Stop segments

2003-06-14 Thread Harry Putnam
Tassilo von Parseval [EMAIL PROTECTED] writes: That's good. and that is why chomp is an excellent choice for this context. Because the OP may not know, or be sure of, that fact. The chomp function is custom-designed for cases of uncertainty,.and is perfectly safe in cases where there is no

Re: Find regex in Start/Stop segments

2003-06-13 Thread R. Joseph Newton
Tassilo von Parseval wrote: chomp; I don't think that the entries in @ARGV contain newlines at the end. Actually I know they don't. :-) That's good. and that is why chomp is an excellent choice for this context. Because the OP may not know, or be sure of, that fact. The chomp function

Re: Find regex in Start/Stop segments

2003-06-13 Thread Tassilo von Parseval
On Fri, Jun 13, 2003 at 03:09:20PM -0700 R. Joseph Newton wrote: Tassilo von Parseval wrote: chomp; I don't think that the entries in @ARGV contain newlines at the end. Actually I know they don't. :-) That's good. and that is why chomp is an excellent choice for this context.

Find regex in Start/Stop segments

2003-06-11 Thread Harry Putnam
I use a homeboy data base technique to keep info about the scripts I write and other typse of stuff too. Here I'm just dealing with scripts. Its a simple format to enter key information about what a script does. Looks like: # Keywords: SOME WORDS # body # body # DATE # I've written various

Re: Find regex in Start/Stop segments

2003-06-11 Thread Tassilo von Parseval
On Tue, Jun 10, 2003 at 11:49:25PM -0700 Harry Putnam wrote: I use a homeboy data base technique to keep info about the scripts I write and other typse of stuff too. Here I'm just dealing with scripts. Its a simple format to enter key information about what a script does. Looks like:

Re: Find regex in Start/Stop segments

2003-06-11 Thread Harry Putnam
Tassilo von Parseval [EMAIL PROTECTED] writes: You don't have to keep track of the line numbers yourself. Perl offers the special variable $. for that. An awkism I guess, hold over from awk use. Thanks for the tips. I'd probably write it like that: Quite a lot shorter... and to the point.

Re: Find regex in Start/Stop segments

2003-06-11 Thread John W. Krahn
Tassilo Von Parseval wrote: On Tue, Jun 10, 2003 at 11:49:25PM -0700 Harry Putnam wrote: ## Set a marker to know when we are in a new file $fname_for_line_cnt = ''; for (@files) { chomp; I don't think that the entries in @ARGV contain newlines at the end. Actually I know they

RE: Best way to stop array interpolation.

2003-03-24 Thread Bob Showalter
Bakken, Luke wrote: Here's a quickie: I need to create a hash index out of a string that looks like this: loans:a_foo[0] If I build the index like this: $rec-{loans:a_$fld[$i]} = $tmp{$fld} || ''; perl thinks that $fld[$i] is an array element, which it isn't. Here are two

Best way to stop array interpolation.

2003-03-24 Thread Bakken, Luke
Here's a quickie: I need to create a hash index out of a string that looks like this: loans:a_foo[0] If I build the index like this: $rec-{loans:a_$fld[$i]} = $tmp{$fld} || ''; perl thinks that $fld[$i] is an array element, which it isn't. Here are two solutions I found: $rec-{loans:a_$fld

RE: Best way to stop array interpolation.

2003-03-24 Thread Bakken, Luke
Here are two solutions I found: $rec-{loans:a_$fld . [$i]} = $tmp{$fld} || ''; $rec-{loans:a_$fld\[$i]} = $tmp{$fld} || ''; Are there any other ways? Just curious. loans:a_${fld}[$i] also works. I like your second version above best. $ perl -MO=Deparse,-q -e 'a_${fld}[$i]'

RE: Best way to stop array interpolation.

2003-03-24 Thread Bob Showalter
Bakken, Luke wrote: Here are two solutions I found: $rec-{loans:a_$fld . [$i]} = $tmp{$fld} || ''; $rec-{loans:a_$fld\[$i]} = $tmp{$fld} || ''; Are there any other ways? Just curious. loans:a_${fld}[$i] also works. I like your second version above best. $ perl

please stop sending mails

2003-02-03 Thread Huh, Jung

Stop sending me email

2002-12-26 Thread MW2547
Stop sending me email

Stop sending me email

2002-12-26 Thread MW2547
Stop sending me email

Re: Stop sending me email

2002-12-26 Thread MW2547
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Window Services - stop/start (Newbie)...

2002-09-12 Thread Yuen, Alex
Beginners' Subject: RE: Window Services - stop/start (Newbie)... Check out Win32::Service or Win32::Lanman. Lanman is a whole lot to chew, but it can do just about anything involving remote administration of NT/2000/XP machines. -Original Message- From: Yuen, Alex [mailto:[EMAIL

RE: Window Services - stop/start (Newbie)...

2002-09-12 Thread Timothy Johnson
repository: http://jenda.krynicky.cz/perl -Original Message- From: Yuen, Alex [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 11:50 AM To: 'Perl Beginners' Subject: RE: Window Services - stop/start (Newbie)... Hi, I just tried to install both modules (Win32::Service Win32

RE: Window Services - stop/start (Newbie)...

2002-09-12 Thread Yuen, Alex
: Thursday, September 12, 2002 4:13 PM To: 'Yuen, Alex'; 'Perl Beginners' Subject: RE: Window Services - stop/start (Newbie)... Why don't you install it via PPM? If it's not in the Activestate repository, you can install it using Dave Roth's PPM repository. PPM set repository dave

RE: Window Services - stop/start (Newbie)...

2002-09-12 Thread Timothy Johnson
It looks like you might want to do a full uninstall/reinstall of ActivePerl and see if that clears it up. -Original Message- From: Yuen, Alex [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 1:33 PM To: 'Perl Beginners'; 'Timothy Johnson' Subject: RE: Window Services - stop

Window Services - stop/start (Newbie)...

2002-09-10 Thread Yuen, Alex
Hi, Does anyone know if Perl can stop or start a Service in Windows NT or 2000? Trying to write a script to stop the Service of an application, archive the log files and then restart the Service. Plus, record this transaction to a seperate log file. Another plus, send out an e-mail notification

RE: Window Services - stop/start (Newbie)...

2002-09-10 Thread Timothy Johnson
Beginners' Subject: Window Services - stop/start (Newbie)... Hi, Does anyone know if Perl can stop or start a Service in Windows NT or 2000? Trying to write a script to stop the Service of an application, archive the log files and then restart the Service. Plus, record this transaction to a seperate

Re: Window Services - stop/start (Newbie)...

2002-09-10 Thread RTO RTO
are and you should have ADMINISTRATOR level privileges on those machines so as to control their services, via remote-registry. Cheers, Rex --- Yuen, Alex [EMAIL PROTECTED] wrote: Hi, Does anyone know if Perl can stop or start a Service in Windows NT or 2000? Trying to write a script

I am confused with looping to stop repeat accurances of a entryies ina log for a report

2002-09-03 Thread FLAHERTY, JIM-CONT
I am trying to parse a squid log file to let It management know where people are browsing too. my plan block diagram goes a follows 1. open log 2. seperate by IP address , list only one at a time no repeats of the same IP address 3. list only one instance of a visited site , per IP address

RE: remove the stop words

2002-06-04 Thread David Gray
Is there a good method to do this? I need to remove the stop words from the comment field of every record. There are about 20,000 records. The comments look like this: Yersinia pestis strain Nepal (aka CDC 516 or 369 isolated from human) 16S-23S in tergenic region amplified with 16UNIX

Re: remove the stop words

2002-06-04 Thread Janek Schleicher
Ying Liu wrote at Mon, 03 Jun 2002 17:11:22 +0200: Is there a good method to do this? I need to remove the stop words from the comment field of every record. There are about 20,000 records. The comments look like this: Yersinia pestis strain Nepal (aka CDC 516 or 369 isolated from human

remove the stop words

2002-06-03 Thread Ying Liu
Hi, Is there a good method to do this? I need to remove the stop words from the comment field of every record. There are about 20,000 records. The comments look like this: Yersinia pestis strain Nepal (aka CDC 516 or 369 isolated from human) 16S-23S in tergenic region amplified with 16UNIX

Re: stop the Madness

2002-05-21 Thread Felix Geerinckx
on Mon, 20 May 2002 12:25:26 GMT, [EMAIL PROTECTED] (Arran4) wrote: heh thats has already been added to my ever growing signuture hehehe (should shorten it sometimes) I don't think this is funny. Your 'signature' is 24 lines long now, and contains over 1000 bytes. According to

Re: stop the Madness

2002-05-20 Thread Arran4
: Friday, May 17, 2002 3:44 AM Subject: RE: stop the Madness And there's always those days where you start sending out emails with semicolons at the end of the sentences. Yesterday I even caught myself writing code on a piece of napkin on my lunch. I'm afraid the day will finally come where I

Re: stop the Madness

2002-05-17 Thread Alan Drew
Sorry - sent this to the wrong addy by mistake.. :O) A. On Thursday, May 16, 2002, at 05:44 PM, Timothy Johnson wrote: ... Yesterday I even caught myself writing code on a piece of napkin on my lunch I have been doing that for years - just not with perl. I always find the best work

stop the Madness

2002-05-16 Thread drieux
the sole purpose for me using perl is to: 1) manipulate ascii files with data in . 2) a front end (I.e Tk) to some analysis software we have - ... 3) a bit of fun I feel morally compelled to point out to any of the real Newbies who are on the beginner's mailing list that this READS like

RE: stop the Madness

2002-05-16 Thread Nikola Janceski
See answers of a mid-level (3 years) Perl user below. -Original Message- From: drieux [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 12:11 PM To: [EMAIL PROTECTED] Subject: stop the Madness the sole purpose for me using perl is to: 1) manipulate ascii files

Re: stop the Madness

2002-05-16 Thread LoneWolf
HILARIOUS!! :) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: stop the Madness

2002-05-16 Thread A Taylor
SO TRUE ! GLAD I AM NOT ALONE !!! HA HA I feel morally compelled to point out to any of the real Newbies who are on the beginner's mailing list that this READS like the usual form of 'deep denial' that needs to come out in the light of day. Oh sure - today its a little text file

RE: stop the Madness

2002-05-16 Thread Timothy Johnson
sentence. I mean sure, noone will know what the hell I'm talking about, but look how efficient my speech has become! HELP ME!!! -Original Message- From: A Taylor [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 9:36 AM To: [EMAIL PROTECTED] Subject: Re: stop the Madness SO TRUE

RE: stop the Madness

2002-05-16 Thread Nikola Janceski
print Resistance is futile\n; -Original Message- From: Timothy Johnson [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 1:45 PM To: [EMAIL PROTECTED] Subject: RE: stop the Madness And there's always those days where you start sending out emails with semicolons

RE: stop the Madness

2002-05-16 Thread Jonathan E. Paton
--- Timothy Johnson [EMAIL PROTECTED] wrote: And there's always those days where you start sending out emails with semicolons at the end of the sentences. Yesterday I even caught myself writing code on a piece of napkin on my lunch. I'm afraid the day will finally come where I start

Stop Perf monitor

2002-01-30 Thread Amy sing
does anyone have an idea/script to stop and application like performace monitor.. rename the log file and start the application.. Perfmon does not run as a service..it runs as a process __ Do You Yahoo!? Great stuff seeking new owners in Yahoo

STOP POSTING CUSS WORDS!

2001-10-15 Thread Lance Murray
Hello: I believe in free speech, etc. However, broadcasting posts with expletives to crowds of people you don't know is bad net-etiquette. I would appreciate it if posts would focus on the issue, and we all reserve major/minor cussing for private communications. I for one will boycott and

Re: Please Stop (was: Re: eval problem)

2001-10-04 Thread RoadRaat
In a message dated Tue, 2 Oct 2001 6:03:06 PM Eastern Daylight Time, Curtis Poe [EMAIL PROTECTED] writes: Mea Culpa. While I do have some reservations about how prototypes were used in a particular example, I'll try to be more sensitive about the beginners aspect of things. Curtis,

Re: Please Stop (was: Re: eval problem)

2001-10-04 Thread Michael D. Risser
--SNIP-- Personally, I don't want to put a lid on any discussion. I think the characteristic which distinguishes this list as a beginners' list is not the level of the *response*, but rather the willingness of the respondants to address any *question*. Thanks, Nelson And to do so in a

Please Stop (was: Re: eval problem)

2001-10-02 Thread Zander Collier
With all due respect, if you're going to discuss the minutae, nuances, and other advanced Perl stuff, could you please do so on another list? This is [EMAIL PROTECTED] Publicly arguing this sort of thing on this list, at least to me, makes it more intimidating to post what will be my silly

Re: Please Stop (was: Re: eval problem)

2001-10-02 Thread Brett W. McCoy
On Wed, 3 Oct 2001, Zander Collier wrote: With all due respect, if you're going to discuss the minutae, nuances, and other advanced Perl stuff, could you please do so on another list? I'm inclined to agree... however, I think it is helpful for beginners also to be amongst more advanced

Re: Please Stop (was: Re: eval problem)

2001-10-02 Thread Curtis Poe
--- Zander Collier [EMAIL PROTECTED] wrote: With all due respect, if you're going to discuss the minutae, nuances, and other advanced Perl stuff, could you please do so on another list? This is [EMAIL PROTECTED] Mea Culpa. While I do have some reservations about how prototypes were used

Re: Please Stop (was: Re: eval problem)

2001-10-02 Thread Michael Kelly
While this is true, it's seldom clear to the beginner when this list has diverted to esoterica. It's *critical* for a beginner to know what they *don't* need to pay attention to at the beginning, and we do them a disservice by commingling easy and not-so-easy stuff. So I'd back Zander,

Re: Please Stop (was: Re: eval problem)

2001-10-02 Thread Mel Matsuoka
At 03:23 PM 10/02/2001 -0700, Michael Kelly wrote: Well, being somewhat of a beginner myself, I think it is very helpful to look at stuff that's above your head. I certainly don't mind the fact that 80% of the stuff on this list is above me, and I think that, when I do start dealing with some of

stop

2001-06-22 Thread Jonathan Macpherson
unsubscribe

Re: stop

2001-06-22 Thread Rene Quarshie
unsubscribe -- THE GREATEST ACHIEVEMENT IN THE HUMAN RACE IS SELF-RESPECT.

stop

2001-06-22 Thread vijaylkumar veeragandham
unsubscribe __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/

RE: stop

2001-06-22 Thread John Edwards
RTFM http://learn.perl.org -Original Message- From: Jonathan Macpherson [mailto:[EMAIL PROTECTED]] Sent: 22 May 1997 02:33 To: [EMAIL PROTECTED] Subject: stop unsubscribe --Confidentiality--. This E-mail is confidential. It should

stop!

2001-06-21 Thread maddest_hatter
unsubscribe GET INTERNET ACCESS FROM JUNO! Juno offers FREE or PREMIUM Internet access for less! Join Juno today! For your FREE software, visit: http://dl.www.juno.com/get/tagj.

Re: Please tell your people to stop sending E-mail to me.

2001-06-20 Thread Humberto Varela
he he... i just finished receiving over 700 emails from the list during the weekend. ironic how the pleas to stop actually create more mail for those poor subscribers... i think the unsubscribe script is actually on the homepage at: http://learn.perl.org/ PS, you can try the digest version

How to stop mails from beginners@perl.org

2001-06-20 Thread Nigel Wetters
Some people have obviously lost the first email they received from this list, so here's a recap. To unsubscribe to the list, you need to send an email to a special email address that is formed partly from YOUR OWN email address. For example, if your email address is [EMAIL PROTECTED], you

Re: How to stop mails from beginners@perl.org

2001-06-20 Thread Randal L. Schwartz
Nigel == Nigel Wetters [EMAIL PROTECTED] writes: Nigel Some people have obviously lost the first email they received Nigel from this list, so here's a recap. Nigel To unsubscribe to the list, you need to send an email to a Nigel special email address that is formed partly from YOUR OWN email

Please tell your people to stop sending E-mail to me.

2001-06-19 Thread richard kirby
I have unsubscribed to all your supposed E-mail subscriptions. You you PLEASE pass the word to your subscribers to stop sending e-mail to me concerning Perl. Your subscribers are flooding me e-mail 90+ e-mail a day. I original subscribed to your server to get some insight into using Perl. I am

Fwd: Please tell your people to stop sending E-mail to me.

2001-06-19 Thread Rochel Kraus
I agree!! I've been getting 160+ emails a day and I can't get off this list and it's driving me crazy. If this doesn't stop soon, I am going to have to open up a new e-mail account for myself!!! Please unsubscribe me richard kirby [EMAIL PROTECTED] wrote: Date: Tue, 19 Jun 2001 14:11

RE: Please tell your people to stop sending E-mail to me.

2001-06-19 Thread Myrian Hernandez
Please, unsubscribe me too. I can not stand the email flooding anymore. -Mensaje original- De: Rochel Kraus [mailto:[EMAIL PROTECTED]] Enviado el: Martes, 19 de Junio de 2001 16:56 Para: [EMAIL PROTECTED] Asunto: Fwd: Please tell your people to stop sending E-mail to me. I agree

this email is comming to me by mistake, Please stop sending.

2001-06-07 Thread Page Works
To subscribers at Perl.org I have received at least 150 emails today, these letters that you all are sending to Perl.org are landing in my email box, and not to perl.org... Sincerly, Over it! -Original Message- From: Teresa Raymond [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07,