Re: [Boston.pm] Completing processing before SIGHUP

2004-05-29 Thread Andrew Langmead
On May 27, 2004, at 7:17 PM, Ranga Nathan wrote: Say SIGHUP is received and the program has to complete what it is doing before reacting to the HUP signal. Is this possible? Or can the program enter into a state where it does not accept HUP signal until it reaches a quiet point, such as sle

Re: [Boston.pm] Looking for YAPC roommate

2004-05-29 Thread Uri Guttman
> "DT" == Drew Taylor <[EMAIL PROTECTED]> writes: DT> I just realized that it's 3 weeks to YAPC! I'm thinking that I want to DT> stay in the hotel, but would need to share a room. Is there anyone in DT> the group going that would like a roommate? My wife has trained me well DT> so I wo

Re: [Boston.pm] travel plans to YAPC::NA

2004-05-29 Thread Uri Guttman
> "PH" == Philipp Hanes <[EMAIL PROTECTED]> writes: PH> I appear to have missed the window of cheap flights to Buffalo PH> from Boston. Yesterday, things were looking like about $160, PH> today they're around $350. Bah. my wife landed a cheap flight already. but she got a round trip t

Re: [Boston.pm] package name itself a variable?

2004-05-29 Thread Uri Guttman
> "JP" == Jerrad Pierce <[EMAIL PROTECTED]> writes: JP> You mean JP> print ${$x.'::hash'}{key} JP> It's generally not the best thing to do and should be avoided if possible. JP> At a minimum you probably should do JP> print ${__PACKAGE__'::hash'}{key} and both are symrefs and will

[Boston.pm] Perl on Pocket PC?

2004-05-29 Thread Tal Cohen
My wife has an iPAQ that I purchased for her birthday at the beginning of the year. I am interested in developing Perl code that will run on it. Can someone point me to a good reference / resource? Thanks, Tal Cohen [EMAIL PROTECTED] ___ Boston-pm mai

Re: [Boston.pm] package name itself a variable?

2004-05-29 Thread Jerrad Pierce
You mean print ${$x.'::hash'}{key} It's generally not the best thing to do and should be avoided if possible. At a minimum you probably should do print ${__PACKAGE__'::hash'}{key} -- H4sICNoBwDoAA3NpZwA9jbsNwDAIRHumuC4NklvXTOD0KSJEnwU8fHz4Q8M9i3sGzkS7BBrm OkCTwsycb4S3DloZuMIYeXpLFqw5LaMhXC2

[Boston.pm] Looking for YAPC roommate

2004-05-29 Thread Drew Taylor
I just realized that it's 3 weeks to YAPC! I'm thinking that I want to stay in the hotel, but would need to share a room. Is there anyone in the group going that would like a roommate? My wife has trained me well so I won't cause any (big) trouble. :-) Is there a mailing list or IRC channel I can u

[Boston.pm] Looking for YAPC roommate

2004-05-29 Thread Drew Taylor
I just realized that it's 3 weeks to YAPC! I'm thinking that I want to stay in the hotel, but would need to share a room. Is there anyone in the group going that would like a roommate? My wife has trained me well so I won't cause any (big) trouble. :-) I'll also ask over on the YAPC list if I c

[Boston.pm] travel plans to YAPC::NA

2004-05-29 Thread Philipp Hanes
I appear to have missed the window of cheap flights to Buffalo from Boston. Yesterday, things were looking like about $160, today they're around $350. Bah. How are people who are going there this year traveling? I really want to go, since I've enjoyed all the previous ones. But that's a pretty ste

[Boston.pm] Please ignore ... test message ... understand there has been a problem with pm.org email list server

2004-05-29 Thread dirigo
___ Boston-pm mailing list [EMAIL PROTECTED] http://mail.pm.org/mailman/listinfo/boston-pm

[Boston.pm] Completing processing before SIGHUP

2004-05-29 Thread Ranga Nathan
Say SIGHUP is received and the program has to complete what it is doing before reacting to the HUP signal. Is this possible? Or can the program enter into a state where it does not accept HUP signal until it reaches a quiet point, such as sleep()? _

[Boston.pm] package name itself a variable?

2004-05-29 Thread Ranga Nathan
Has anyone done this? Instead of print $ams::config{ip},"\n"; my $x = 'ams'; print ${$x}::hash{key} I could not get this to work... nor does may other permutations... Is it not possible to use a variable instread of package name? Thanks ___ Bo