From jacklupton at gmail.com Wed Mar 11 12:22:26 2015 From: jacklupton at gmail.com (Jack Lupton) Date: Wed, 11 Mar 2015 14:22:26 -0500 Subject: APM: questions about Perl, Apache, local::lib setup on Centos 6.4 Message-ID: Respected Perl Mongers, For some time I've been installing local::lib and PerlBrew to my home directory. This allows me to install whatever Perl I want to use without the restrictions of the system Perl. I'm using PearlBee - https://github.com/Perl-Evozon/PearlBee - for blogging software and running plack to serve it up. I'm the only one perusing the web site. I'm getting ready to some more serious work and would like to use Apache2. My questions are: how do make my local::lib available to the pages being served by apache, and do I install local::lib to the directory in Apache? Is there a secure way to still serve the web site from my home directory with Apache? TIA for insight or reference to relevant documentation. Jack Lupton PS, I need to get PearlBee working with WordPress themes. Seems very similar to what is being done with the Austin Perl Mongers website. Anyone up for special sessions of APM on this subject? -------------- next part -------------- An HTML attachment was scrubbed... URL: From william.braswell at autoparallel.com Wed Mar 11 20:09:53 2015 From: william.braswell at autoparallel.com (William N. Braswell, Jr.) Date: Wed, 11 Mar 2015 22:09:53 -0500 Subject: APM: questions about Perl, Apache, local::lib setup on Centos 6.4 In-Reply-To: Message-ID: <20150312030953.AD0DFE047E@smtp.hushmail.com> Hi Jack, We use ShinyCMS on Catalyst on Apache2 on Ubuntu. There may be some useful info for you in my LAMP University install notes document, starting around line 428: https://github.com/wbraswell/lampuniversity.org/blob/master/docs/LAMP_install_notes.txt Note the sections of that Apache2 site config file. I use local::lib to install Shiny/Catalyst as my non-root user 'wbraswell', then chown the '/home/wbraswell/public_html' directory for Apache use, then set the above-linked Apache config file to find everything needed in the home directory. As for Wordpress, we barely have the time to handle our existing Shiny/Catalyst site, so personally I'll have to pass on anything extra right now. Hope this helps! Perling,~ Will the ChillAustin.pm Prez On 3/11/2015 at 2:23 PM, "Jack Lupton" wrote:Respected Perl Mongers, For some time I've been installing local::lib and PerlBrew to my home directory. This allows me to install whatever Perl I want to use without the restrictions of the system Perl. I'm using PearlBee - https://github.com/Perl-Evozon/PearlBee - for blogging software and running plack to serve it up. I'm the only one perusing the web site. I'm getting ready to some more serious work and would like to use Apache2. My questions are: how do make my local::lib available to the pages being served by apache, and do I install local::lib to the directory in Apache? Is there a secure way to still serve the web site from my home directory with Apache? TIA for insight or reference to relevant documentation. Jack Lupton PS, I need to get PearlBee working with WordPress themes. Seems very similar to what is being done with the Austin Perl Mongers website. Anyone up for special sessions of APM on this subject? -------------- next part -------------- An HTML attachment was scrubbed... URL: From jacklupton at gmail.com Wed Mar 11 21:34:56 2015 From: jacklupton at gmail.com (Jack Lupton) Date: Wed, 11 Mar 2015 23:34:56 -0500 Subject: APM: questions about Perl, Apache, local::lib setup on Centos 6.4 In-Reply-To: <20150312030953.AD0DFE047E@smtp.hushmail.com> References: <20150312030953.AD0DFE047E@smtp.hushmail.com> Message-ID: Yes, that makes sense. Just the jump start I needed. On Wed, Mar 11, 2015 at 10:09 PM, William N. Braswell, Jr. < william.braswell at autoparallel.com> wrote: > Hi Jack, > > We use ShinyCMS on Catalyst on Apache2 on Ubuntu. > > There may be some useful info for you in my LAMP University install notes > document, starting around line 428: > > > https://github.com/wbraswell/lampuniversity.org/blob/master/docs/LAMP_install_notes.txt > > Note the sections of that Apache2 site config file. > > I use local::lib to install Shiny/Catalyst as my non-root user > 'wbraswell', then chown the '/home/wbraswell/public_html' directory for > Apache use, then set the above-linked Apache config file to find everything > needed in the home directory. > > As for Wordpress, we barely have the time to handle our existing > Shiny/Catalyst site, so personally I'll have to pass on anything extra > right now. > > Hope this helps! > > Perling, > ~ Will the Chill > Austin.pm Prez > > > On 3/11/2015 at 2:23 PM, "Jack Lupton" wrote: > > Respected Perl Mongers, > > For some time I've been installing local::lib and PerlBrew to my home > directory. This allows me to install whatever Perl I want to use without > the > restrictions of the system Perl. I'm using PearlBee - > https://github.com/Perl-Evozon/PearlBee - for blogging software and > running plack to serve it up. I'm the only one perusing the web site. > > I'm getting ready to some more serious work and would like to use Apache2. > My > questions are: how do make my local::lib available to the pages being > served by > apache, and do I install local::lib to the directory in Apache? Is there a > secure way to still serve the web site from my home directory with Apache? > > TIA for insight or reference to relevant documentation. > Jack Lupton > > PS, I need to get PearlBee working with WordPress themes. Seems very > similar to what is being done with the Austin Perl Mongers website. Anyone > up for special sessions of APM on this subject? > > > _______________________________________________ > Austin mailing list > Austin at pm.org > http://mail.pm.org/mailman/listinfo/austin > -------------- next part -------------- An HTML attachment was scrubbed... URL: From andrew at geekuni.com Fri Mar 13 06:57:51 2015 From: andrew at geekuni.com (Andrew Solomon) Date: Fri, 13 Mar 2015 13:57:51 +0000 Subject: APM: questions about Perl, Apache, local::lib setup on Centos 6.4 In-Reply-To: References: <20150312030953.AD0DFE047E@smtp.hushmail.com> Message-ID: Hi Jack You might want to consider using Nginx rather than Apache2 - my own experience is that Nginx is easier. It's also worth using Plack so that - from the viewpoint of your code it doesn't matter whether you're using Apache2, Nginx or anything else (in principle). http://plackperl.org/ https://www.youtube.com/watch?v=qdCmQJCaT0c ... just food for thought:) Andrew On Thu, Mar 12, 2015 at 4:34 AM, Jack Lupton wrote: > Yes, that makes sense. Just the jump start I needed. > > On Wed, Mar 11, 2015 at 10:09 PM, William N. Braswell, Jr. < > william.braswell at autoparallel.com> wrote: > >> Hi Jack, >> >> We use ShinyCMS on Catalyst on Apache2 on Ubuntu. >> >> There may be some useful info for you in my LAMP University install notes >> document, starting around line 428: >> >> >> https://github.com/wbraswell/lampuniversity.org/blob/master/docs/LAMP_install_notes.txt >> >> Note the sections of that Apache2 site config file. >> >> I use local::lib to install Shiny/Catalyst as my non-root user >> 'wbraswell', then chown the '/home/wbraswell/public_html' directory for >> Apache use, then set the above-linked Apache config file to find everything >> needed in the home directory. >> >> As for Wordpress, we barely have the time to handle our existing >> Shiny/Catalyst site, so personally I'll have to pass on anything extra >> right now. >> >> Hope this helps! >> >> Perling, >> ~ Will the Chill >> Austin.pm Prez >> >> >> On 3/11/2015 at 2:23 PM, "Jack Lupton" wrote: >> >> Respected Perl Mongers, >> >> For some time I've been installing local::lib and PerlBrew to my home >> directory. This allows me to install whatever Perl I want to use without >> the >> restrictions of the system Perl. I'm using PearlBee - >> https://github.com/Perl-Evozon/PearlBee - for blogging software and >> running plack to serve it up. I'm the only one perusing the web site. >> >> I'm getting ready to some more serious work and would like to use >> Apache2. My >> questions are: how do make my local::lib available to the pages being >> served by >> apache, and do I install local::lib to the directory in Apache? Is there >> a secure way to still serve the web site from my home directory with Apache? >> >> TIA for insight or reference to relevant documentation. >> Jack Lupton >> >> PS, I need to get PearlBee working with WordPress themes. Seems very >> similar to what is being done with the Austin Perl Mongers website. Anyone >> up for special sessions of APM on this subject? >> >> >> _______________________________________________ >> Austin mailing list >> Austin at pm.org >> http://mail.pm.org/mailman/listinfo/austin >> > > > _______________________________________________ > Austin mailing list > Austin at pm.org > http://mail.pm.org/mailman/listinfo/austin > -- Andrew Solomon Mentor at Geekuni http://geekuni.com/ http://www.linkedin.com/in/asolomon -------------- next part -------------- An HTML attachment was scrubbed... URL: From jacklupton at gmail.com Fri Mar 13 19:44:55 2015 From: jacklupton at gmail.com (Jack Lupton) Date: Fri, 13 Mar 2015 21:44:55 -0500 Subject: APM: questions about Perl, Apache, local::lib setup on Centos 6.4 In-Reply-To: References: <20150312030953.AD0DFE047E@smtp.hushmail.com> Message-ID: Thanks, Andrew. I gravitate toward Apache because I'm so familiar with it. However, that is mostly from the CGI way of doing things. I'll check out the links you sent. On Fri, Mar 13, 2015 at 8:57 AM, Andrew Solomon wrote: > Hi Jack > > You might want to consider using Nginx rather than Apache2 - my own > experience is that Nginx is easier. It's also worth using Plack so that - > from the viewpoint of your code it doesn't matter whether you're using > Apache2, Nginx or anything else (in principle). > > http://plackperl.org/ > https://www.youtube.com/watch?v=qdCmQJCaT0c > > ... just food for thought:) > > Andrew > > > > On Thu, Mar 12, 2015 at 4:34 AM, Jack Lupton wrote: > >> Yes, that makes sense. Just the jump start I needed. >> >> On Wed, Mar 11, 2015 at 10:09 PM, William N. Braswell, Jr. < >> william.braswell at autoparallel.com> wrote: >> >>> Hi Jack, >>> >>> We use ShinyCMS on Catalyst on Apache2 on Ubuntu. >>> >>> There may be some useful info for you in my LAMP University install >>> notes document, starting around line 428: >>> >>> >>> https://github.com/wbraswell/lampuniversity.org/blob/master/docs/LAMP_install_notes.txt >>> >>> Note the sections of that Apache2 site config file. >>> >>> I use local::lib to install Shiny/Catalyst as my non-root user >>> 'wbraswell', then chown the '/home/wbraswell/public_html' directory for >>> Apache use, then set the above-linked Apache config file to find everything >>> needed in the home directory. >>> >>> As for Wordpress, we barely have the time to handle our existing >>> Shiny/Catalyst site, so personally I'll have to pass on anything extra >>> right now. >>> >>> Hope this helps! >>> >>> Perling, >>> ~ Will the Chill >>> Austin.pm Prez >>> >>> >>> On 3/11/2015 at 2:23 PM, "Jack Lupton" wrote: >>> >>> Respected Perl Mongers, >>> >>> For some time I've been installing local::lib and PerlBrew to my home >>> directory. This allows me to install whatever Perl I want to use without >>> the >>> restrictions of the system Perl. I'm using PearlBee - >>> https://github.com/Perl-Evozon/PearlBee - for blogging software and >>> running plack to serve it up. I'm the only one perusing the web site. >>> >>> I'm getting ready to some more serious work and would like to use >>> Apache2. My >>> questions are: how do make my local::lib available to the pages being >>> served by >>> apache, and do I install local::lib to the directory in Apache? Is there >>> a secure way to still serve the web site from my home directory with Apache? >>> >>> TIA for insight or reference to relevant documentation. >>> Jack Lupton >>> >>> PS, I need to get PearlBee working with WordPress themes. Seems very >>> similar to what is being done with the Austin Perl Mongers website. Anyone >>> up for special sessions of APM on this subject? >>> >>> >>> _______________________________________________ >>> Austin mailing list >>> Austin at pm.org >>> http://mail.pm.org/mailman/listinfo/austin >>> >> >> >> _______________________________________________ >> Austin mailing list >> Austin at pm.org >> http://mail.pm.org/mailman/listinfo/austin >> > > > > -- > Andrew Solomon > > Mentor at Geekuni http://geekuni.com/ > http://www.linkedin.com/in/asolomon > -------------- next part -------------- An HTML attachment was scrubbed... URL: From william.braswell at autoparallel.com Sat Mar 14 10:35:56 2015 From: william.braswell at autoparallel.com (William N. Braswell, Jr.) Date: Sat, 14 Mar 2015 12:35:56 -0500 Subject: APM: questions about Perl, Apache, local::lib setup on Centos 6.4 In-Reply-To: References: <20150312030953.AD0DFE047E@smtp.hushmail.com> Message-ID: <20150314173556.D5D35A016B@smtp.hushmail.com> Hi Jack, I forgot to mention that I use FastCGI instead of mod_perl whenever possible. It is much faster and helps keep Apache more stable. You will see various FastCGI commands and comments throughout the LAMP University document I linked in my previous message. Perling,~ Will the ChillAustin.pm Prez On 3/13/2015 at 9:45 PM, "Jack Lupton" wrote:Thanks, Andrew. I gravitate toward Apache because I'm so familiar with it. However, that is mostly from the CGI way of doing things. I'll check out the links you sent. On Fri, Mar 13, 2015 at 8:57 AM, Andrew Solomon wrote: Hi Jack You might want to consider using Nginx rather than Apache2 - my own experience is that Nginx is easier. It's also worth using Plack so that - from the viewpoint of your code it doesn't matter whether you're using Apache2, Nginx or anything else (in principle). http://plackperl.org/ https://www.youtube.com/watch?v=qdCmQJCaT0c ... just food for thought:) Andrew On Thu, Mar 12, 2015 at 4:34 AM, Jack Lupton wrote: Yes, that makes sense. Just the jump start I needed. On Wed, Mar 11, 2015 at 10:09 PM, William N. Braswell, Jr. wrote: Hi Jack, We use ShinyCMS on Catalyst on Apache2 on Ubuntu. There may be some useful info for you in my LAMP University install notes document, starting around line 428: https://github.com/wbraswell/lampuniversity.org/blob/master/docs/LAMP_install_notes.txt Note the sections of that Apache2 site config file. I use local::lib to install Shiny/Catalyst as my non-root user 'wbraswell', then chown the '/home/wbraswell/public_html' directory for Apache use, then set the above-linked Apache config file to find everything needed in the home directory. As for Wordpress, we barely have the time to handle our existing Shiny/Catalyst site, so personally I'll have to pass on anything extra right now. Hope this helps! Perling,~ Will the ChillAustin.pm Prez On 3/11/2015 at 2:23 PM, "Jack Lupton" wrote:Respected Perl Mongers, For some time I've been installing local::lib and PerlBrew to my home directory. This allows me to install whatever Perl I want to use without the restrictions of the system Perl. I'm using PearlBee - https://github.com/Perl-Evozon/PearlBee - for blogging software and running plack to serve it up. I'm the only one perusing the web site. I'm getting ready to some more serious work and would like to use Apache2. My questions are: how do make my local::lib available to the pages being served by apache, and do I install local::lib to the directory in Apache? Is there a secure way to still serve the web site from my home directory with Apache? TIA for insight or reference to relevant documentation. Jack Lupton PS, I need to get PearlBee working with WordPress themes. Seems very similar to what is being done with the Austin Perl Mongers website. Anyone up for special sessions of APM on this subject? _______________________________________________ Austin mailing list Austin at pm.org http://mail.pm.org/mailman/listinfo/austin _______________________________________________ Austin mailing list Austin at pm.org http://mail.pm.org/mailman/listinfo/austin -- Andrew Solomon Mentor at Geekuni http://geekuni.com/http://www.linkedin.com/in/asolomon -------------- next part -------------- An HTML attachment was scrubbed... URL: From jjn1056 at yahoo.com Sat Mar 14 16:49:01 2015 From: jjn1056 at yahoo.com (John Napiorkowski) Date: Sat, 14 Mar 2015 23:49:01 +0000 (UTC) Subject: APM: questions about Perl, Apache, local::lib setup on Centos 6.4 In-Reply-To: <20150314173556.D5D35A016B@smtp.hushmail.com> References: <20150314173556.D5D35A016B@smtp.hushmail.com> Message-ID: <65710885.6767533.1426376941366.JavaMail.yahoo@mail.yahoo.com> I would go as far as to say that mod_perl should be shunned whenever possible. ?It was a great idea at the time, but it leads to applications that tend to be hard to upgrade and?change over time. ?Every company that I know of that used mod_perl got stuck on whatever version of Perl and Apache they started with on day 1 (and often whatever CPAN modules they had on day 1 as well.? best of Luck On Saturday, March 14, 2015 12:36 PM, "William N. Braswell, Jr." wrote: Hi Jack, I forgot to mention that I use FastCGI instead of mod_perl whenever possible. ?It is much faster and helps keep Apache more stable. You will see various FastCGI commands and comments throughout the LAMP University document I linked in my previous message. Perling,~ Will the ChillAustin.pm Prez On 3/13/2015 at 9:45 PM, "Jack Lupton" wrote: Thanks, Andrew. I gravitate toward Apache because I'm so familiar with it. However, that is mostly from the CGI way of doing things. I'll check out the links you sent. On Fri, Mar 13, 2015 at 8:57 AM, Andrew Solomon wrote: Hi Jack You might want to consider using Nginx rather than Apache2 - my own experience is that Nginx is easier. It's also worth using Plack so that - from the viewpoint of your code it doesn't matter whether you're using Apache2, Nginx or anything else (in principle). http://plackperl.org/ https://www.youtube.com/watch?v=qdCmQJCaT0c ... just food for thought:) Andrew On Thu, Mar 12, 2015 at 4:34 AM, Jack Lupton wrote: Yes, that makes sense. Just the jump start I needed. On Wed, Mar 11, 2015 at 10:09 PM, William N. Braswell, Jr. wrote: Hi Jack, We use ShinyCMS on Catalyst on Apache2 on Ubuntu. There may be some useful info for you in my LAMP University install notes document, starting around line 428: https://github.com/wbraswell/lampuniversity.org/blob/master/docs/LAMP_install_notes.txt Note the sections of that Apache2 site config file. I use local::lib to install Shiny/Catalyst as my non-root user 'wbraswell', then chown the '/home/wbraswell/public_html' directory for Apache use, then set the above-linked Apache config file to find everything needed in the home directory. As for Wordpress, we barely have the time to handle our existing Shiny/Catalyst site, so personally I'll have to pass on anything extra right now. Hope this helps! Perling,~ Will the ChillAustin.pm Prez On 3/11/2015 at 2:23 PM, "Jack Lupton" wrote: Respected Perl Mongers, For some time I've been installing local::lib and PerlBrew to my home directory. This allows me to install whatever Perl I want to use without the restrictions of the system Perl. I'm using PearlBee - https://github.com/Perl-Evozon/PearlBee - for blogging software and running plack to serve it up. I'm the only one perusing the web site. I'm getting ready to some more serious work and would like to use Apache2. My questions are: how do make my local::lib available to the pages being served by apache, and do I install local::lib to the directory in Apache? Is there a secure way to still serve the web site from my home directory with Apache? TIA for insight or reference to relevant documentation. Jack Lupton PS, I need to get PearlBee working with WordPress themes. Seems very similar to what is being done with the Austin Perl Mongers website. Anyone up for special sessions of APM on this subject? _______________________________________________ Austin mailing list Austin at pm.org http://mail.pm.org/mailman/listinfo/austin _______________________________________________ Austin mailing list Austin at pm.org http://mail.pm.org/mailman/listinfo/austin -- Andrew Solomon Mentor at Geekuni?http://geekuni.com/http://www.linkedin.com/in/asolomon _______________________________________________ Austin mailing list Austin at pm.org http://mail.pm.org/mailman/listinfo/austin -------------- next part -------------- An HTML attachment was scrubbed... URL: From william.braswell at autoparallel.com Thu Mar 19 12:40:04 2015 From: william.braswell at autoparallel.com (William N. Braswell, Jr.) Date: Thu, 19 Mar 2015 14:40:04 -0500 Subject: APM: Tonight's Meeting Postponed Until Next Thurs 3/26 Message-ID: <20150319194005.261C3E04A0@smtp.hushmail.com> Howdy Mongers, Sorry for the relatively late notice, tonight's meeting will be postponed for one week, we'll meet at the same time and place next Thursday instead: Thursday March 26th7:00pm - 8:00pmHostgator HQ2500 Ridgepoint Dr, Austin, TX I hope to see you there! Perling,~ Will the Chill, Austin.pm Prez -------------- next part -------------- An HTML attachment was scrubbed... URL: From william.braswell at autoparallel.com Thu Mar 19 13:13:02 2015 From: william.braswell at autoparallel.com (William N. Braswell, Jr.) Date: Thu, 19 Mar 2015 15:13:02 -0500 Subject: APM: CORRECTION: Tonight's Meeting Still On Message-ID: <20150319201302.B30B6E04A0@smtp.hushmail.com> Howdy Mongers, Sorry for the runaround, Jonathan from Hostgator has stepped up to give a presentation at tonight's meeting, so we will NOT need to reschedule to next week, we will keep tonight's regular meeting as planned: 2 Years Of Moose, A Retrospective, Part 1Thursday March 19th7:00pm - 8:00pmHostgator HQ2500 Ridgepoint Dr, Austin, TX I'll miss y'all, see you next time! Perling,~ Will the Chill, Austin.pm Prez -------------- next part -------------- An HTML attachment was scrubbed... URL: From jonathantaylor at hostgator.com Thu Mar 19 14:06:39 2015 From: jonathantaylor at hostgator.com (Jonathan Taylor) Date: Thu, 19 Mar 2015 16:06:39 -0500 Subject: APM: CORRECTION: Tonight's Meeting Still On In-Reply-To: <20150319201302.B30B6E04A0@smtp.hushmail.com> References: <20150319201302.B30B6E04A0@smtp.hushmail.com> Message-ID: Hello Mongers! I'll be presenting some lessons-learned from two years of implementing production software in Moose. I'm also the person ordering the pizza, so send requests if you're not as fond of anchovies as I am. ;-) Thanks! Jonathan On Thu, Mar 19, 2015 at 3:13 PM, William N. Braswell, Jr. < william.braswell at autoparallel.com> wrote: > Howdy Mongers, > > Sorry for the runaround, Jonathan from Hostgator has stepped up to give a > presentation at tonight's meeting, so we will NOT need to reschedule to > next week, we will keep tonight's regular meeting as planned: > > 2 Years Of Moose, A Retrospective, Part 1 > Thursday March 19th > 7:00pm - 8:00pm > Hostgator HQ > 2500 Ridgepoint Dr, Austin, TX > > I'll miss y'all, see you next time! > > Perling, > ~ Will the Chill, Austin.pm Prez > > _______________________________________________ > Austin mailing list > Austin at pm.org > http://mail.pm.org/mailman/listinfo/austin > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jacklupton at gmail.com Thu Mar 19 14:38:19 2015 From: jacklupton at gmail.com (Jack Lupton) Date: Thu, 19 Mar 2015 16:38:19 -0500 Subject: APM: CORRECTION: Tonight's Meeting Still On In-Reply-To: References: <20150319201302.B30B6E04A0@smtp.hushmail.com> Message-ID: I like anchovies. 90% sure I'll be able to make it tonight. On Thu, Mar 19, 2015 at 4:06 PM, Jonathan Taylor < jonathantaylor at hostgator.com> wrote: > Hello Mongers! > > I'll be presenting some lessons-learned from two years of implementing > production software in Moose. I'm also the person ordering the pizza, so > send requests if you're not as fond of anchovies as I am. ;-) > > Thanks! > > Jonathan > > On Thu, Mar 19, 2015 at 3:13 PM, William N. Braswell, Jr. < > william.braswell at autoparallel.com> wrote: > >> Howdy Mongers, >> >> Sorry for the runaround, Jonathan from Hostgator has stepped up to give a >> presentation at tonight's meeting, so we will NOT need to reschedule to >> next week, we will keep tonight's regular meeting as planned: >> >> 2 Years Of Moose, A Retrospective, Part 1 >> Thursday March 19th >> 7:00pm - 8:00pm >> Hostgator HQ >> 2500 Ridgepoint Dr, Austin, TX >> >> I'll miss y'all, see you next time! >> >> Perling, >> ~ Will the Chill, Austin.pm Prez >> >> _______________________________________________ >> Austin mailing list >> Austin at pm.org >> http://mail.pm.org/mailman/listinfo/austin >> > > > _______________________________________________ > Austin mailing list > Austin at pm.org > http://mail.pm.org/mailman/listinfo/austin > -------------- next part -------------- An HTML attachment was scrubbed... URL: From frankhsimpson at gmail.com Thu Mar 19 15:04:56 2015 From: frankhsimpson at gmail.com (Frank Simpson) Date: Thu, 19 Mar 2015 17:04:56 -0500 Subject: APM: CORRECTION: Tonight's Meeting Still On In-Reply-To: References: <20150319201302.B30B6E04A0@smtp.hushmail.com> Message-ID: I'll be there. On Mar 19, 2015 4:39 PM, "Jack Lupton" wrote: > I like anchovies. 90% sure I'll be able to make it tonight. > > On Thu, Mar 19, 2015 at 4:06 PM, Jonathan Taylor < > jonathantaylor at hostgator.com> wrote: > >> Hello Mongers! >> >> I'll be presenting some lessons-learned from two years of implementing >> production software in Moose. I'm also the person ordering the pizza, so >> send requests if you're not as fond of anchovies as I am. ;-) >> >> Thanks! >> >> Jonathan >> >> On Thu, Mar 19, 2015 at 3:13 PM, William N. Braswell, Jr. < >> william.braswell at autoparallel.com> wrote: >> >>> Howdy Mongers, >>> >>> Sorry for the runaround, Jonathan from Hostgator has stepped up to give >>> a presentation at tonight's meeting, so we will NOT need to reschedule to >>> next week, we will keep tonight's regular meeting as planned: >>> >>> 2 Years Of Moose, A Retrospective, Part 1 >>> Thursday March 19th >>> 7:00pm - 8:00pm >>> Hostgator HQ >>> 2500 Ridgepoint Dr, Austin, TX >>> >>> I'll miss y'all, see you next time! >>> >>> Perling, >>> ~ Will the Chill, Austin.pm Prez >>> >>> _______________________________________________ >>> Austin mailing list >>> Austin at pm.org >>> http://mail.pm.org/mailman/listinfo/austin >>> >> >> >> _______________________________________________ >> Austin mailing list >> Austin at pm.org >> http://mail.pm.org/mailman/listinfo/austin >> > > > _______________________________________________ > Austin mailing list > Austin at pm.org > http://mail.pm.org/mailman/listinfo/austin > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jjn1056 at yahoo.com Thu Mar 26 17:08:43 2015 From: jjn1056 at yahoo.com (John Napiorkowski) Date: Thu, 26 Mar 2015 17:08:43 -0700 Subject: APM: Tonight's Meeting Postponed Until Next Thurs 3/26 In-Reply-To: <20150319194005.261C3E04A0@smtp.hushmail.com> Message-ID: <1427414923.98782.YahooMailMobile@web140805.mail.bf1.yahoo.com> Does anyone know if the meeting was really moved? I'm at host gator but nobody here seems to think there's a Perl meeting tonight :( -------------- next part -------------- An HTML attachment was scrubbed... URL: From tshinnic at prismnet.com Thu Mar 26 21:51:24 2015 From: tshinnic at prismnet.com (Thomas L. Shinnick) Date: Thu, 26 Mar 2015 23:51:24 -0500 Subject: APM: Tonight's Meeting Postponed Until Next Thurs 3/26 In-Reply-To: <1427414923.98782.YahooMailMobile@web140805.mail.bf1.yahoo. com> References: <20150319194005.261C3E04A0@smtp.hushmail.com> <1427414923.98782.YahooMailMobile@web140805.mail.bf1.yahoo.com> Message-ID: <201503270451.t2R4pf6l093259@smtp.prismnet.com> At 07:08 PM 3/26/2015, John Napiorkowski wrote: >Does anyone know if the meeting was really moved? I'm at host gator >but nobody here seems to think there's a Perl meeting tonight :( Urg! Twasn't moved, as Jonathon Taylor found that the meeting space was spoken for this week (today). Rather, when reporting that fact, he volunteered to present some notes on his/their experiences with Moose, emphasizing gotchas. And I'd again like to thank Jonathon for the presentation. You often (well, every time) hear the upside sell for new/pretty packages and get enthused over the next big 'Answer' to all your problems. Hearing from the voice of experience can be both enlightening and sobering. I'm hoping we will be able to hear "Part 2"! I was tickled to this week find more than a couple articles 'reflecting' on how Google's Go language was not quite as sparkley and shiny as people thought originally. That in a lot of ways it was simply a better 'C'. http://www.quora.com/What-reasons-are-there-to-not-use-Go-programming-language How do you know which way to 'jump' which something is announced? And of course today's news that Google's Dart group will 'de-emphasize' aiming for a browser VM for the language, instead agreeing to down-compile to plain Javascript. You know, like TypeScript and CofferScript and .... :-) If the curse "may you live in interesting times" is not actually Chinese, it seems open to adoption by the IT industry, yes? >Date: Thu, 19 Mar 2015 16:06:39 -0500 >From: Jonathan Taylor >To: Austin Perl Mongers >Subject: Re: APM: CORRECTION: Tonight's Meeting Still On > >Hello Mongers! > >I'll be presenting some lessons-learned from two years of >implementing production software in Moose. I'm also the person >ordering the pizza, so send requests if you're not as fond of >anchovies as I am. ;-) > >Thanks! > >Jonathan > >On Thu, Mar 19, 2015 at 3:13 PM, William N. Braswell, Jr. ><william.braswell at autoparallel.com> >wrote: >Howdy Mongers, > >Sorry for the runaround, Jonathan from Hostgator has stepped up to >give a presentation at tonight's meeting, so we will NOT need to >reschedule to next week, we will keep tonight's regular meeting as planned: > >2 Years Of Moose, A Retrospective, Part 1 >Thursday March 19th >7:00pm - 8:00pm >Hostgator HQ >2500 Ridgepoint Dr, Austin, TX > >I'll miss y'all, see you next time! > >Perling, >~ Will the Chill, Austin.pm Prez > >From: William N. Braswell, Jr. ; >To: Austin Perl Mongers ; >Subject: APM: Tonight's Meeting Postponed Until Next Thurs 3/26 >Sent: Thu, Mar 19, 2015 7:40:04 PM > >Howdy Mongers, > >Sorry for the relatively late notice, tonight's meeting will be >postponed for one week, we'll meet at the same time and place next >Thursday instead: > >Thursday March 26th >7:00pm - 8:00pm >Hostgator HQ >2500 Ridgepoint Dr, Austin, TX > >I hope to see you there! > >Perling, >~ Will the Chill, Austin.pm Prez -------------- next part -------------- An HTML attachment was scrubbed... URL: