From richard at rushlogistics.com Fri Jul 1 06:22:04 2011 From: richard at rushlogistics.com (Richard Reina) Date: Fri, 01 Jul 2011 09:22:04 -0400 (EDT) Subject: [Chicago-talk] OPEN() conditional In-Reply-To: <20110630184656.0DCEC60D@captain.xo.com> Message-ID: <20110701132205.1F7B41FFF@alexander.xo.com> Thank you Shawn and Tiger for sharing your wisdom.? > These are both practical and elegant solutions. > > Have a great holiday. > > Richard > > Chicago.pm chatter wrote: > > if (-f '/blah/blah') {open F, " { open F, " > maybe ?: will work too. > > > From: Richard Reina > To: chicago-talk at pm.org > Sent: Thursday, June 30, 2011 1:46 PM > Subject: [Chicago-talk] OPEN() conditional > > I am writing a script that among other things edits > a file.? The file can be in one of two places (directories) > so if the first open does not work I want it to try > the open of the file in the alternative directory.? > I know how to do open(F, " open(F, " to die but to try another directory.? Is there a way > to do open() conditionals or do I need to use readdir > first to see if the file exists? > > Thanks, > > Richard > -- > Richard Reina > Rush Logistics, Inc. > Watch our 3 minute movie: > http://www.rushlogistics.com/movie > > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > -------------- next part -------------- An HTML attachment was scrubbed... URL: From lembark at wrkhors.com Tue Jul 5 15:40:27 2011 From: lembark at wrkhors.com (Steven Lembark) Date: Tue, 5 Jul 2011 17:40:27 -0500 Subject: [Chicago-talk] OPEN() conditional In-Reply-To: <20110630184656.0DCEC60D@captain.xo.com> References: <20110630184656.0DCEC60D@captain.xo.com> Message-ID: <20110705174027.5c366f48.lembark_wrkhors.com@wrkhors.com> On Thu, 30 Jun 2011 14:46:55 -0400 (EDT) Richard Reina wrote: my $fh = ''; open $fh, '<', $path1 or open $fh, '<', $path2 or die "$path1, $path2"; -- Steven Lembark 3646 Flora Pl Workhorse Computing St Louis, MO 63110 lembark at wrkhors.com +1 888 359 3508 From merlyn at stonehenge.com Tue Jul 5 15:42:14 2011 From: merlyn at stonehenge.com (Randal L. Schwartz) Date: Tue, 05 Jul 2011 15:42:14 -0700 Subject: [Chicago-talk] OPEN() conditional In-Reply-To: <20110705174027.5c366f48.lembark_wrkhors.com@wrkhors.com> (Steven Lembark's message of "Tue, 5 Jul 2011 17:40:27 -0500") References: <20110630184656.0DCEC60D@captain.xo.com> <20110705174027.5c366f48.lembark_wrkhors.com@wrkhors.com> Message-ID: <86y60c2vuh.fsf@red.stonehenge.com> >>>>> "Steven" == Steven Lembark writes: Steven> my $fh = ''; Did you want autovivification there? If so, leave $fh as undef, not empty string. Steven> open $fh, '<', $path1 Steven> or Steven> open $fh, '<', $path2 Steven> or Steven> die "$path1, $path2"; If it accidentally works with empty string, I'd be surprised. -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc. See http://methodsandmessages.posterous.com/ for Smalltalk discussion From tigerpeng2001 at yahoo.com Wed Jul 6 07:12:51 2011 From: tigerpeng2001 at yahoo.com (tiger peng) Date: Wed, 6 Jul 2011 07:12:51 -0700 (PDT) Subject: [Chicago-talk] OPEN() conditional In-Reply-To: <86y60c2vuh.fsf@red.stonehenge.com> References: <20110630184656.0DCEC60D@captain.xo.com> <20110705174027.5c366f48.lembark_wrkhors.com@wrkhors.com> <86y60c2vuh.fsf@red.stonehenge.com> Message-ID: <734681.40213.qm@web120523.mail.ne1.yahoo.com> The empty string does work. ... ?????????????? If FILEHANDLE is an undefined lexical ("my") ?????????????? variable the variable is assigned a reference to a ?????????????? new anonymous filehandle, otherwise if FILEHANDLE ?????????????? is an expression, its value is used as the name of ?????????????? the real filehandle wanted.? (This is considered a ?????????????? symbolic reference, so "use strict 'refs'" should ?????????????? not be in effect.) ... ?????????????? Open returns nonzero upon success, the undefined ?????????????? value otherwise. ... /tmp> perl -MData::Dumper -lwe ' my $fh=""; print Dumper $fh; open $fh, "<", "test.txt"; print Dumper $fh; print while <$fh>; print Dumper $fh; ' $VAR1 = ''; $VAR1 = ''; test file $VAR1 = ''; /tmp> perl -MData::Dumper -lwe ' my $fh; print Dumper $fh; open $fh, "<", "test.txt"; print Dumper $fh; print while <$fh>; print Dumper $fh; ' $VAR1 = undef; $VAR1 = \*{'::$fh'}; test file $VAR1 = \*{'::$fh'}; /tmp> perl -MData::Dumper -lwe ' my $fh="F"; print Dumper $fh; open $fh, "<", "test.txt"; print Dumper $fh; print while ; print Dumper $fh; ' Name "main::F" used only once: possible typo at -e line 6. $VAR1 = 'F'; $VAR1 = 'F'; test file $VAR1 = 'F'; perl -MData::Dumper -lwe ' my $fh=""; print Dumper $fh; open $fh, "<", "test.txt" ?or warn Dumper $fh; print while <$fh>; print Dumper $fh; ' $VAR1 = ''; test file $VAR1 = ''; ________________________________ From: Randal L. Schwartz To: Steven Lembark Cc: chicago-talk at pm.org Sent: Tuesday, July 5, 2011 5:42 PM Subject: Re: [Chicago-talk] OPEN() conditional >>>>> "Steven" == Steven Lembark writes: Steven> my $fh? = ''; Did you want autovivification there?? If so, leave $fh as undef, not empty string. Steven> open $fh, '<', $path1 Steven> or Steven> open $fh, '<', $path2 Steven> or Steven> die "$path1, $path2"; If it accidentally works with empty string, I'd be surprised. -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc. See http://methodsandmessages.posterous.com/ for Smalltalk discussion _______________________________________________ Chicago-talk mailing list Chicago-talk at pm.org http://mail.pm.org/mailman/listinfo/chicago-talk -------------- next part -------------- An HTML attachment was scrubbed... URL: From merlyn at stonehenge.com Wed Jul 6 07:16:56 2011 From: merlyn at stonehenge.com (Randal L. Schwartz) Date: Wed, 06 Jul 2011 07:16:56 -0700 Subject: [Chicago-talk] OPEN() conditional In-Reply-To: <734681.40213.qm@web120523.mail.ne1.yahoo.com> (tiger peng's message of "Wed, 6 Jul 2011 07:12:51 -0700 (PDT)") References: <20110630184656.0DCEC60D@captain.xo.com> <20110705174027.5c366f48.lembark_wrkhors.com@wrkhors.com> <86y60c2vuh.fsf@red.stonehenge.com> <734681.40213.qm@web120523.mail.ne1.yahoo.com> Message-ID: <86tyaz1okn.fsf@red.stonehenge.com> >>>>> "tiger" == tiger peng writes: tiger> The empty string does work. tiger> ... tiger> ?????????????? If FILEHANDLE is an undefined lexical ("my") tiger> ?????????????? variable the variable is assigned a reference to a tiger> ?????????????? new anonymous filehandle, otherwise if FILEHANDLE tiger> ?????????????? is an expression, its value is used as the name of tiger> ?????????????? the real filehandle wanted.? (This is considered a tiger> ?????????????? symbolic reference, so "use strict 'refs'" should tiger> ?????????????? not be in effect.) tiger> ... tiger> ?????????????? Open returns nonzero upon success, the undefined tiger> ?????????????? value otherwise. The empty string is invoking the second part of that paragraph, using a symbolic filehandle. Add "use strict", and it will fail. -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc. See http://methodsandmessages.posterous.com/ for Smalltalk discussion From sean at blanton.com Wed Jul 6 08:01:51 2011 From: sean at blanton.com (Sean Blanton) Date: Wed, 6 Jul 2011 10:01:51 -0500 Subject: [Chicago-talk] alarm race condition question Message-ID: Below is some sample code I came across in its entirety. I'm looking for some clarification. There is a comment on the first statement after the eval, "race condition protection". What exactly is the race condition its referring to? #------------------------ eval { local $SIG{ALRM} = sub { die 'Timed Out'; }; alarm 3; my $sock = IO::Socket::INET->new( PeerAddr => inet_ntoa( gethostbyname($host) ), PeerPort => 'whois', Proto => 'tcp', ## Timeout => , ); $sock->autoflush; print $sock "$qry\015\012"; undef $/; $data = <$sock>; $/ = "\n"; alarm 0; }; alarm 0; # race condition protection <<<********* return "Error: Timeout." if ( $@ && $@ =~ /Timed Out/ ); return "Error: Eval corrupted: $@" if $@; #------------------------ Thanks, Sean -------------- next part -------------- An HTML attachment was scrubbed... URL: From briank at kappacs.com Wed Jul 6 08:48:06 2011 From: briank at kappacs.com (Brian Katzung) Date: Wed, 06 Jul 2011 10:48:06 -0500 Subject: [Chicago-talk] alarm race condition question In-Reply-To: References: Message-ID: <4E1483B6.9060806@kappacs.com> I don't think I would call it a "race condition", but if the IO::Socket dies for some other reason before the timeout, you wouldn't want the alarm to still be pending. - Brian On 2011-07-06 10:01, Sean Blanton wrote: > Below is some sample code I came across in its entirety. I'm looking > for some clarification. > > There is a comment on the first statement after the eval, "race > condition protection". What exactly is the race condition its > referring to? > > #------------------------ > > eval { > > local $SIG{ALRM} = sub { die 'Timed Out'; }; > alarm 3; > my $sock = IO::Socket::INET->new( > > PeerAddr => inet_ntoa( gethostbyname($host) ), > > PeerPort => 'whois', > > Proto => 'tcp', > > ## Timeout => , > > ); > > $sock->autoflush; > print $sock "$qry\015\012"; > undef $/; $data = <$sock>; $/ = "\n"; > alarm 0; > > }; > > alarm 0; # race condition protection <<<********* > > return "Error: Timeout." if ( $@ && $@ =~ /Timed Out/ ); > return "Error: Eval corrupted: $@" if $@; > > #------------------------ > > Thanks, > Sean > > > > > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > http://mail.pm.org/mailman/listinfo/chicago-talk -- Brian Katzung, Kappa Computer Solutions, LLC Leveraging UNIX, GNU/Linux, open source, and custom software solutions for business and beyond Phone: 877.367.8837 x1 http://www.kappacs.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sean at blanton.com Wed Jul 6 09:24:01 2011 From: sean at blanton.com (Sean Blanton) Date: Wed, 6 Jul 2011 11:24:01 -0500 Subject: [Chicago-talk] alarm race condition question In-Reply-To: <4E1483B6.9060806@kappacs.com> References: <4E1483B6.9060806@kappacs.com> Message-ID: Right. I assume if you fork a bunch of processes and in those processes, alarm is called, that each one gets a separate alarm? It's process based in perl like the system call? Regards, Sean On Wed, Jul 6, 2011 at 10:48 AM, Brian Katzung wrote: > I don't think I would call it a "race condition", but if the IO::Socket > dies for some other reason before the timeout, you wouldn't want the alarm > to still be pending. > > - Brian > > > On 2011-07-06 10:01, Sean Blanton wrote: > > Below is some sample code I came across in its entirety. I'm looking for > some clarification. > > There is a comment on the first statement after the eval, "race condition > protection". What exactly is the race condition its referring to? > > #------------------------ > > eval { > > local $SIG{ALRM} = sub { die 'Timed Out'; }; > alarm 3; > my $sock = IO::Socket::INET->new( > > PeerAddr => inet_ntoa( gethostbyname($host) ), > > PeerPort => 'whois', > > Proto => 'tcp', > > ## Timeout => , > > ); > > $sock->autoflush; > print $sock "$qry\015\012"; > undef $/; $data = <$sock>; $/ = "\n"; > alarm 0; > > }; > > alarm 0; # race condition protection <<<********* > > return "Error: Timeout." if ( $@ && $@ =~ /Timed Out/ ); > return "Error: Eval corrupted: $@" if $@; > > #------------------------ > > Thanks, > Sean > > > > > _______________________________________________ > Chicago-talk mailing listChicago-talk at pm.orghttp://mail.pm.org/mailman/listinfo/chicago-talk > > > -- > Brian Katzung, Kappa Computer Solutions, LLC > Leveraging UNIX, GNU/Linux, open source, and custom > software solutions for business and beyond > Phone: 877.367.8837 x1 http://www.kappacs.com > > > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > http://mail.pm.org/mailman/listinfo/chicago-talk > -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian.d.foy at gmail.com Wed Jul 6 19:09:01 2011 From: brian.d.foy at gmail.com (brian d foy) Date: Wed, 6 Jul 2011 21:09:01 -0500 Subject: [Chicago-talk] Next Meeting: July 28: AnyEvent::Hiredis Message-ID: The Windy City Perl Mongers have had some time off, but it's time to get back into it. Whitney Jackson is going to talk about AnyEvent::Hiredis. Thursday, July 28 at 6:30 at 540 W. Madison, Chicago Send me your name to get on the guest list that we can give security. As usual, there will be probably be drinks and socializing, during and after. -- brian d foy http://www.pair.com/~comdog/ From hwigoda at mindspring.com Wed Jul 6 19:46:52 2011 From: hwigoda at mindspring.com (hwigoda at mindspring.com) Date: Wed, 6 Jul 2011 21:46:52 -0500 (GMT-05:00) Subject: [Chicago-talk] Next Meeting: July 28: AnyEvent::Hiredis Message-ID: <26178233.1310006812785.JavaMail.root@elwamui-rubis.atl.sa.earthlink.net> Hal Wigpda -----Original Message----- >From: brian d foy >Sent: Jul 6, 2011 9:09 PM >To: windycity-pm , "Chicago.pm chatter" >Subject: [Chicago-talk] Next Meeting: July 28: AnyEvent::Hiredis > >The Windy City Perl Mongers have had some time off, but it's time to >get back into it. Whitney Jackson is going to talk about >AnyEvent::Hiredis. > > Thursday, July 28 at 6:30 at 540 W. Madison, Chicago > >Send me your name to get on the guest list that we can give security. > >As usual, there will be probably be drinks and socializing, during and after. From hwigoda at mindspring.com Wed Jul 6 19:48:06 2011 From: hwigoda at mindspring.com (hwigoda at mindspring.com) Date: Wed, 6 Jul 2011 21:48:06 -0500 (GMT-05:00) Subject: [Chicago-talk] Next Meeting: July 28: AnyEvent::Hiredis Message-ID: <27965022.1310006886757.JavaMail.root@elwamui-rubis.atl.sa.earthlink.net> correction: Hal Wigoda -----Original Message----- >From: brian d foy >Sent: Jul 6, 2011 9:09 PM >To: windycity-pm , "Chicago.pm chatter" >Subject: [Chicago-talk] Next Meeting: July 28: AnyEvent::Hiredis > >The Windy City Perl Mongers have had some time off, but it's time to >get back into it. Whitney Jackson is going to talk about >AnyEvent::Hiredis. > > Thursday, July 28 at 6:30 at 540 W. Madison, Chicago > >Send me your name to get on the guest list that we can give security. > >As usual, there will be probably be drinks and socializing, during and after. From brian.d.foy at gmail.com Wed Jul 13 12:03:40 2011 From: brian.d.foy at gmail.com (brian d foy) Date: Wed, 13 Jul 2011 15:03:40 -0400 Subject: [Chicago-talk] Next Meeting: July 28: AnyEvent::Hiredis In-Reply-To: References: Message-ID: If you've already RSVP'd to me personally, your name is on the list. But, I've also started a Meetup group. You can also RSVP through Meetup, or just join the group. The Perl people in New York have had a lot of success finding new members this way because Meetup will announce their event to people in other groups of similar interest. http://www.meetup.com/Windy-City-Perl-mongers-Meetup/events/25622751/ From joshua.mcadams at gmail.com Mon Jul 25 05:07:59 2011 From: joshua.mcadams at gmail.com (Joshua) Date: Mon, 25 Jul 2011 05:07:59 -0700 Subject: [Chicago-talk] Anyone going to oscon, but still in chicago? Message-ID: I left the Tpf banner behind, so it could use a ride :) -------------- next part -------------- An HTML attachment was scrubbed... URL: From tigerpeng2001 at yahoo.com Mon Jul 25 07:04:53 2011 From: tigerpeng2001 at yahoo.com (tiger peng) Date: Mon, 25 Jul 2011 07:04:53 -0700 (PDT) Subject: [Chicago-talk] Net::SFTP and SSH protocol Message-ID: <1311602693.82518.YahooMailNeo@web120526.mail.ne1.yahoo.com> Hello all, When making SFTP connection from Linux (OpenSSH_3.6.1p2, SSH protocols 1.5/2.0) to EFT server on Windows 2008 (with SSH protocol 2.0), I got warning message "Authenticated with partial success. While I can manually get files from the EFT server, but my Perl script (use Net::SFTP) hangs. Do you know what cause the warning message? Is there any way to make the connection without the warning message or any way to have Net::SFTP ignore the warning message? Thanks, Tiger -------------- next part -------------- An HTML attachment was scrubbed... URL: From shawn.c.carroll at gmail.com Mon Jul 25 07:07:43 2011 From: shawn.c.carroll at gmail.com (Shawn Carroll) Date: Mon, 25 Jul 2011 09:07:43 -0500 Subject: [Chicago-talk] Net::SFTP and SSH protocol In-Reply-To: <1311602693.82518.YahooMailNeo@web120526.mail.ne1.yahoo.com> References: <1311602693.82518.YahooMailNeo@web120526.mail.ne1.yahoo.com> Message-ID: Have you turned up debugging to see where the connection is fouling up? shawn.c.carroll at gmail.com Perl Programmer Soccer Referee On Mon, Jul 25, 2011 at 09:04, tiger peng wrote: > Hello all, > > When making SFTP connection from Linux (OpenSSH_3.6.1p2, SSH protocols > 1.5/2.0) to EFT server on Windows 2008 (with SSH protocol 2.0), I got > warning message "Authenticated with partial success. While I can manually > get files from the EFT server, but my Perl script (use Net::SFTP) hangs. > > Do you know what cause the warning message? Is there any way to make the > connection without the warning message or any way to have Net::SFTP ignore > the warning message? > > Thanks, > Tiger > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > http://mail.pm.org/mailman/listinfo/chicago-talk > From tigerpeng2001 at yahoo.com Mon Jul 25 07:47:37 2011 From: tigerpeng2001 at yahoo.com (tiger peng) Date: Mon, 25 Jul 2011 07:47:37 -0700 (PDT) Subject: [Chicago-talk] Net::SFTP and SSH protocol In-Reply-To: References: <1311602693.82518.YahooMailNeo@web120526.mail.ne1.yahoo.com> Message-ID: <1311605257.88398.YahooMailNeo@web120525.mail.ne1.yahoo.com> Test on another QA box(OpenSSH_3.7.1p2, SSH protocols 1.5/2.0, OpenSSL 0.9.7c 30 Sep 2003) with debug turn on. The Perl script worked as expect without hanging. I do got same warning message when I run sftp manually on the QA box. No warning message for run Putty's psftp ( with verbose message segment copied below). Server version: SSH-2.0-someServer someServer We claim version: SSH-2.0-PuTTY_Release_0.60 Using SSH protocol version 2 I am waiting for permission to do the debug on the Production Box. ________________________________ From: Shawn Carroll To: Chicago.pm chatter Sent: Monday, July 25, 2011 9:07 AM Subject: Re: [Chicago-talk] Net::SFTP and SSH protocol Have you turned up debugging to see where the connection is fouling up? shawn.c.carroll at gmail.com Perl Programmer Soccer Referee On Mon, Jul 25, 2011 at 09:04, tiger peng wrote: > Hello all, > > When making SFTP connection from Linux (OpenSSH_3.6.1p2, SSH protocols > 1.5/2.0) to EFT server on Windows 2008 (with SSH protocol 2.0), I got > warning message "Authenticated with partial success. While I can manually > get files from the EFT server, but my Perl script (use Net::SFTP) hangs. > > Do you know what cause the warning message? Is there any way to make the > connection without the warning message or any way to have Net::SFTP ignore > the warning message? > > Thanks, > Tiger > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > http://mail.pm.org/mailman/listinfo/chicago-talk > _______________________________________________ Chicago-talk mailing list Chicago-talk at pm.org http://mail.pm.org/mailman/listinfo/chicago-talk -------------- next part -------------- An HTML attachment was scrubbed... URL: From tigerpeng2001 at yahoo.com Wed Jul 27 10:25:46 2011 From: tigerpeng2001 at yahoo.com (tiger peng) Date: Wed, 27 Jul 2011 10:25:46 -0700 (PDT) Subject: [Chicago-talk] Net::SFTP and SSH protocol In-Reply-To: <1311605257.88398.YahooMailNeo@web120525.mail.ne1.yahoo.com> References: <1311602693.82518.YahooMailNeo@web120526.mail.ne1.yahoo.com> <1311605257.88398.YahooMailNeo@web120525.mail.ne1.yahoo.com> Message-ID: <1311787546.26667.YahooMailNeo@web120526.mail.ne1.yahoo.com> Finally I got the permission to run the debug version. It is hanging on Trying pubkey authentication with key file: hostname: Trying pubkey authentication with key file '/usr/home/username/.ssh/id_dsa' ________________________________ From: tiger peng To: Chicago.pm chatter Sent: Monday, July 25, 2011 9:47 AM Subject: Re: [Chicago-talk] Net::SFTP and SSH protocol Test on another QA box(OpenSSH_3.7.1p2, SSH protocols 1.5/2.0, OpenSSL 0.9.7c 30 Sep 2003) with debug turn on. The Perl script worked as expect without hanging. I do got same warning message when I run sftp manually on the QA box. No warning message for run Putty's psftp ( with verbose message segment copied below). Server version: SSH-2.0-someServer someServer We claim version: SSH-2.0-PuTTY_Release_0.60 Using SSH protocol version 2 I am waiting for permission to do the debug on the Production Box. ________________________________ From: Shawn Carroll To: Chicago.pm chatter Sent: Monday, July 25, 2011 9:07 AM Subject: Re: [Chicago-talk] Net::SFTP and SSH protocol Have you turned up debugging to see where the connection is fouling up? shawn.c.carroll at gmail.com Perl Programmer Soccer Referee On Mon, Jul 25, 2011 at 09:04, tiger peng wrote: > Hello all, > > When making SFTP connection from Linux (OpenSSH_3.6.1p2, SSH protocols > 1.5/2.0) to EFT server on Windows 2008 (with SSH protocol 2.0), I got > warning message "Authenticated with partial success. While I can manually > get files from the EFT server, but my Perl script (use Net::SFTP) hangs. > > Do you know what cause the warning message? Is there any way to make the > connection without the warning message or any way to have Net::SFTP ignore > the warning message? > > Thanks, > Tiger > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > http://mail.pm.org/mailman/listinfo/chicago-talk > _______________________________________________ Chicago-talk mailing list Chicago-talk at pm.org http://mail.pm.org/mailman/listinfo/chicago-talk -------------- next part -------------- An HTML attachment was scrubbed... URL: From shawn.c.carroll at gmail.com Thu Jul 28 03:49:06 2011 From: shawn.c.carroll at gmail.com (Shawn Carroll) Date: Thu, 28 Jul 2011 05:49:06 -0500 Subject: [Chicago-talk] Next Meeting: July 28: AnyEvent::Hiredis In-Reply-To: References: Message-ID: Just to confirm that this is still on for this evening? shawn.c.carroll at gmail.com Perl Programmer Soccer Referee On Wed, Jul 13, 2011 at 14:03, brian d foy wrote: > If you've already RSVP'd to me personally, your name is on the list. > > But, I've also started a Meetup group. You can also RSVP through > Meetup, or just join the group. The Perl people in New York have had a > lot of success finding new members this way because Meetup will > announce their event to people in other groups of similar interest. > > http://www.meetup.com/Windy-City-Perl-mongers-Meetup/events/25622751/ > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > http://mail.pm.org/mailman/listinfo/chicago-talk > From lee at laylward.com Thu Jul 28 07:19:47 2011 From: lee at laylward.com (Lee Aylward) Date: Thu, 28 Jul 2011 09:19:47 -0500 Subject: [Chicago-talk] Next Meeting: July 28: AnyEvent::Hiredis In-Reply-To: References: Message-ID: Hi brian, I RSVP'd through meetup.com, but it is the day-of so I just wanted to make sure I would be able to get in the building. Thanks! -- Lee Aylward On Jul 6, 2011, at 9:09 PM, brian d foy wrote: > The Windy City Perl Mongers have had some time off, but it's time to > get back into it. Whitney Jackson is going to talk about > AnyEvent::Hiredis. > > Thursday, July 28 at 6:30 at 540 W. Madison, Chicago > > Send me your name to get on the guest list that we can give security. > > As usual, there will be probably be drinks and socializing, during and after. > > -- > brian d foy > http://www.pair.com/~comdog/ > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > http://mail.pm.org/mailman/listinfo/chicago-talk > From whjackson at gmail.com Thu Jul 28 09:55:17 2011 From: whjackson at gmail.com (Whitney Jackson) Date: Thu, 28 Jul 2011 11:55:17 -0500 Subject: [Chicago-talk] Next Meeting: July 28: AnyEvent::Hiredis In-Reply-To: References: Message-ID: Yep. This is still on. Once past security, head to the Bank of America offices on the 9th floor. We'll be meeting in a conference room not far from the elevators. Whitney On Thu, Jul 28, 2011 at 5:49 AM, Shawn Carroll wrote: > Just to confirm that this is still on for this evening? > > shawn.c.carroll at gmail.com > Perl Programmer > Soccer Referee > > > > On Wed, Jul 13, 2011 at 14:03, brian d foy wrote: >> If you've already RSVP'd to me personally, your name is on the list. >> >> But, I've also started a Meetup group. You can also RSVP through >> Meetup, or just join the group. The Perl people in New York have had a >> lot of success finding new members this way because Meetup will >> announce their event to people in other groups of similar interest. >> >> http://www.meetup.com/Windy-City-Perl-mongers-Meetup/events/25622751/ >> _______________________________________________ >> Chicago-talk mailing list >> Chicago-talk at pm.org >> http://mail.pm.org/mailman/listinfo/chicago-talk >> > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > http://mail.pm.org/mailman/listinfo/chicago-talk > From whjackson at gmail.com Thu Jul 28 09:56:40 2011 From: whjackson at gmail.com (Whitney Jackson) Date: Thu, 28 Jul 2011 11:56:40 -0500 Subject: [Chicago-talk] Next Meeting: July 28: AnyEvent::Hiredis In-Reply-To: References: Message-ID: I'll add your name to the list. Whitney On Thu, Jul 28, 2011 at 9:19 AM, Lee Aylward wrote: > Hi brian, > > I RSVP'd through meetup.com, but it is the day-of so I just wanted to make sure I would be able to get in the building. > > Thanks! > -- > Lee Aylward > > On Jul 6, 2011, at 9:09 PM, brian d foy wrote: > >> The Windy City Perl Mongers have had some time off, but it's time to >> get back into it. Whitney Jackson is going to talk about >> AnyEvent::Hiredis. >> >> ? ?Thursday, July 28 at 6:30 at 540 W. Madison, Chicago >> >> Send me your name to get on the guest list that we can give security. >> >> As usual, there will be probably be drinks and socializing, during and after. >> >> -- >> brian d foy >> http://www.pair.com/~comdog/ >> _______________________________________________ >> Chicago-talk mailing list >> Chicago-talk at pm.org >> http://mail.pm.org/mailman/listinfo/chicago-talk >> > > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > http://mail.pm.org/mailman/listinfo/chicago-talk > From brian.d.foy at gmail.com Sat Jul 30 00:46:13 2011 From: brian.d.foy at gmail.com (brian d foy) Date: Sat, 30 Jul 2011 02:46:13 -0500 Subject: [Chicago-talk] [WindyCity-pm] Next month's meeting In-Reply-To: References: Message-ID: On Fri, Jul 29, 2011 at 3:32 PM, Shawn Carroll wrote: > Instead of 7pm, could we move this back to 6pm? Does anyone object to starting meetings earlier? -- brian d foy http://www.pair.com/~comdog/