From andy at petdance.com Wed Nov 17 06:51:38 2021 From: andy at petdance.com (Andy Lester) Date: Wed, 17 Nov 2021 08:51:38 -0600 Subject: [Chicago-talk] RIP David H. Adler Message-ID: <6F6B440C-4D6B-4F5C-923B-80B7447DF7C0@petdance.com> David H. Adler (dha) has passed. He was instrumental in the creation of the Perl Mongers groups back in 1997. Twitter is filled with remembrances: https://twitter.com/search?q=%40frobisher Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: From richard at rushlogistics.com Wed Nov 17 07:01:50 2021 From: richard at rushlogistics.com (Richard Reina) Date: Wed, 17 Nov 2021 10:01:50 -0500 Subject: [Chicago-talk] RIP David H. Adler In-Reply-To: <6F6B440C-4D6B-4F5C-923B-80B7447DF7C0@petdance.com> References: <6F6B440C-4D6B-4F5C-923B-80B7447DF7C0@petdance.com> Message-ID: <1637161310.7vd2u4chwgsw0400@hostingemail.digitalspace.net> Andy thank you for sharing. Did not know him personally but seems like a wonderful person. May he rest in peace. Hope to see Perl Mongers more frequently. Are there ever any meetups in Chicago? ? ? On Wed, 17 Nov 2021 08:51:38 -0600, Andy Lester wrote: David H. Adler (dha) has passed. He was instrumental in the creation of the Perl Mongers groups back in 1997. ? Twitter is filled with remembrances:?https://twitter.com/search?q=%40frobisher ? Andy ? ? ? ? ? _______________________________________________ Chicago-talk mailing list Chicago-talk at pm.org https://mail.pm.org/mailman/listinfo/chicago-talk -------------- next part -------------- An HTML attachment was scrubbed... URL: From andy at petdance.com Wed Nov 17 07:43:16 2021 From: andy at petdance.com (Andy Lester) Date: Wed, 17 Nov 2021 09:43:16 -0600 Subject: [Chicago-talk] RIP David H. Adler In-Reply-To: <1637161310.7vd2u4chwgsw0400@hostingemail.digitalspace.net> References: <6F6B440C-4D6B-4F5C-923B-80B7447DF7C0@petdance.com> <1637161310.7vd2u4chwgsw0400@hostingemail.digitalspace.net> Message-ID: <7FD02AF2-6DB4-42E9-875D-0EF2EF74631C@petdance.com> > On Nov 17, 2021, at 9:01 AM, Richard Reina wrote: > > Hope to see Perl Mongers more frequently. Are there ever any meetups in Chicago? Not in a while. I?m sure if someone organized a meeting, folks would attend. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mikefrag at gmail.com Wed Nov 17 09:38:09 2021 From: mikefrag at gmail.com (Mike Fragassi) Date: Wed, 17 Nov 2021 11:38:09 -0600 Subject: [Chicago-talk] RIP David H. Adler In-Reply-To: <7FD02AF2-6DB4-42E9-875D-0EF2EF74631C@petdance.com> References: <6F6B440C-4D6B-4F5C-923B-80B7447DF7C0@petdance.com> <1637161310.7vd2u4chwgsw0400@hostingemail.digitalspace.net> <7FD02AF2-6DB4-42E9-875D-0EF2EF74631C@petdance.com> Message-ID: There have been online meetings, but nothing in person yet. On Wed, Nov 17, 2021 at 9:43 AM Andy Lester wrote: > > > On Nov 17, 2021, at 9:01 AM, Richard Reina > wrote: > > Hope to see Perl Mongers more frequently. Are there ever any meetups in > Chicago? > > > Not in a while. I?m sure if someone organized a meeting, folks would > attend. > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > https://mail.pm.org/mailman/listinfo/chicago-talk > -------------- next part -------------- An HTML attachment was scrubbed... URL: From richard at rushlogistics.com Tue Nov 23 13:48:29 2021 From: richard at rushlogistics.com (Richard Reina) Date: Tue, 23 Nov 2021 16:48:29 -0500 Subject: [Chicago-talk] Can anyone give me a hand getting Net::Google::Search to work? Message-ID: <1637704109.hzrmahfz4ggcsgkw@hostingemail.digitalspace.net> use strict; use Net::Google::Search; my %args = ( key => 'MyGoogleAPIKey', starts_at => 0, max_results => 5, ); my $search = Net::Google::Search->new(\%args); Executing this code I get: Use of uninitialized value in concatenation (.) or string at /home/richard/perl5/lib/perl5/Net/Google/Service.pm line 80. Service description 'file:' can't be loaded: 404 File `' does not exist ? From amead at alanmead.org Tue Nov 23 14:06:46 2021 From: amead at alanmead.org (Alan Mead) Date: Tue, 23 Nov 2021 16:06:46 -0600 Subject: [Chicago-talk] Can anyone give me a hand getting Net::Google::Search to work? In-Reply-To: <1637704109.hzrmahfz4ggcsgkw@hostingemail.digitalspace.net> References: <1637704109.hzrmahfz4ggcsgkw@hostingemail.digitalspace.net> Message-ID: I don't think Google offers this anymore: https://rt.cpan.org/Public/Bug/Display.html?id=53447 On 11/23/2021 3:48 PM, Richard Reina wrote: > use strict; > use Net::Google::Search; > > my %args = ( > > key => 'MyGoogleAPIKey', > starts_at => 0, > max_results => 5, > > ); > > my $search = Net::Google::Search->new(\%args); > > Executing this code I get: > > Use of uninitialized value in concatenation (.) or string at /home/richard/perl5/lib/perl5/Net/Google/Service.pm line 80. > Service description 'file:' can't be loaded: 404 File `' does not exist > > > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > https://mail.pm.org/mailman/listinfo/chicago-talk -- Alan D. Mead, Ph.D. President, Talent Algorithms Inc. science + technology = better workers https://talalg.com Murphy's law: Anything that can go wrong will go wrong. From richard at rushlogistics.com Tue Nov 23 14:25:07 2021 From: richard at rushlogistics.com (Richard Reina) Date: Tue, 23 Nov 2021 16:25:07 -0600 Subject: [Chicago-talk] Can anyone give me a hand getting Net::Google::Search to work? In-Reply-To: References: Message-ID: <5307C775-9F82-43D8-A8A4-1BCFACEC583A@rushlogistics.com> Rats anyone one know of another way to use Perl to automate a google search? Sent from my iPhone > On Nov 23, 2021, at 4:07 PM, Alan Mead wrote: > > ?I don't think Google offers this anymore: > > https://rt.cpan.org/Public/Bug/Display.html?id=53447 > >> On 11/23/2021 3:48 PM, Richard Reina wrote: >> use strict; >> use Net::Google::Search; >> >> my %args = ( >> >> key => 'MyGoogleAPIKey', >> starts_at => 0, >> max_results => 5, >> >> ); >> >> my $search = Net::Google::Search->new(\%args); >> >> Executing this code I get: >> >> Use of uninitialized value in concatenation (.) or string at /home/richard/perl5/lib/perl5/Net/Google/Service.pm line 80. >> Service description 'file:' can't be loaded: 404 File `' does not exist >> >> _______________________________________________ >> Chicago-talk mailing list >> Chicago-talk at pm.org >> https://mail.pm.org/mailman/listinfo/chicago-talk > > -- > > Alan D. Mead, Ph.D. > President, Talent Algorithms Inc. > > science + technology = better workers > > https://talalg.com > > > Murphy's law: Anything that can go wrong will go wrong. > > > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > https://mail.pm.org/mailman/listinfo/chicago-talk > From drench at gmail.com Sun Nov 28 16:21:40 2021 From: drench at gmail.com (Daniel Rench) Date: Sun, 28 Nov 2021 18:21:40 -0600 Subject: [Chicago-talk] Anyone interested in perlrep dot com? Message-ID: Hi all, I registered perlrep.com long ago because I thought it was amusing. But I'm not using it, and it's coming up for renewal. Anyone want it? I'm happy to transfer it. Dan -------------- next part -------------- An HTML attachment was scrubbed... URL: