From jay at jays.net Wed Mar 1 13:17:47 2006 From: jay at jays.net (Jay Hannah) Date: Wed, 01 Mar 2006 15:17:47 -0600 Subject: [Omaha.pm] Next BioPerl lab Message-ID: <44060F7B.6010806@jays.net> Kiran -- - Sat Mar 4 10:15-whenever @ RTU? - Sun Mar 5 whenever @ Panera Bread? j From jay at jays.net Wed Mar 1 13:26:41 2006 From: jay at jays.net (Jay Hannah) Date: Wed, 01 Mar 2006 15:26:41 -0600 Subject: [Omaha.pm] Next BioPerl lab In-Reply-To: <44060F7B.6010806@jays.net> References: <44060F7B.6010806@jays.net> Message-ID: <44061191.2050504@jays.net> Oops. Scratch that. RTU doesn't open till 4 on Saturdays. - Sat Mar 4 10:15-whenever @ Panera Bread Oakview? - Sun Mar 5 whenever @ Panera Bread Oakview? j Incidentally, I'll be attending the "NCBI Returns to UNO" seminar and lab: http://www.bioinformatics.unomaha.edu/ click Announcements From kiranbina at gmail.com Thu Mar 2 19:43:01 2006 From: kiranbina at gmail.com (Dr. Dhundy R. Bastola) Date: Thu, 2 Mar 2006 21:43:01 -0600 Subject: [Omaha.pm] Next BioPerl lab In-Reply-To: <44061191.2050504@jays.net> Message-ID: <4407bb5e.08a7e6f9.4ba4.ffffb89b@mx.gmail.com> Jay, Can we meet after 12 on Saturday. I have an appointment at 9 and I do not know if I will be out by 10:15am. Panera sounds great. I will be in St. Louis March 13-14. I believe our monthly meeting is on the 14th. Kiran -----Original Message----- From: omaha-pm-bounces+kiranbina=gmail.com at pm.org [mailto:omaha-pm-bounces+kiranbina=gmail.com at pm.org] On Behalf Of Jay Hannah Sent: Wednesday, March 01, 2006 3:27 PM To: Perl Mongers of Omaha, Nebraska USA Subject: Re: [Omaha.pm] Next BioPerl lab Oops. Scratch that. RTU doesn't open till 4 on Saturdays. - Sat Mar 4 10:15-whenever @ Panera Bread Oakview? - Sun Mar 5 whenever @ Panera Bread Oakview? j Incidentally, I'll be attending the "NCBI Returns to UNO" seminar and lab: http://www.bioinformatics.unomaha.edu/ click Announcements _______________________________________________ Omaha-pm mailing list Omaha-pm at pm.org http://mail.pm.org/mailman/listinfo/omaha-pm From jay at jays.net Fri Mar 3 07:49:48 2006 From: jay at jays.net (Jay Hannah) Date: Fri, 03 Mar 2006 09:49:48 -0600 Subject: [Omaha.pm] Next BioPerl lab In-Reply-To: <4407bb5e.08a7e6f9.4ba4.ffffb89b@mx.gmail.com> References: <4407bb5e.08a7e6f9.4ba4.ffffb89b@mx.gmail.com> Message-ID: <4408659C.9000405@jays.net> Dr. Dhundy R. Bastola wrote: > Can we meet after 12 on Saturday. - Sat Mar 4 1pm-whenever @ Panera Bread Oakview? j From kiranbina at gmail.com Fri Mar 3 16:25:55 2006 From: kiranbina at gmail.com (Dr. Dhundy R. Bastola) Date: Fri, 3 Mar 2006 18:25:55 -0600 Subject: [Omaha.pm] Next BioPerl lab In-Reply-To: <4408659C.9000405@jays.net> Message-ID: <4408deac.3d706965.6697.ffffea90@mx.gmail.com> Sounds good. Saturday March 4 at 1 pm . Oakview Panera. kiran -----Original Message----- From: omaha-pm-bounces+kiranbina=gmail.com at pm.org [mailto:omaha-pm-bounces+kiranbina=gmail.com at pm.org] On Behalf Of Jay Hannah Sent: Friday, March 03, 2006 9:50 AM To: Perl Mongers of Omaha, Nebraska USA Subject: Re: [Omaha.pm] Next BioPerl lab Dr. Dhundy R. Bastola wrote: > Can we meet after 12 on Saturday. - Sat Mar 4 1pm-whenever @ Panera Bread Oakview? j _______________________________________________ Omaha-pm mailing list Omaha-pm at pm.org http://mail.pm.org/mailman/listinfo/omaha-pm From jhannah at omnihotels.com Tue Mar 7 08:55:19 2006 From: jhannah at omnihotels.com (Jay Hannah) Date: Tue, 7 Mar 2006 10:55:19 -0600 Subject: [Omaha.pm] Strip last 15 chars off of every row of every file in a directory... Message-ID: <29AB736ABCE5C745ABF9C93B02F2C27B04432914@exchange2k3.omnihotels.net> Just got asked this question. Here's my untested response: perl -pi -e 's/.{15}$//' * Not bad for untested? -grin- j From jhannah at omnihotels.com Fri Mar 10 15:05:56 2006 From: jhannah at omnihotels.com (Jay Hannah) Date: Fri, 10 Mar 2006 17:05:56 -0600 Subject: [Omaha.pm] Next Meeting: Tuesday, March 14th 2006 @ 7pm! Message-ID: <29AB736ABCE5C745ABF9C93B02F2C27B04432955@exchange2k3.omnihotels.net> It's that time again. Come on out! See our homepage for location info: http://omaha.pm.org/ Next Meeting: Tuesday, March 14th 2006 @ 7pm! Any topic suggestions? Anyone struggling with anything right now (other than BioPerl -grin-)? Kiran and I spent 30 minutes or so in Template Toolkit creating this not-yet-a-homepage: http://kiran.homelinux.net:8080/BioPerlLab/?page=main And/or here's another Template Toolkit thing I did for my neighborhood: http://millardpark.org/ So maybe a Template Toolkit demo would be interesting? Advanced TT: https://ssl.omnihotels.com/Omni Meetings are sponsored by Paragon IT Professionals. Free food is good! j From jhannah at omnihotels.com Mon Mar 13 12:44:33 2006 From: jhannah at omnihotels.com (Jay Hannah) Date: Mon, 13 Mar 2006 14:44:33 -0600 Subject: [Omaha.pm] map {} one-liner that removes trailing spaces Message-ID: <29AB736ABCE5C745ABF9C93B02F2C27B0443296A@exchange2k3.omnihotels.net> (I'm still not a daily map user, but maybe I'm getting there?) perldoc -f map Answer: --------- map { s/\s+$// } @j; Demo code: --------- $ cat j.pl my @j = ("a ", "b ", "c "); print join "|", @j; print "\n"; map { s/\s+$// } @j; print join "|", @j; print "\n"; Demo run: --------- $ perl j.pl a |b |c a|b|c Cheers, j From andy at petdance.com Mon Mar 13 14:23:27 2006 From: andy at petdance.com (Andy Lester) Date: Mon, 13 Mar 2006 16:23:27 -0600 Subject: [Omaha.pm] map {} one-liner that removes trailing spaces In-Reply-To: <29AB736ABCE5C745ABF9C93B02F2C27B0443296A@exchange2k3.omnihotels.net> References: <29AB736ABCE5C745ABF9C93B02F2C27B0443296A@exchange2k3.omnihotels.net> Message-ID: > map { s/\s+$// } @j; map returns the list that it got done processing. If you're not using the result, then use for(). It's not an efficiency thing, although at one point it was. It's just more idiomatic. s/\s+$// for @j; > map { s/\s+$// } @j; > > print join "|", @j; > print "\n"; In your case, you could do this: print join( "|", map { s/\s+$// } @j ), "\n"; Note that in both cases, you're modifying the contents of @j. Modifying $_ in a loop like this modifies the original item. If you just wanted to capitalize things, you could do this: print join( "|", map { lc } @j ); That would leave the original contents of @j unmolested. -- Andy Lester => andy at petdance.com => www.petdance.com => AIM:petdance From jhannah at omnihotels.com Mon Mar 13 14:48:16 2006 From: jhannah at omnihotels.com (Jay Hannah) Date: Mon, 13 Mar 2006 16:48:16 -0600 Subject: [Omaha.pm] Sort an array of arrayrefs by one of the elements of each arrayref Message-ID: <29AB736ABCE5C745ABF9C93B02F2C27B04432973@exchange2k3.omnihotels.net> How's this for an (err... another) obscure sample program? Yes, I'm actually wresting this in real life today. :) j # Given an array of arrayrefs like so: my @x = ( [ 0,0,0, "blue" ], [ 1,1,1, "blue" ], [ 2,2,2, "yellow" ], [ 3,3,3, "yellow" ], [ 4,4,4, "yellow" ], [ 5,5,5, "red" ], [ 6,6,6, "red" ], ); # Sort those arrayrefs if the following (arbitrary) order: yellow, blue, red. # Solution: my @y = sort by_color_preference @x; sub by_color_preference { my %pref = ( yellow => 1, blue => 2, red => 3 ); # print $pref{$a->[3]} . " <=> " . $pref{$b->[3]} . "\n"; $pref{$a->[3]} <=> $pref{$b->[3]}; } From pterry2 at mac.com Wed Mar 15 16:48:22 2006 From: pterry2 at mac.com (philip terry) Date: Wed, 15 Mar 2006 16:48:22 -0800 Subject: [Omaha.pm] Mars and Google In-Reply-To: <16560077.1142470027173.JavaMail.bandricks@mac.com> References: <16560077.1142470027173.JavaMail.bandricks@mac.com> Message-ID: <1799970.1142470102883.JavaMail.pterry2@mac.com> Jay, A reference to Mars on Google. http://video.google.com/videoplay?docid=-1622667251598627943 M. Terry From dan at linder.org Wed Mar 15 21:29:53 2006 From: dan at linder.org (Daniel Linder) Date: Wed, 15 Mar 2006 23:29:53 -0600 (CST) Subject: [Omaha.pm] Mars and Google In-Reply-To: <1799970.1142470102883.JavaMail.pterry2@mac.com> References: <16560077.1142470027173.JavaMail.bandricks@mac.com> <1799970.1142470102883.JavaMail.pterry2@mac.com> Message-ID: <2076.68.13.86.85.1142486993.squirrel@mail.linder.org> On Wed, March 15, 2006 18:48, philip terry wrote: > Jay, > A reference to Mars on Google. > http://video.google.com/videoplay?docid=-1622667251598627943 > M. Terry wow..? So, when and where can I buy a sight-seeing ticket? :) Dan - - - - "Wait for that wisest of all counselors, time." -- Pericles "I do not fear computers, I fear the lack of them." -- Isaac Asimov "Soon we will be able to harness the rotational energy from Orwell's grave to solve all world energy problems." -- /. user GigsVT (208848) GPG fingerprint:6FFD DB94 7B96 0FD8 EADF 2EE0 B2B0 CC47 4FDE 9B68 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/omaha-pm/attachments/20060316/b966f49e/attachment.html From jhannah at omnihotels.com Tue Mar 21 08:08:24 2006 From: jhannah at omnihotels.com (Jay Hannah) Date: Tue, 21 Mar 2006 10:08:24 -0600 Subject: [Omaha.pm] Listen on a TCP port - NetServer::Generic Message-ID: <29AB736ABCE5C745ABF9C93B02F2C27B044329C9@exchange2k3.omnihotels.net> So our vendor is claiming that TCP connections from our network aren't reaching them on port 1022. We must be blocking our outbound connections in our firewall or something. Nope. Proved them wrong w/ Perl: -------- #!/usr/bin/perl use NetServer::Generic; use FileHandle; my ($foo) = new NetServer::Generic; $foo->port(1022); $foo->callback(\&dowork); $foo->hostname('razorbill'); $foo->mode("forking"); print "Starting server\n"; open (LOG, ">log.txt"); LOG->autoflush; $foo->run(); close LOG; sub dowork { my ($s) = shift; while (defined ($tmp = )) { print "You said: $tmp"; print LOG $tmp; } } -------- Launched that script out on a Linux server on the Internet, connected to it from our network, and watched it talk back to me. No problems on our side, vendor. :) Handy little gizmo, NetServer::Generic. j From jhannah at omnihotels.com Wed Mar 22 10:09:23 2006 From: jhannah at omnihotels.com (Jay Hannah) Date: Wed, 22 Mar 2006 12:09:23 -0600 Subject: [Omaha.pm] @_[1..$#_] is that evil? -laugh- Message-ID: <29AB736ABCE5C745ABF9C93B02F2C27B044329E6@exchange2k3.omnihotels.net> Wow. Is this readable? I think this is the first time in my life I've intentionally used $#_ (or any $#x for that matter...) sub set_rate_single { $_[0]->SUPER::set_rate_single($_[0]->rate_split_shrinker( @_[1..$#_])) } sub set_rate_double { $_[0]->SUPER::set_rate_double($_[0]->rate_split_shrinker( @_[1..$#_])) } sub set_rate_xperson { $_[0]->SUPER::set_rate_xperson($_[0]->rate_split_shrinker(@_[1..$#_])) } Should I make these each 5 liners instead? j The long way would be: sub set_rate_single { my ($self, @rates) = @_; my $result = $self->rate_split_shrinker(@rates); return $self->SUPER::set_rate_single($result); } ...ditto double ...ditto xperson From jhannah at omnihotels.com Wed Mar 22 10:11:23 2006 From: jhannah at omnihotels.com (Jay Hannah) Date: Wed, 22 Mar 2006 12:11:23 -0600 Subject: [Omaha.pm] @_[1..$#_] is that evil? -laugh- Message-ID: <29AB736ABCE5C745ABF9C93B02F2C27B044329E7@exchange2k3.omnihotels.net> By the way, I have 20 lines of POD explaining the purpose of those 3 lines of code. :) j > sub set_rate_single { > $_[0]->SUPER::set_rate_single($_[0]->rate_split_shrinker( > @_[1..$#_])) } > sub set_rate_double { > $_[0]->SUPER::set_rate_double($_[0]->rate_split_shrinker( > @_[1..$#_])) } > sub set_rate_xperson { > $_[0]->SUPER::set_rate_xperson($_[0]->rate_split_shrinker(@_[1 > ..$#_])) } boy, that's unreadable when it line wraps. Hopefully my first post didn't line wrap... From dan at linder.org Wed Mar 22 13:40:02 2006 From: dan at linder.org (Daniel Linder) Date: Wed, 22 Mar 2006 15:40:02 -0600 (CST) Subject: [Omaha.pm] @_[1..$#_] is that evil? -laugh- In-Reply-To: <29AB736ABCE5C745ABF9C93B02F2C27B044329E6@exchange2k3.omnihotels.net> References: <29AB736ABCE5C745ABF9C93B02F2C27B044329E6@exchange2k3.omnihotels.net> Message-ID: <44889.63.230.40.29.1143063602.squirrel@mail.linder.org> Jay wrote: > Should I make these each 5 liners instead? Whenever I ask myself that question I find that "yes" is the correct answer in the end. ;-) As nice as the single line solution is, are you going to be the one that will be the sole caretaker of this section of code until the day it dies --? the day _YOU_ die is not an option! :-) If not, do the others on your team have a similar comfort level with this code?? In general, I ask myself this question: "At 3:30 AM, will we be able to look at this code and understand it with minimal thought?" On the other hand, if this code is called a for each line in a million-row database lookup for each query, which one is faster?? That might be the key -- if so, you might want to put a comment in that readability was sacraficed for speed in this case. Dan On Wed, March 22, 2006 12:09, Jay Hannah wrote: > Wow. Is this readable? I think this is the first time in my life I've > intentionally used $#_ (or any $#x for that matter...) > > sub set_rate_single { > $_[0]->SUPER::set_rate_single($_[0]->rate_split_shrinker( @_[1..$#_])) } > sub set_rate_double { > $_[0]->SUPER::set_rate_double($_[0]->rate_split_shrinker( @_[1..$#_])) } > sub set_rate_xperson { > $_[0]->SUPER::set_rate_xperson($_[0]->rate_split_shrinker(@_[1..$#_])) } > > Should I make these each 5 liners instead? > > j > > > The long way would be: > > sub set_rate_single { > my ($self, @rates) = @_; > my $result = $self->rate_split_shrinker(@rates); > return $self->SUPER::set_rate_single($result); > } > ...ditto double > ...ditto xperson > > > _______________________________________________ > Omaha-pm mailing list > Omaha-pm at pm.org > http://mail.pm.org/mailman/listinfo/omaha-pm > - - - - "Wait for that wisest of all counselors, time." -- Pericles "I do not fear computers, I fear the lack of them." -- Isaac Asimov "Soon we will be able to harness the rotational energy from Orwell's grave to solve all world energy problems." -- /. user GigsVT (208848) GPG fingerprint:6FFD DB94 7B96 0FD8 EADF 2EE0 B2B0 CC47 4FDE 9B68 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/omaha-pm/attachments/20060322/1a3808b5/attachment.html From jhannah at omnihotels.com Fri Mar 24 08:43:41 2006 From: jhannah at omnihotels.com (Jay Hannah) Date: Fri, 24 Mar 2006 10:43:41 -0600 Subject: [Omaha.pm] Using || Message-ID: <29AB736ABCE5C745ABF9C93B02F2C27B04432A04@exchange2k3.omnihotels.net> Before > $room_type = $o_RS->determine_room_type($req_room_type); > if (!$room_type) { > $room_type = $o_RS->determine_room_type(); > } After $room_type = $o_RS->determine_room_type($req_room_type) || $o_RS->determine_room_type(); (As long as 0 isn't a valid value. -grin-) j From dutch at tconl.com Fri Mar 24 13:52:26 2006 From: dutch at tconl.com (Brian Edwards) Date: Fri, 24 Mar 2006 15:52:26 -0600 Subject: [Omaha.pm] Using || In-Reply-To: <29AB736ABCE5C745ABF9C93B02F2C27B04432A04@exchange2k3.omnihotels.net> References: <29AB736ABCE5C745ABF9C93B02F2C27B04432A04@exchange2k3.omnihotels.net> Message-ID: <200603241552.26139.dutch@tconl.com> short circuit is good j is correct - precedence counts what's more readable? $o_RS->determine_room_type($req_room_type) || $o_RS->determine_room_type(); $o_RS->determine_room_type($req_room_type) || $o_RS->determine_room_type(); $o_RS->determine_room_type($req_room_type) || $o_RS->determine_room_type(); hope they don't line wrap (1 \n after or) (2 \n before or) (3 \n after and indented 2 \x20) http://perldoc.perl.org/perlstyle.html dutch On Friday 24 March 2006 10:43 am, Jay Hannah wrote: > Before > > > $room_type = $o_RS->determine_room_type($req_room_type); > > if (!$room_type) { > > $room_type = $o_RS->determine_room_type(); > > } > > After > > $room_type = > $o_RS->determine_room_type($req_room_type) || > $o_RS->determine_room_type(); > > (As long as 0 isn't a valid value. -grin-) > > j > > _______________________________________________ > Omaha-pm mailing list > Omaha-pm at pm.org > http://mail.pm.org/mailman/listinfo/omaha-pm From jay at jays.net Mon Mar 27 03:12:02 2006 From: jay at jays.net (Jay Hannah) Date: Mon, 27 Mar 2006 05:12:02 -0600 Subject: [Omaha.pm] Using || In-Reply-To: <200603241552.26139.dutch@tconl.com> References: <29AB736ABCE5C745ABF9C93B02F2C27B04432A04@exchange2k3.omnihotels.net> <200603241552.26139.dutch@tconl.com> Message-ID: <4427C882.3040301@jays.net> Brian Edwards wrote: > what's more readable? > > $o_RS->determine_room_type($req_room_type) || > $o_RS->determine_room_type(); > > $o_RS->determine_room_type($req_room_type) > || $o_RS->determine_room_type(); > > $o_RS->determine_room_type($req_room_type) || > $o_RS->determine_room_type(); > > hope they don't line wrap > (1 \n after or) > (2 \n before or) > (3 \n after and indented 2 \x20) > > http://perldoc.perl.org/perlstyle.html Without context I vote for option 1. Perhaps perlstyle agrees with me under the "Line up corresponding items vertically" rule? j From jbisbee at gmail.com Mon Mar 27 03:45:56 2006 From: jbisbee at gmail.com (Jeff Bisbee) Date: Mon, 27 Mar 2006 06:45:56 -0500 Subject: [Omaha.pm] Using || In-Reply-To: <4427C882.3040301@jays.net> References: <29AB736ABCE5C745ABF9C93B02F2C27B04432A04@exchange2k3.omnihotels.net> <200603241552.26139.dutch@tconl.com> <4427C882.3040301@jays.net> Message-ID: <215CC227-2592-4F61-AD16-64654CDFBB5F@gmail.com> On Mar 27, 2006, at 6:12 AM, Jay Hannah wrote: >> $o_RS->determine_room_type($req_room_type) || >> $o_RS->determine_room_type(); I vote for option 4... :) $o_RS->determine_room_type($req_room_type) || $o_RS->determine_room_type(); Jeff Bisbee / jbisbee at gmail.com / jbisbee.com From griffinheart at go.com Tue Mar 28 13:26:58 2006 From: griffinheart at go.com (griffinheart@go.com) Date: Tue, 28 Mar 2006 21:26:58 +0000 (UTC) Subject: [Omaha.pm] New to Perl-ing Message-ID: <22004026.1143581218434.JavaMail.?@fh095.dia.cp.net> Greetings all. I'm new to Perl and somewhat new to programming in general. I'm working on a compression program and believe I have the theory behind it worked out. I was wondering, however, whether Perl could support the extended ASCII chart (256 symbols) or not. If Perl can't, I might have to find a new language to do what I'm trying. Thanks for your time Griffinheart From tedkat at gmail.com Wed Mar 29 06:21:11 2006 From: tedkat at gmail.com (Theodore Katseres) Date: Wed, 29 Mar 2006 08:21:11 -0600 Subject: [Omaha.pm] New to Perl-ing In-Reply-To: <22004026.1143581218434.JavaMail.?@fh095.dia.cp.net> References: <22004026.1143581218434.JavaMail.?@fh095.dia.cp.net> Message-ID: On 3/28/06, griffinheart at go.com wrote: > Greetings all. > > I'm new to Perl and somewhat new to programming in general. > > I'm working on a compression program and believe I have the theory > behind it worked out. > > I was wondering, however, whether Perl could support the extended > ASCII chart (256 symbols) or not. Encode::Byte http://perldoc.perl.org/Encode/Supported.html > If Perl can't, I might have to find a new language to do what I'm > trying. Perl can. -- Ted Katseres ||=O=|| From jay at jays.net Wed Mar 29 18:29:48 2006 From: jay at jays.net (Jay Hannah) Date: Wed, 29 Mar 2006 20:29:48 -0600 Subject: [Omaha.pm] New to Perl-ing In-Reply-To: References: <22004026.1143581218434.JavaMail.?@fh095.dia.cp.net> Message-ID: <442B429C.4010508@jays.net> Theodore Katseres wrote: > On 3/28/06, griffinheart at go.com wrote: >> I was wondering, however, whether Perl could support the extended >> ASCII chart (256 symbols) or not. > > Encode::Byte > http://perldoc.perl.org/Encode/Supported.html > >> If Perl can't, I might have to find a new language to do what I'm >> trying. > > Perl can. Yes, I think you'll be very happy w/ Perl when it comes to text processing. It handles extended ASCII and Unicode natively. If you have questions/problems don't hesitate to ask! Welcome to the Omaha Perl Mongers! http://perldoc.perl.org/index-functions-by-cat.html "Functions for SCALARs or strings" j From jay at jays.net Wed Mar 29 19:03:25 2006 From: jay at jays.net (Jay Hannah) Date: Wed, 29 Mar 2006 21:03:25 -0600 Subject: [Omaha.pm] [Fwd: Newsletter from O'Reilly UG Program, March 27] Message-ID: <442B4A7D.90907@jays.net> Snipped for Perl content: ***Intermediate Perl Publisher: O'Reilly ISBN: 0596102062 Perl programmers need a clear roadmap for improving their skills. "Intermediate Perl" teaches a working knowledge of Perl's objects, references, and modules--all of which make the language so versatile and effective. Written by the authors of the bestselling Llama book, "Learning Perl," this guide offers a gentle but thorough introduction to intermediate programming in Perl. Topics include packages and namespaces, references and scoping, manipulating complex data structures, writing and using modules, package implementation, and using CPAN. Cheers, j From griffinheart at go.com Wed Mar 29 22:25:55 2006 From: griffinheart at go.com (griffinheart@go.com) Date: Thu, 30 Mar 2006 06:25:55 +0000 (UTC) Subject: [Omaha.pm] Meetings and Library Message-ID: <3474068.1143699955896.JavaMail.?@fh064.dia.cp.net> When does the group hold meetings? I saw the location but not the time. Additionally, I saw the group had a "Perl library." Would I be able to borrow some introductory Perl books? Gratitudes, Griffinheart From andy at petdance.com Wed Mar 29 22:41:57 2006 From: andy at petdance.com (Andy Lester) Date: Thu, 30 Mar 2006 00:41:57 -0600 Subject: [Omaha.pm] Meetings and Library In-Reply-To: <3474068.1143699955896.JavaMail.?@fh064.dia.cp.net> References: <3474068.1143699955896.JavaMail.?@fh064.dia.cp.net> Message-ID: <14E4480A-088C-4023-A9D6-5415ABE0C077@petdance.com> On Mar 30, 2006, at 12:25 AM, griffinheart at go.com wrote: > When does the group hold meetings? I saw the location but not the > time. Also, do you guys just meet, or have talks? I'd love to come out and talk to the group. Andy -- Andy Lester => andy at petdance.com => www.petdance.com => AIM:petdance From jhannah at omnihotels.com Fri Mar 31 10:18:41 2006 From: jhannah at omnihotels.com (Jay Hannah) Date: Fri, 31 Mar 2006 12:18:41 -0600 Subject: [Omaha.pm] I am such a geek. Message-ID: <29AB736ABCE5C745ABF9C93B02F2C27B04432A64@exchange2k3.omnihotels.net> lol... I amuse me. Read this thread bottom up. Sorry. j P.S. Yes, top posting is evil. Read why, then make the world a better place, one inline reply at a time. http://en.wikipedia.org/wiki/Top-posting -----Original Message----- From: Kenneth Thompson Sent: Thursday, March 30, 2006 2:48 PM To: Jay Hannah Subject: RE: Cron /bin/echo test You perl guys! -----Original Message----- From: Jay Hannah Sent: Thursday, March 30, 2006 2:41 PM To: Kenneth Thompson Subject: RE: Cron /bin/echo test use Omni::Humor; my $joke = Omni::Humor->new; $dispatch->send( messsage => $joke->fictional_core_classes, to => $dispatch->short_timers ); > -----Original Message----- > From: Kenneth Thompson > Sent: Thursday, March 30, 2006 2:39 PM > To: Jay Hannah > Subject: RE: Cron /bin/echo test > > That catches stdout stuff from cron? > > -----Original Message----- > From: Jay Hannah > Sent: Thursday, March 30, 2006 2:38 PM > To: Kenneth Thompson > Subject: RE: Cron /bin/echo test > > > use Omni::Email; > my $dispatch = Omni::Email->new; > $dispatch->redirect( > message => $msg, > to => $dispatch->whoever_cares > ); > > > > -----Original Message----- > > From: Kenneth Thompson > > Sent: Thursday, March 30, 2006 2:28 PM > > To: Jay Hannah > > Subject: RE: Cron /bin/echo test > > > > Checking that errors from grl will go to someone who cares. > > It's still running under my cron, so I set a .forward just in case. > > From jhannah at omnihotels.com Fri Mar 31 10:25:36 2006 From: jhannah at omnihotels.com (Jay Hannah) Date: Fri, 31 Mar 2006 12:25:36 -0600 Subject: [Omaha.pm] I am such a geek #2 Message-ID: <29AB736ABCE5C745ABF9C93B02F2C27B04432A66@exchange2k3.omnihotels.net> Wow. Another one. Am I evolving or devolving? Grin, j -----Original Message----- From: Jay Hannah Sent: Friday, March 31, 2006 12:24 PM To: Richard Tudgay Subject: RE: Call me about SNA From: Richard Tudgay > HIS Trip in April What's SNA? j http://www.acronymattic.com/results.aspx?q=sna SNA System of National Accounts ***** SNA System Network Architecture ***** SNA Syndicat National **** SNA Saba Netherlands Antilles **** SNA Student Nurses Association **** SNA State Natural Area **** SNA Sub Network Access **** SNA Sine Nomine Associates **** SNA Sistema Nacional **** SNA Sindacato Nazionale Agenti **** SNA Sympathetic Nerve Activity *** SNA Somali National Alliance *** SNA Sveriges Nationalatlas *** SNA Singapore Nurses Association *** SNA S Network Architecture *** SNA Special Needs Assistant *** SNA Support NetWare *** SNA Supporting National *** SNA Servicio Nacional *** SNA Symantec Norton Antivirus *** SNA State Nurses Associations *** SNA Scientific and Natural Area *** SNA Scientific and Natural Areas *** SNA Suburban Newspapers of America *** SNA Student Nurse Association *** SNA Supercomputing in Nuclear Applications *** SNA State Natural Areas *** SNA Sikh Naujawan Academy *** SNA Safety Net Assistance *** SNA Special Needs Assistants *** SNA Sandnessjoen Norway *** SNA Shrine of North America *** SNA Social Networking Applications *** SNA Significant Natural Areas *** SNA Sangeet Natak Akademi *** SNA Studiul National *** SNA Seldovia Native Association *** SNA Society of North America *** SNA Significant National *** SNA Scalar Network Analyzer ** SNA Sacramento Network Access ** SNA Statement of Non availability ** SNA Security Network of America ** SNA Special Network Access ** SNA Simple Network Architecture ** SNA Systems and Network Administration ** SNA Society of Naval Architects ** SNA System Network Administrator ** SNA Suong Nguyet Anh ** SNA Sinus Node Artery ** SNA spanish north africa ** SNA Sheffield Neighborhood Association ** SNA Systems Network Administration ** SNA Safety Net Adjustment ** SNA State Nursing Associations ** SNA Student Naval Aviators ** SNA Satellite Navigation Applications ** SNA School Nurse Association ** SNA Spence Neighbourhood Association ** SNA SchoolNet Namibia ** SNA Spence Neighborhood Association ** SNA Servite Nostrum Animus ** SNA Software Network Architecture ** SNA System Network Administrators ** SNA Sociedad Nacional Agraria ** SNA SPX NetBIOS AppleTalk ** SNA statements of non availability ** SNA Swiss Narcolepsy Association ** SNA Switch Network Application ** SNA Southport Neighbors Association ** SNA Somalia National Alliance ** SNA State Nodal Agencies ** SNA Streamlined Network Accelerated ** SNA Sangeet Natak Academy ** SNA Simon N Anthony ** SNA Strategic Nuclear Arms ** SNA Special Needs Alliance ** SNA Service National Actif ** SNA Salomon North America ** SNA Secretariado Nacional ** SNA Systems and Network Architecture ** SNA Sambucus Nigra Agglutinin * SNA Sierra Nevada Alliance * SNA Student Nurse Associations * SNA Studies in Numerical Analysis * SNA Services Northland * SNA Short Number Addressing * SNA Smithsonian National Air * SNA System Networks Architecture * SNA SEBAL North America * SNA Swaziland Nurses Association * SNA System Network Architekture * SNA Saturday Night Alternative * SNA Secretaria Nacional Antidrogas * SNA Sheet Non Adhesive * SNA Skiing in North America * SNA Stichting Neptune Association * SNA Stock for 4 No Account * SNA Summit Neighborhood Association * SNA Saturday Night Assault * SNA Swaziland National Association * SNA System on National Accounts * SNA Satellite Navigation Application * SNA straight nipple a * SNA System for Nuclear Auxiliary * SNA Saldo No Ajustado * SNA Saturday Night Adventures * SNA Selected National Account * SNA Slovenian National Assembly * SNA Sree Narayana Association * SNA Student Nursing Assistant * SNA Scala North America * SNA Shaping Network Assembly * SNA South Naknek Alaska * SNA Save Newstead Abbey * SNA Sedgwick North America * SNA Significance to Native Americans * SNA Significant New Allegations * SNA Sonoma Narcotics Anonymous * SNA South Nilandhe Atoll * SNA Spatial Network Analysis * SNA Species Native to the Area * SNA Steinberg North America * SNA Stulz of North America * SNA Sweden Nerikes Allehanda * SNA Swing Net America * SNA System for the North Atlantic * SNA Szeto Nigel Autobiography