[24411] in Perl-Users-Digest

home help back first fref pref prev next nref lref last post

Perl-Users Digest, Issue: 6599 Volume: 10

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Sun May 23 18:05:54 2004

Date: Sun, 23 May 2004 15:05:06 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)

Perl-Users Digest           Sun, 23 May 2004     Volume: 10 Number: 6599

Today's topics:
    Re: 2-1/2 regexp questions (Anno Siegel)
        Determine symlink name in required module <vurt@nospam.example.com>
    Re: get the result of calling another script <jurgenex@hotmail.com>
    Re: get the result of calling another script <tadmc@augustmail.com>
    Re: How to pass input from perl to shell programming? (Anno Siegel)
    Re: How to substitute a variable containing a directory (Jay Tilton)
    Re: How to substitute a variable containing a directory (MegaC)
        Inserting variable within <<EOL <redalert@wakproductions.com>
    Re: Inserting variable within <<EOL <noreply@gunnar.cc>
    Re: Inserting variable within <<EOL <hynek+usenet@hys.in-berlin.de>
        Number padding... (trailing zeros'.) <thepotplants@yahoo.com>
    Re: Number padding... (trailing zeros'.) (Jay Tilton)
    Re: Number padding... (trailing zeros'.) <dave@dave.org.uk>
    Re: Number padding... (trailing zeros'.) <jurgenex@hotmail.com>
    Re: output data to audio <usenet@morrow.me.uk>
    Re: Password scheme/Persistent session... (Anno Siegel)
    Re: Pattern matching against a "use constant" character (Anno Siegel)
    Re: perl script to move email (Jim)
    Re: perl script to move email <mikee@mikee.ath.cx>
        rename files problem (hpy_awad@yahoo.com)
    Re: rmdir Question <ebohlman@earthlink.net>
        What is the difference ? (Che)
    Re: What is the difference ? <skweek@no.spam>
    Re: What is the difference ? <sbryce@scottbryce.com>
    Re: What is the difference ? <noreply@gunnar.cc>
    Re: What's the cancellation policy for YAPC 2004? (Randal L. Schwartz)
        Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)

----------------------------------------------------------------------

Date: 23 May 2004 16:15:36 GMT
From: anno4000@lublin.zrz.tu-berlin.de (Anno Siegel)
Subject: Re: 2-1/2 regexp questions
Message-Id: <c8qin8$gh1$1@mamenchi.zrz.TU-Berlin.DE>

J Krugman  <jkrugman345@yahbitoo.com> wrote in comp.lang.perl.misc:
> 
> 
> 
> 1. Supposed I wanted apply s/// at a particular (offset, length)
> substring of a string (for example, applying s/(a[^a]+)/*\U$1*/ to the
> (offset = 7, length = 3) substring in 'abracadabra', to get
> 'abracad*ABR*a').

I'm late to the thread, but here's a little supplement:

To do a replacement at a certain offset, consider pos() and /\G/ as a
possible alternative to substr().  In particular,

    $_ = 'abracadabra';
    pos = 7;
    s/\G(...)/*\U$1*/;

does the replacement as required.  You don't get to control the
length directly, it is implicit in the replacement.

The standard solution is, of course, substr(), but occasionally the
alternative comes in handy, especially when the offset can be
determined with a scalar /.../g which puts it directly in pos().

Anno


------------------------------

Date: Sun, 23 May 2004 18:44:13 +0100
From: vurt <vurt@nospam.example.com>
Subject: Determine symlink name in required module
Message-Id: <6q5sc.6417$wI4.771134@wards.force9.net>

Hi,

I'm possibly not googling effectively, but I couldn't find an answer to
this.

Say I had a scriptanalogous something like:

require "/foo/bar/S01wibble.pm"

But the file is actually a symlink, ie:

/foo/bar/S01wibble.pm -> ../wibble.pm

How can I, in the required module, find the name of the symlink.  I want to
be able to have behaviour analogous to rc scripts, and be able to have
different behaviour determined by the name I was called as.  I hasten to
add I'm not actually trying to produce real rc scripts here...

Any tips would be welcome...


------------------------------

Date: Sun, 23 May 2004 07:13:24 GMT
From: "Jürgen Exner" <jurgenex@hotmail.com>
Subject: Re: get the result of calling another script
Message-Id: <oaYrc.9962$ZQ.7273@nwrddc03.gnilink.net>

B.W. wrote:
> I want to call another script B in script A and get the result if the
> execution of script B is successful, can someone show me how to do
> that?

See "perldoc -f system":
       [...]
       The return value is the exit status of the program as returned
       by the "wait" call. To get the actual exit value divide by 256.

jue




------------------------------

Date: Sun, 23 May 2004 00:10:56 -0500
From: Tad McClellan <tadmc@augustmail.com>
Subject: Re: get the result of calling another script
Message-Id: <slrncb0cj0.83b.tadmc@magna.augustmail.com>

B.W. <mysympstico001@sympatico.ca> wrote:

> I want to call another script B in script A and get the result if the
> execution of script B is successful, can someone show me how to do that?


   ! system 'script_B' or die "script_B failed";


-- 
    Tad McClellan                          SGML consulting
    tadmc@augustmail.com                   Perl programming
    Fort Worth, Texas


------------------------------

Date: 23 May 2004 15:23:33 GMT
From: anno4000@lublin.zrz.tu-berlin.de (Anno Siegel)
Subject: Re: How to pass input from perl to shell programming?
Message-Id: <c8qfll$ebg$1@mamenchi.zrz.TU-Berlin.DE>

J Krugman  <jkrugman345@yahbitoo.com> wrote in comp.lang.perl.misc:


> jill
> ...so password is "Kennwort".  Who knew?

 ...also "Passwort" (guessable) and "Zugangsberechtigung" (best spelled
in gothic letters).

Anno


------------------------------

Date: Sun, 23 May 2004 07:30:37 GMT
From: tiltonj@erols.com (Jay Tilton)
Subject: Re: How to substitute a variable containing a directory path into Apache httpd.conf file????
Message-Id: <40b05242.124423882@news.erols.com>

dmegyesi@truecontext.com (MegaC) wrote:

: Help!!  How do I take the user input of 'C:/Program
: Files/Apache/Apache2' and use the command of
: %PERL_EXE% -wpe s#APACHE_HOME#"%APACHE_HOME%"# < httpd.conf >
: httpd.conf.mod
: to substitute every occurance of APACHE_HOME with C:/Program
: Files/Apache/Apache2 as intended?

The shell's interpolation of the environment variable is goofing things up
for perl.  Let perl do the interpolation.

    perl -wpe s/APACHE_HOME/"$ENV{APACHE_HOME}"/g < httpd.conf > httpd.conf.mod



------------------------------

Date: 23 May 2004 10:42:04 -0700
From: dmegyesi@truecontext.com (MegaC)
Subject: Re: How to substitute a variable containing a directory path into Apache httpd.conf file????
Message-Id: <e45fcc01.0405230942.620163ea@posting.google.com>

tiltonj@erols.com (Jay Tilton) wrote in message news:<40b05242.124423882@news.erols.com>...
> dmegyesi@truecontext.com (MegaC) wrote:
> 
> : Help!!  How do I take the user input of 'C:/Program
> : Files/Apache/Apache2' and use the command of
> : %PERL_EXE% -wpe s#APACHE_HOME#"%APACHE_HOME%"# < httpd.conf >
> : httpd.conf.mod
> : to substitute every occurance of APACHE_HOME with C:/Program
> : Files/Apache/Apache2 as intended?
> 
> The shell's interpolation of the environment variable is goofing things up
> for perl.  Let perl do the interpolation.
> 
>     perl -wpe s/APACHE_HOME/"$ENV{APACHE_HOME}"/g < httpd.conf > httpd.conf.mod

Thanks Jay, but I am still getting the following error:
The system cannot find the file specified.

HELP?!!

Derek


------------------------------

Date: Sun, 23 May 2004 19:43:17 GMT
From: "Winston Kotzan" <redalert@wakproductions.com>
Subject: Inserting variable within <<EOL
Message-Id: <p97sc.11$uc.4@newssvr19.news.prodigy.com>

Hello,

I am having a perplexing problem inserting a variable in the middle of text
without a space.  For example:


$myvar = 'some';
print <<STOP
I want $myvar thing between text.
STOP

This would output:
I want some thing between text.

The difficulty arises when I want to insert $myvar without a space between
the words; I want the output to look like this:
I want something between text.

What can I do to join $myvar and the following 'thing' as one word in the
above string construct?

Help is greatly appreciated.  Thanks.


--
Winston Kotzan
http://www.wakproductions.com/





------------------------------

Date: Sun, 23 May 2004 22:09:44 +0200
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: Inserting variable within <<EOL
Message-Id: <2hcertFalt3gU1@uni-berlin.de>

Winston Kotzan wrote:
> I am having a perplexing problem inserting a variable in the middle
> of text without a space.  For example:
> 
> $myvar = 'some';
> print <<STOP
> I want $myvar thing between text.
> STOP
> 
> This would output:
> I want some thing between text.
> 
> The difficulty arises when I want to insert $myvar without a space
> between the words; I want the output to look like this:
> I want something between text.
> 
> What can I do to join $myvar and the following 'thing' as one word
> in the above string construct?

     ${myvar}thing

-- 
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl



------------------------------

Date: Sun, 23 May 2004 22:07:30 +0200
From: Hynek Schlawack <hynek+usenet@hys.in-berlin.de>
Subject: Re: Inserting variable within <<EOL
Message-Id: <87zn7yucu5.fsf@squirrel.dyndns.org>

* "Winston Kotzan" <redalert@wakproductions.com> wrote:

> I am having a perplexing problem inserting a variable in the middle of text
> without a space.  For example:
> $myvar = 'some';
> print <<STOP
> I want $myvar thing between text.
> STOP
> This would output:
> I want some thing between text.
> The difficulty arises when I want to insert $myvar without a space between
> the words; I want the output to look like this:
> I want something between text.

$myvar = 'some';
print <<STOP
I want ${myvar}thing between text.
STOP

> Help is greatly appreciated.  Thanks.

HTH


------------------------------

Date: Sun, 23 May 2004 19:24:11 +1200
From: "ThePotPlants" <thepotplants@yahoo.com>
Subject: Number padding... (trailing zeros'.)
Message-Id: <adYrc.8845$XI4.319166@news.xtra.co.nz>

Hi

Is there a nice way of formatting a decimal to have a fixed number of
trailing zero's?
I am decimalising some data to feed into another application. The input
requires 6 decimal places.
Using sprintf I can apply various formats, like leading zero's but can't
figure out how to add trailers...

For most of my data it's not a problem, but I have a couple of oddities that
divide neatly leading me with 4 decimal places.
One example I have. After conversion I get: 0.1029  but I want 0.102900.

At the moment I am multiplying my variable by 100000 and doing a substr on
the leading 6 characters, but there must be a nicer way than this...

Any help would be much appreciated.

Pete




------------------------------

Date: Sun, 23 May 2004 07:33:15 GMT
From: tiltonj@erols.com (Jay Tilton)
Subject: Re: Number padding... (trailing zeros'.)
Message-Id: <40b0539a.124767956@news.erols.com>

"ThePotPlants" <thepotplants@yahoo.com> wrote:

: Is there a nice way of formatting a decimal to have a fixed number of
: trailing zero's?

Yes.

: One example I have. After conversion I get: 0.1029  but I want 0.102900.

    printf '%.6f', 0.1029



------------------------------

Date: Sun, 23 May 2004 08:32:03 +0100
From: Dave Cross <dave@dave.org.uk>
Subject: Re: Number padding... (trailing zeros'.)
Message-Id: <pan.2004.05.23.07.32.03.598268@dave.org.uk>

On Sun, 23 May 2004 19:24:11 +1200, ThePotPlants wrote:

> Hi
> 
> Is there a nice way of formatting a decimal to have a fixed number of
> trailing zero's?
> I am decimalising some data to feed into another application. The input
> requires 6 decimal places.
> Using sprintf I can apply various formats, like leading zero's but can't
> figure out how to add trailers...

$ perl -le 'printf "%.6f", 0.1029'
0.102900

Dave...



------------------------------

Date: Sun, 23 May 2004 07:37:57 GMT
From: "Jürgen Exner" <jurgenex@hotmail.com>
Subject: Re: Number padding... (trailing zeros'.)
Message-Id: <pxYrc.10144$ZQ.5908@nwrddc03.gnilink.net>

ThePotPlants wrote:
> Is there a nice way of formatting a decimal to have a fixed number of
> trailing zero's?
> I am decimalising some data to feed into another application. The
> input requires 6 decimal places.
> Using sprintf I can apply various formats, like leading zero's but
> can't figure out how to add trailers...

Hmmm, strange.
Doesn't the second example on the sprintf perldoc page work for?

jue




------------------------------

Date: Sun, 23 May 2004 10:27:30 +0000 (UTC)
From: Ben Morrow <usenet@morrow.me.uk>
Subject: Re: output data to audio
Message-Id: <c8puai$b$1@wisteria.csv.warwick.ac.uk>


Quoth nenamiele@libero.it (Alx):
> if you had to generate sounds from data with the timber of a given

(just curious: did you mean 'timbre' or do Americans spell it that way?)

> instrument - what would you do? I'd really like my cellular automata
> to play the sax à la Lester Young !

A simple approach is to make a short recording of a single note on the
instrument concerned and loop it to the appropriate length. The
beginning and end of the note should be cut off, and stuck back on after
the looping, so that it sounds (relatively) smooth. The pitch can be
varied with the $au * $scalar and $au / $scalar operators; though the
calculation of the factors required may get a little involved.

I know there are many more sophisticated techniques, and there may be
ways of achieving a better result with less work, but at this point I'm
really getting out of my depth...

Ben

-- 
                Outside of a dog, a book is a man's best friend.
                Inside of a dog, it's too dark to read.
ben@morrow.me.uk                                                  Groucho Marx


------------------------------

Date: 23 May 2004 10:44:30 GMT
From: anno4000@lublin.zrz.tu-berlin.de (Anno Siegel)
Subject: Re: Password scheme/Persistent session...
Message-Id: <c8pvae$6f8$1@mamenchi.zrz.TU-Berlin.DE>

krakle <krakle@visto.com> wrote in comp.lang.perl.misc:
> anno4000@lublin.zrz.tu-berlin.de (Anno Siegel) wrote in message
> news:<c8n2vs$g10$1@mamenchi.zrz.TU-Berlin.DE>...
> > Well, Krakle, it looks like you and clpm just don't go together.
> > Remember your last stint?  I do, and it was a shouting match quite
> > indistinguishable from this one.
> 
> I don't remember such a thing...

I do, and so does Google.  Your aggressive arrogance is quite memorable.

> > So this place is full of idiots who don't know what Perl is and
> > what it isn't.  Draw your conclusions and go away.  AND STAY AWAY!
> 
> I'm here to stay. Have been for the last 4 years. So why should I stay
> away? One thing this newsgroup has to learn is you can scream "This
> post doesn't belong in this group" to EVERY question. You can also
> redirect them to another newsgroup where you will get the same
> response. That's usenet for you. 1 person helps you and 25 write books
> on how they won't waste their keystrokes on helping you...

Fine.  If you want to be known as a self-confessed parasite and pick
useful scraps out of piles of shit thrown your way, be my guest.
I prefer a little respect myself.

> I just find it humorous that if my single post was indeed offtopic
> then what do you call the 30 something replies (such as your post)...
> On topic? :)

Identifying and eliminating ticks is always on topic.

Anno


------------------------------

Date: 23 May 2004 16:51:21 GMT
From: anno4000@lublin.zrz.tu-berlin.de (Anno Siegel)
Subject: Re: Pattern matching against a "use constant" character
Message-Id: <c8qkq9$hh6$1@mamenchi.zrz.TU-Berlin.DE>

Uri Guttman  <uri@stemsystems.com> wrote in comp.lang.perl.misc:
> >>>>> "DW" == Dan Wilga <dwilga-MUNGE@mtholyoke.edu> writes:
> 
>   DW> Here's a related question. Assume the following snippet:
>   DW>   use constant MAGIC => 'FOO';
> 
>   DW> and I want to do:
> 
>   DW>   /FOObar/;
> 
>   DW> using this constant, instead of the literal 'FOO' in the pattern. Can 
>   DW> this be done?
> 
> a few ways but none are particularly great. perl6 has $() as the
> scalar() equivilent and it can be interpolated with any expression
> including constants inside (though the whole constant pragma will
> probably go as perl6 supports a readonly trait).
> 
> so in perl5 you can use a temp variable:
> 
> 	my $foo = FOO ;
> 	/${foo}bar/ ;
> 
> or
> 	/${\FOO}bar/ ;
> 
> or there is an interpolate.pm module that supports $() but i don't know
> it well.

You could do

    use constant MAGIC => \ 'FOO';

    /${+MAGIC}bar/;

 ...and come close, if it weren't for the pesky "+".  Of course, then
you'd have to say ${+MAGIC} each time you need the bare string, so if
you need the bare string often, that's out too.

It is the big drawback in Perl's constants that they don't interpolate.
That goes for anything double-quotish, not only regexen, and I think
that's why their use has never become a matter of course.

Anno


------------------------------

Date: 23 May 2004 11:29:45 -0700
From: jwarter@coldedge.com (Jim)
Subject: Re: perl script to move email
Message-Id: <a712d8b1.0405231029.6f76515e@posting.google.com>

Ben Morrow <usenet@morrow.me.uk> wrote in message news:<c8ljh8$ffd$1@wisteria.csv.warwick.ac.uk>...
> Quoth jwarter@coldedge.com (Jim):
> > I have written a perl script to read emails in my Outlook inbox and
> > then parse the emails based on part of the Subject line.  What I need
> > to add is moving the emails to one of my Personal Folders after I am
> > finished with it, so that multiple days worth of data are not scanned.
> >  This is so that when/if I go on vacation I don't have to worry about
> > putting the program on somebody elses PC.  Anybody have any thoughts
> > here?
> 
> How are you accessing the inbox? Win32::OLE? Reading the file directly?
> I would have thought you could move mail between folders in the same way.
> 
> Ben

I am using Win32::OLE.  And thanks to another reader I was able to
learn the command to use and the way of defining a folder.  Command is
$item->Move(folder) where item is the email message.  Also since I am
using MAPI the folder is defined like this "::Personal
Folders::folder"

Jim 

Jim


------------------------------

Date: Sun, 23 May 2004 19:02:42 -0000
From: Mike <mikee@mikee.ath.cx>
Subject: Re: perl script to move email
Message-Id: <10b1tai7mkkm806@corp.supernews.com>

In article <a712d8b1.0405231029.6f76515e@posting.google.com>, Jim wrote:
> Ben Morrow <usenet@morrow.me.uk> wrote in message news:<c8ljh8$ffd$1@wisteria.csv.warwick.ac.uk>...
>> Quoth jwarter@coldedge.com (Jim):
>> > I have written a perl script to read emails in my Outlook inbox and
>> > then parse the emails based on part of the Subject line.  What I need
>> > to add is moving the emails to one of my Personal Folders after I am
>> > finished with it, so that multiple days worth of data are not scanned.
>> >  This is so that when/if I go on vacation I don't have to worry about
>> > putting the program on somebody elses PC.  Anybody have any thoughts
>> > here?
>> 
>> How are you accessing the inbox? Win32::OLE? Reading the file directly?
>> I would have thought you could move mail between folders in the same way.
>> 
>> Ben
> 
> I am using Win32::OLE.  And thanks to another reader I was able to
> learn the command to use and the way of defining a folder.  Command is
> $item->Move(folder) where item is the email message.  Also since I am
> using MAPI the folder is defined like this "::Personal
> Folders::folder"

Would this work for Outlook that attaches to Exchange? I have an
archival pst at work and I'd like to move all the messages in the
archive to my home server (which is imap).

Mike


------------------------------

Date: 23 May 2004 12:10:15 -0700
From: ehab_aziz2001@yahoo.com (hpy_awad@yahoo.com)
Subject: rename files problem
Message-Id: <7ecaee57.0405231110.5f91a011@posting.google.com>

I have some files I want to rename them upon parts of their names . 
For example : files :
part03_iti_r01_ch03_ver03_conditional_statements_one_if_TV_Rental_bills.c
part03_iti_r01_ch03_ver04_conditional_statements_one_if_else_TV_Rental_bills.c
part03_iti_r01_ch03_ver05_conditional_statements_multi_if_else_TV_Rental_bills.c
part03_iti_r01_ch03_ver06_conditional_statements_switch_TV_Rental_bills.c


I want to issue unix2dos command for each file :
as:


unix2dos part03_iti_r01_ch03_ver03_conditional_statements_one_if_TV_Rental_bills.c
               ex0303.c
I will convert 
part03_iti_r01_ch03_ver03_conditional_statements_one_if_TV_Rental_bills.c
I chose        ex^^ &  ^^.c

Which utility I can choose for accomplishing thar task ?
sed,Perl.... How can I use it in a loop?


------------------------------

Date: 23 May 2004 19:52:49 GMT
From: Eric Bohlman <ebohlman@earthlink.net>
Subject: Re: rmdir Question
Message-Id: <Xns94F29809843EBebohlmanomsdevcom@130.133.1.4>

Tad McClellan <tadmc@augustmail.com> wrote in
news:slrncatc31.2ue.tadmc@magna.augustmail.com: 

> Top-posting is the newsgroup-equivalent of toilet paper stuck to your
> shoe. 

I think a better analogy would be loudly chomping gum while asking someone 
a question.  Toilet paper stuck to your shoe makes you look silly, but it 
doesn't really inconvenience anyone.  Top posting, or talking with your 
mouth full, makes other people have to work harder if they want to have a 
conversation with you.  Not A Good Thing when the other people are 
volunteers.


------------------------------

Date: 23 May 2004 13:39:12 -0700
From: che@linuxmail.org (Che)
Subject: What is the difference ?
Message-Id: <a6555781.0405231239.4d2a5c63@posting.google.com>

Hi:
What is the difference between
my $str_3 = "c:\windows"; <---- (1)
my $str_3 = 'c:\windows'; <---- (2)

If I use (1) the "if" condition fails and if i use (2) the "if" condition is true.


(1) or (2) here followe by this code.
if( $str_3 =~ m!c:\\windows! )
{
	print"\n  matches";
}
else
{
	print"\n It doesn't match";
}

Thakns


------------------------------

Date: Sun, 23 May 2004 22:47:23 +0200
From: AlV <skweek@no.spam>
Subject: Re: What is the difference ?
Message-Id: <40b10ddb$0$21559$626a14ce@news.free.fr>

Che wrote:
> Hi:
> What is the difference between

Should be obvious from the below example...

my $str_1 = "c:\windows";
my $str_2 = "c:\\windows";
my $str_3 = 'c:\windows';

if( $str_1 =~ m!c:\\windows! )
{
	print"\n  matches";
}
else
{
	print"\n It doesn't match";
}

if( $str_2 =~ m!c:\\windows! )
{
	print"\n  matches";
}
else
{
	print"\n It doesn't match";
}

if( $str_3 =~ m!c:\\windows! )
{
	print"\n  matches";
}
else
{
	print"\n It doesn't match";
}

print "\n";


------------------------------

Date: Sun, 23 May 2004 14:49:59 -0600
From: Scott Bryce <sbryce@scottbryce.com>
Subject: Re: What is the difference ?
Message-Id: <10b23jjng5tqv52@corp.supernews.com>

Che wrote:

> Hi:
> What is the difference between
> my $str_3 = "c:\windows"; <---- (1)
> my $str_3 = 'c:\windows'; <---- (2)

Try this and you may get your answer:



use strict;
use warnings;

my $str_3 = "c:\windows";
my $str_4 = 'c:\windows';

print $str_3;
print "\n";
print $str_4;




Do you understand the difference between double quotes and single quotes 
in Perl?



------------------------------

Date: Sun, 23 May 2004 22:53:51 +0200
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: What is the difference ?
Message-Id: <2hchd5Fao9q8U1@uni-berlin.de>

Che wrote:
> What is the difference between
> my $str_3 = "c:\windows"; <---- (1)
> my $str_3 = 'c:\windows'; <---- (2)

     perldoc perlintro
     perldoc perlop

-- 
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl



------------------------------

Date: Sun, 23 May 2004 12:55:11 GMT
From: merlyn@stonehenge.com (Randal L. Schwartz)
Subject: Re: What's the cancellation policy for YAPC 2004?
Message-Id: <239bf90c45ab3d288829b7c71c3968e7@news.teranews.com>

>>>>> "kj" == kj  <socyl@987jk.com> writes:

kj> Does anyone know what the cancellation policy for YAPC-2004 is?

YAPC 2004 will not be cancelled.

:-)

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!


------------------------------

Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin) 
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>


Administrivia:

#The Perl-Users Digest is a retransmission of the USENET newsgroup
#comp.lang.perl.misc.  For subscription or unsubscription requests, send
#the single line:
#
#	subscribe perl-users
#or:
#	unsubscribe perl-users
#
#to almanac@ruby.oce.orst.edu.  

NOTE: due to the current flood of worm email banging on ruby, the smtp
server on ruby has been shut off until further notice. 

To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.

#To request back copies (available for a week or so), send your request
#to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
#where x is the volume number and y is the issue number.

#For other requests pertaining to the digest, send mail to
#perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
#sending perl questions to the -request address, I don't have time to
#answer them even if I did know the answer.


------------------------------
End of Perl-Users Digest V10 Issue 6599
***************************************


home help back first fref pref prev next nref lref last post