From aaron.m.nielsen at intel.com Mon Dec 3 16:02:44 2001 From: aaron.m.nielsen at intel.com (Nielsen, Aaron M) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: odd fix to transpose code memory problem Message-ID: Thanks for you're reply. I've found an interesting fix that I don't understand. Maybe you could help explain. When I run a system call instead of calling the almost identical sub my code runs fast with no Out of Memory! errors. system("Transpose.pl $in $temp1"); # instead of sub transpose($in,$temp1); -------------Transpose.pl----------------- #!/usr/bin/perl open (IN, $ARGV[0]) || die "$!\n"; open (OUT,">$ARGV[1]") || die "$!\n"; while ( ) { $j = 0; chomp; @_ = split //; for ( @_ ) { if ( $j > $linesm1 ) { $line[$j] = ' ' x $i; $linesm1++; } $line[$j] .= $_; $j++; } for ( $j .. $linesm1 ) { $line[$_] .= ' '; } $i++; } for ( 0 .. $linesm1 ) { print OUT $line[$_],"\n"; } ------------transpose sub------------------- transpose($file,$file_transposed); sub transpose { package transpose; my (@ops) = @_; my $linesm1 = undef; my @line = undef; my $j = undef; my $i = undef; open (IN, $ops[0]) || die "1 $!\n"; open (OUT,"> $ops[1]") || die "2 $!\n"; while ( ) { $j = 0; chomp; @_ = split //; for ( @_ ) { if ( $j > $linesm1 ) { $line[$j] = " " x $i; $linesm1++; } $line[$j] .= $_; $j++; } for ( $j .. $linesm1 ) { $line[$_] .= ' '; } $i++; } for ( 0 .. $linesm1 ){ print OUT $line[$_],"\n"; } close OUT; close IN; } ------------------------------------------------ Thanks Aaron Nielsen PNG/CMO/PE&TE 503-712-1822 -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From jpschewe at mtu.net Fri Dec 21 15:04:23 2001 From: jpschewe at mtu.net (Jon Schewe) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: Perl modules not building Message-ID: <20011221160423.A4363@mtu.net> I'm trying to build some perl modules on cygwin, this particular error is coming from Time::HiRes, and I just can't figure out where this broken reference to perl is. Here's the output I get: >make gcc -c -DPERL_USE_SAFE_PUTENV -fno-strict-aliasing -I/usr/local/include -DUSEIM PORTLIB -O2 -DVERSION=\"01.20\" -DXS_VERSION=\"01.20\" -I/usr/lib/perl5/5.6.1 /cygwin-multi/CORE -DHAS_USLEEP -DHAS_UALARM -DATLEASTFIVEOHOHFIVE HiRes.c Running Mkbootstrap for Time::HiRes () chmod 644 HiRes.bs rm -f blib/arch/auto/Time/HiRes/HiRes.dll echo "berfore" berfore LD_RUN_PATH="" ld2 -s -L/usr/local/lib HiRes.o -o blib/arch/auto/Time/HiRes/Hi Res.dll /usr/lib/perl5/5.6.1/cygwin-multi/CORE/libperl5_6_1.a //d/src/perl5.005_03/perl: not found make: *** [blib/arch/auto/Time/HiRes/HiRes.dll] Error 127 Something's looking for an old perl in a location that just doesn't exist. Anyone got any ideas? -- Jon Schewe | http://mtu.net/~jpschewe For I am convinced that neither death nor life, neither angels nor demons, neither the present nor the future, nor any powers, neither height nor depth, nor anything else in all creation, will be able to separate us from the love of God that is in Christ Jesus our Lord. - Romans 8:38-39 -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From john.sundberg at kineticdata.com Fri Dec 21 15:26:21 2001 From: john.sundberg at kineticdata.com (John Sundberg) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: WinNT - testing to see if a users ID and password are correct Message-ID: <1008969982.5428.33.camel@platypus> All, I am working on a pet project. I would like to write some perl code to validate a persons userid/password. I would like to validate the userid/password against Windows NT. So if they log into windows like: Domain: MYDOMAIN UserId: myname Password: mypassword I would like to end up with something like: $result = isValidNTUser("MYDOMAIN","myname","mypassword"); Any ideas - even if it isnt in perl that would be fine. -John -- John Sundberg Kinetic Data, Inc. 404 Snelling Ave. S. St. Paul, MN 55105 w: 651 695 8566 c: 612 325 8637 email: john.sundberg@kineticdata.com web: www.kineticdata.com -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From thomas at stderr.net Fri Dec 21 15:24:54 2001 From: thomas at stderr.net (Thomas Eibner) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: WinNT - testing to see if a users ID and password are correct In-Reply-To: <1008969982.5428.33.camel@platypus>; from john.sundberg@kineticdata.com on Fri, Dec 21, 2001 at 03:26:21PM -0600 References: <1008969982.5428.33.camel@platypus> Message-ID: <20011221222454.B50600@io.stderr.net> On Fri, Dec 21, 2001 at 03:26:21PM -0600, John Sundberg wrote: > I am working on a pet project. I would like to write some perl code to > validate a persons userid/password. I would like to validate the > userid/password against Windows NT. > > So if they log into windows like: > Domain: MYDOMAIN > UserId: myname > Password: mypassword > > I would like to end up with something like: > > $result = isValidNTUser("MYDOMAIN","myname","mypassword"); > > Any ideas - even if it isnt in perl that would be fine. Authen::Smb might be what you're looking for. http://search.cpan.org/doc/PMKANE/Authen-Smb-0.91/Smb.pm -- Thomas Eibner DnsZone mod_pointer -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From john.sundberg at kineticdata.com Fri Dec 21 16:53:08 2001 From: john.sundberg at kineticdata.com (John Sundberg) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: WinNT - testing to see if a users ID and password are correct In-Reply-To: <20011221222454.B50600@io.stderr.net> References: <1008969982.5428.33.camel@platypus> <20011221222454.B50600@io.stderr.net> Message-ID: <1008975189.6221.43.camel@platypus> Looks good - I got it working on Linux - but I really want it on NT. How do people get stuff compiled on NT if they dont have a make or compiler? I poked around for some binaries - but didnt find them. perl Makefile.pl - worked which generated a nice makefile - but useless to me. For people who do do this (I said "do do" - makes me laugh) - what kind of compiler do you use? -John On Fri, 2001-12-21 at 15:24, Thomas Eibner wrote: > On Fri, Dec 21, 2001 at 03:26:21PM -0600, John Sundberg wrote: > > I am working on a pet project. I would like to write some perl code to > > validate a persons userid/password. I would like to validate the > > userid/password against Windows NT. > > > > So if they log into windows like: > > Domain: MYDOMAIN > > UserId: myname > > Password: mypassword > > > > I would like to end up with something like: > > > > $result = isValidNTUser("MYDOMAIN","myname","mypassword"); > > > > Any ideas - even if it isnt in perl that would be fine. > > Authen::Smb might be what you're looking for. > > http://search.cpan.org/doc/PMKANE/Authen-Smb-0.91/Smb.pm > > -- > Thomas Eibner DnsZone > mod_pointer > > > > -------------------------------------------------- > Minneapolis Perl Mongers mailing list > > To unsubscribe, send mail to majordomo@pm.org > with "unsubscribe mpls" in the body of the message. > -- John Sundberg Kinetic Data, Inc. 404 Snelling Ave. S. St. Paul, MN 55105 w: 651 695 8566 c: 612 325 8637 email: john.sundberg@kineticdata.com web: www.kineticdata.com -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From thomas at stderr.net Fri Dec 21 16:55:08 2001 From: thomas at stderr.net (Thomas Eibner) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: WinNT - testing to see if a users ID and password are correct In-Reply-To: <1008975189.6221.43.camel@platypus>; from john.sundberg@kineticdata.com on Fri, Dec 21, 2001 at 04:53:08PM -0600 References: <1008969982.5428.33.camel@platypus> <20011221222454.B50600@io.stderr.net> <1008975189.6221.43.camel@platypus> Message-ID: <20011221235508.A51076@io.stderr.net> On Fri, Dec 21, 2001 at 04:53:08PM -0600, John Sundberg wrote: > > Looks good - I got it working on Linux - but I really want it on NT. Do you use ActivePerl? I was gonna suggest seeing if they had it in their ppm repository, but I'm afraid they don't :-| http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/Packages > How do people get stuff compiled on NT if they dont have a make or > compiler? I poked around for some binaries - but didnt find them. Cygwin? -- Thomas Eibner DnsZone mod_pointer -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From autarch at urth.org Thu Dec 27 16:50:03 2001 From: autarch at urth.org (Dave Rolsky) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? Message-ID: I think our next meeting would be January 30, 2002. That's a Wednesday, people. Wednesday. Day after Tuesday. Day before Thursday. You get the picture ;) Ok, so does anyone have a presentation or should we have a purely yackety-yack meeting? -dave -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From thomas at stderr.net Thu Dec 27 22:38:20 2001 From: thomas at stderr.net (Thomas Eibner) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: ; from autarch@urth.org on Thu, Dec 27, 2001 at 04:50:03PM -0600 References: Message-ID: <20011228053820.A98958@io.stderr.net> On Thu, Dec 27, 2001 at 04:50:03PM -0600, Dave Rolsky wrote: > I think our next meeting would be January 30, 2002. That's a Wednesday, > people. Wednesday. Day after Tuesday. Day before Thursday. You get the > picture ;) > > > Ok, so does anyone have a presentation or should we have a purely > yackety-yack meeting? Is it going to be a beer-meeting kind of a thing or a presentation/talk? -- Thomas Eibner DnsZone mod_pointer -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From autarch at urth.org Thu Dec 27 22:55:25 2001 From: autarch at urth.org (Dave Rolsky) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: <20011228053820.A98958@io.stderr.net> Message-ID: On Fri, 28 Dec 2001, Thomas Eibner wrote: > Is it going to be a beer-meeting kind of a thing or a presentation/talk? That all depends on whether or not someone has something to talk about, I guess ;) I don't have anything new cooking, I don't think. Maybe Ken Williams will get back to working on Module::Build (cough) and talk about that. Ken MacLeod was supposed to talk about Orchard a while back. Ken, if you're still on this last that'd still be a good talk. Also, you'd be the best person to talk about XML stuff. SAX2 and Perl would probably be a good topic too. -dave -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From ken at mathforum.org Thu Dec 27 23:33:20 2001 From: ken at mathforum.org (Ken Williams) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: <20011228053820.A98958@io.stderr.net> Message-ID: <670E8B34-FB54-11D5-A0C0-003065F6D85A@mathforum.org> On Thursday, December 27, 2001, at 10:38 PM, Thomas Eibner wrote: > Is it going to be a beer-meeting kind of a thing or a presentation/talk? > I vote for doing both, at 2 meetings. We can make up for l[oa]st time. How about a beerish meeting on the 16th (also a Wednesday), and a tekkish meeting on the 30th? -Ken -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From autarch at urth.org Thu Dec 27 23:57:19 2001 From: autarch at urth.org (Dave Rolsky) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: <670E8B34-FB54-11D5-A0C0-003065F6D85A@mathforum.org> Message-ID: On Thu, 27 Dec 2001, Ken Williams wrote: > I vote for doing both, at 2 meetings. We can make up for l[oa]st time. > > How about a beerish meeting on the 16th (also a Wednesday), and a > tekkish meeting on the 30th? That sounds like a good idea. Of course, we still need a presentation (not to harp ;). -dave -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From thomas at stderr.net Fri Dec 28 07:14:56 2001 From: thomas at stderr.net (Thomas Eibner) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: <670E8B34-FB54-11D5-A0C0-003065F6D85A@mathforum.org>; from ken@mathforum.org on Thu, Dec 27, 2001 at 11:33:20PM -0600 References: <20011228053820.A98958@io.stderr.net> <670E8B34-FB54-11D5-A0C0-003065F6D85A@mathforum.org> Message-ID: <20011228141455.B3246@io.stderr.net> On Thu, Dec 27, 2001 at 11:33:20PM -0600, Ken Williams wrote: > > On Thursday, December 27, 2001, at 10:38 PM, Thomas Eibner wrote: > > Is it going to be a beer-meeting kind of a thing or a presentation/talk? > > > > I vote for doing both, at 2 meetings. We can make up for l[oa]st time. > > How about a beerish meeting on the 16th (also a Wednesday), and a > tekkish meeting on the 30th? Sounds like a plan. -- Thomas Eibner DnsZone mod_pointer -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From jim at acadcam.com Fri Dec 28 09:51:39 2001 From: jim at acadcam.com (Jim Anderson) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: ; from autarch@urth.org on Thu, Dec 27, 2001 at 11:57:19PM -0600 References: <670E8B34-FB54-11D5-A0C0-003065F6D85A@mathforum.org> Message-ID: <20011228095139.A13801@acadcam.com> On Thu, Dec 27, 2001 at 11:57:19PM -0600, Dave Rolsky wrote: > On Thu, 27 Dec 2001, Ken Williams wrote: > > How about a beerish meeting on the 16th (also a Wednesday), and a > > tekkish meeting on the 30th? > > That sounds like a good idea. Of course, we still need a presentation > (not to harp ;). Well, there's already a beerish meeting on the 16th. SIGBAP (Special Interest Group on Beer And Pizza) meets on the third Wednesday of the month. The January meeting is going to be held at the Green Mill in Eden Prairie starting about 7pm. -- Jim Anderson (612) 782-0456 jim@acadcam.com Anderson CAD/CAM, Inc Lucifer designed MS-DOS to try 3800 Apache Lane NE men's souls. St Anthony, MN 55421 Then he had a better idea... -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From ken at mathforum.org Fri Dec 28 15:55:52 2001 From: ken at mathforum.org (Ken Williams) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: <20011228095139.A13801@acadcam.com> Message-ID: On Friday, December 28, 2001, at 09:51 AM, Jim Anderson wrote: > Well, there's already a beerish meeting on the 16th. SIGBAP (Special > Interest Group on Beer And Pizza) meets on the third Wednesday of the > month. The January meeting is going to be held at the Green Mill in > Eden Prairie starting about 7pm. Hm, I dunno. If we move it to Thursday, I won't be able to make it. If we move it to Tuesday, Dave probably won't. How about the 9th? It's also a Wednesday. What's SIGBAP, is it somehow Perl-related? -Ken -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From thomas at stderr.net Fri Dec 28 16:20:13 2001 From: thomas at stderr.net (Thomas Eibner) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: ; from ken@mathforum.org on Fri, Dec 28, 2001 at 03:55:52PM -0600 References: <20011228095139.A13801@acadcam.com> Message-ID: <20011228232013.A6222@io.stderr.net> On Fri, Dec 28, 2001 at 03:55:52PM -0600, Ken Williams wrote: > > On Friday, December 28, 2001, at 09:51 AM, Jim Anderson wrote: > > Well, there's already a beerish meeting on the 16th. SIGBAP (Special > > Interest Group on Beer And Pizza) meets on the third Wednesday of the > > month. The January meeting is going to be held at the Green Mill in > > Eden Prairie starting about 7pm. > > Hm, I dunno. If we move it to Thursday, I won't be able to make it. If > we move it to Tuesday, Dave probably won't. > > How about the 9th? It's also a Wednesday. ^^^ Fine with me. > What's SIGBAP, is it somehow Perl-related? Didn't he say it was Special Interest Group on Beer And Pizza? ;-) (You probably wonder which kind of people are involved, which I am also wondering about). -- Thomas Eibner DnsZone mod_pointer -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From jim at acadcam.com Fri Dec 28 16:33:10 2001 From: jim at acadcam.com (Jim Anderson) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: <20011228232013.A6222@io.stderr.net>; from thomas@stderr.net on Fri, Dec 28, 2001 at 11:20:13PM +0100 References: <20011228095139.A13801@acadcam.com> <20011228232013.A6222@io.stderr.net> Message-ID: <20011228163310.A14338@acadcam.com> On Fri, Dec 28, 2001 at 11:20:13PM +0100, Thomas Eibner wrote: > On Fri, Dec 28, 2001 at 03:55:52PM -0600, Ken Williams wrote: > > > > On Friday, December 28, 2001, at 09:51 AM, Jim Anderson wrote: > > > Well, there's already a beerish meeting on the 16th. SIGBAP (Special > > > Interest Group on Beer And Pizza) meets on the third Wednesday of the > > > month. The January meeting is going to be held at the Green Mill in > > > Eden Prairie starting about 7pm. > > > > Hm, I dunno. If we move it to Thursday, I won't be able to make it. If > > we move it to Tuesday, Dave probably won't. > > > > How about the 9th? It's also a Wednesday. > ^^^ > Fine with me. > > > What's SIGBAP, is it somehow Perl-related? > > Didn't he say it was Special Interest Group on Beer And Pizza? ;-) > > (You probably wonder which kind of people are involved, which I am also > wondering about). SIGBAP is an offshoot of UUM (Unix Users of Minnesota). UUM meets on the first Wednesday of the month (except January and July). Many years ago (15 or more?), a group of UUM people decided to start going out for beer and pizza on the third Wednesday of the month. The group of people tends to be Unix system administrators, but there are people there with other Unix interests as well. Our conversations tend towards Unix related issues, but as Perl is rather heavily Unix oriented, we'll discuss that too, if somebody wants to talk about it. Actually, I got my first intro to Perl at a UUM meeting. -- Jim Anderson (612) 782-0456 jim@acadcam.com Anderson CAD/CAM, Inc Lucifer designed MS-DOS to try 3800 Apache Lane NE men's souls. St Anthony, MN 55421 Then he had a better idea... -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From bruce at zuhause.mn.org Fri Dec 28 19:19:48 2001 From: bruce at zuhause.mn.org (Bruce Albrecht) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: <20011228163310.A14338@acadcam.com> References: <20011228095139.A13801@acadcam.com> <20011228232013.A6222@io.stderr.net> <20011228163310.A14338@acadcam.com> Message-ID: <15405.6708.552032.874270@celery.zuhause.org> Jim Anderson writes: > Actually, I got my first intro > to Perl at a UUM meeting. Me too, at Molly Quinn's, where someone was wearing a Camel t-shirt, back in the summer of 1991. -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From bruce at zuhause.mn.org Fri Dec 28 19:22:36 2001 From: bruce at zuhause.mn.org (Bruce Albrecht) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: <15405.6708.552032.874270@celery.zuhause.org> References: <20011228095139.A13801@acadcam.com> <20011228232013.A6222@io.stderr.net> <20011228163310.A14338@acadcam.com> <15405.6708.552032.874270@celery.zuhause.org> Message-ID: <15405.6876.535766.250959@celery.zuhause.org> Bruce Albrecht writes: > Jim Anderson writes: > > Actually, I got my first intro > > to Perl at a UUM meeting. > > Me too, at Molly Quinn's, where someone was wearing a Camel t-shirt, > back in the summer of 1991. Actually, that was a SIGBAP meeting. -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From shamu112 at yahoo.com Fri Dec 28 19:57:48 2001 From: shamu112 at yahoo.com (Shamu) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: Message-ID: Where are these meetings usually held? Mark Mykkanen -----Original Message----- From: owner-mpls@pm.org [mailto:owner-mpls@pm.org]On Behalf Of Dave Rolsky Sent: Thursday, December 27, 2001 11:57 PM To: mpls@pm.org Subject: Re: [mplspm]: What next? On Thu, 27 Dec 2001, Ken Williams wrote: > I vote for doing both, at 2 meetings. We can make up for l[oa]st time. > > How about a beerish meeting on the 16th (also a Wednesday), and a > tekkish meeting on the 30th? That sounds like a good idea. Of course, we still need a presentation (not to harp ;). -dave -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From thomas at stderr.net Fri Dec 28 22:01:43 2001 From: thomas at stderr.net (Thomas Eibner) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: ; from shamu112@yahoo.com on Fri, Dec 28, 2001 at 07:57:48PM -0600 References: Message-ID: <20011229050143.A10654@io.stderr.net> On Fri, Dec 28, 2001 at 07:57:48PM -0600, Shamu wrote: > Where are these meetings usually held? Since I've only been here for a half a year I can only talk about my experience from that, mostly the meetings with a speaker is held at Veritas and the beermeetings have been at Barley Johns. -- Thomas Eibner DnsZone mod_pointer -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message. From ken at mathforum.org Fri Dec 28 22:37:56 2001 From: ken at mathforum.org (Ken Williams) Date: Thu Aug 5 00:29:30 2004 Subject: [mplspm]: What next? In-Reply-To: <20011229050143.A10654@io.stderr.net> Message-ID: On Friday, December 28, 2001, at 10:01 PM, Thomas Eibner wrote: > Since I've only been here for a half a year I can only talk about my > experience from that, mostly the meetings with a speaker is held at > Veritas and the beermeetings have been at Barley Johns. The Dane is correct. =) We've lapsed a bit lately, letting meeting times go by without having meetings, but when we have them, that's usually where. -Ken -------------------------------------------------- Minneapolis Perl Mongers mailing list To unsubscribe, send mail to majordomo@pm.org with "unsubscribe mpls" in the body of the message.