From tony at metracom.com Wed Jun 10 23:35:20 2015 From: tony at metracom.com (Tony) Date: Wed, 10 Jun 2015 23:35:20 -0700 Subject: [Oc-pm] OC Perl Meeting Message-ID: <2472960.6ZJBj6Cn4Y@dell-server> The next OC Perl meeting will be on Monday June 29th @ 7pm. We have one presentation scheduled, and one available open slot. http://oc.pm.org See you all in a few weeks. Tony -------------- next part -------------- An HTML attachment was scrubbed... URL: From tony at metracom.com Sun Jun 28 15:26:25 2015 From: tony at metracom.com (Tony) Date: Sun, 28 Jun 2015 15:26:25 -0700 Subject: [Oc-pm] OC Perl meeting Monday, June 29th at 7pm Message-ID: <2005895.W9iXs7DyNZ@dell-server> OC Perl Mongers this is a reminder email that our monthly meeting is on Monday. See you all there. http://oc.pm.org Tony -------------- next part -------------- An HTML attachment was scrubbed... URL: From mvr707 at gmail.com Tue Jun 30 11:46:17 2015 From: mvr707 at gmail.com (Ramana V Mokkapati) Date: Tue, 30 Jun 2015 11:46:17 -0700 Subject: [Oc-pm] YAPC::NA 2015 Message-ID: Sharing a recap of the same topic from June meeting of OCPM. Key takeaways from my own perspective: 1) Perl 6 and Perl 5 are sister languages 2) Perl 5 - Actively supported (5.22 being latest) - Continues to evolve with "backward compatibility" in mind. - RapidApp (http://www.rapidapp.info/), Moose, Dancer2 are impressive frameworks that can be production worthy right NOW 3) Perl 6 - New kid on the block and it embraces procedural, OO and Functional styles, - Powerful tools for parsing - e.g. It has the ability to parse many existing languages in one pass. - Release 6.0.0 is slated for xmas 2015. 5) Perl 6 CAN run existing Perl 5 code - Inline::Perl5 is somewhat similar to Inline::C(PP) we use in Perl5 Slides reviewed: https://docs.google.com/presentation/d/1W8E2N-wV6BnjSo6mvaNXUH3Ird-N1FK42afYox64KZk/edit?usp=sharing -------------- next part -------------- An HTML attachment was scrubbed... URL: From bobmath11 at icloud.com Tue Jun 30 11:12:34 2015 From: bobmath11 at icloud.com (Bob Mathews) Date: Tue, 30 Jun 2015 11:12:34 -0700 Subject: [Oc-pm] graphviz Message-ID: <1A0BA6FC-9E86-437C-B6DE-70A51696CB0C@icloud.com> Graphviz is a lot of fun! Thanks for mentioning it, Ramana. This makes a map of the ?squared mod 11? function (2*2=4, 4*4=16, 16%11=5). I tweaked the location of one of the nodes, because the default starting location came out ugly. You can change all the colors and shapes, too. -bob use strict; use warnings; use GraphViz2; my $n = 11; my $g = GraphViz2->new(global => { directed => 1 }); $g->add_node(name => 6, pos => '100,100'); for my $i (0 .. $n-1) { my $j = ($i * $i) % $n; $g->add_edge(from => $i, to => $j); } $g->run(driver => 'neato', format => 'png', output_file => "$n.png"); -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: eleven.png Type: image/png Size: 14278 bytes Desc: not available URL: