From amoore at mooresystems.com Fri Dec 3 13:06:24 2010 From: amoore at mooresystems.com (Andrew Moore) Date: Fri, 3 Dec 2010 15:06:24 -0600 Subject: [Kc] December meeting Message-ID: Hi KC PMers - We traditionally cancel the December meeting. It would be this Tuesday, the 8th. Anyone interested in getting together, or shall we cancel and start fresh in 2011? -Andy From davidnicol at gmail.com Sun Dec 5 14:07:20 2010 From: davidnicol at gmail.com (David Nicol) Date: Sun, 5 Dec 2010 16:07:20 -0600 Subject: [Kc] December meeting In-Reply-To: References: Message-ID: cancel it From amoore at mooresystems.com Mon Dec 6 08:10:02 2010 From: amoore at mooresystems.com (Andrew Moore) Date: Mon, 6 Dec 2010 10:10:02 -0600 Subject: [Kc] December meeting In-Reply-To: References: Message-ID: Yep, it sounds like we'd better cancel. The 2nd Tuesday of January is the 11th. Let's get together then. Have a good December, gang! -Andy On Sun, Dec 5, 2010 at 4:07 PM, David Nicol wrote: > cancel it > _______________________________________________ > kc mailing list > kc at pm.org > http://mail.pm.org/mailman/listinfo/kc > From amoore at mooresystems.com Mon Dec 13 12:44:58 2010 From: amoore at mooresystems.com (Andrew Moore) Date: Mon, 13 Dec 2010 14:44:58 -0600 Subject: [Kc] december meeting cancelled Message-ID: Just a reminder that we've cancelled the December meeting as we do most years. It's way too cold anyway. So, no meeting tomorrow. (I erroneously thought it was last week, anyway) See you in January! -Andy From stephenclouse at gmail.com Fri Dec 17 14:20:33 2010 From: stephenclouse at gmail.com (Stephen Clouse) Date: Fri, 17 Dec 2010 16:20:33 -0600 Subject: [Kc] Event Daemons in Perl Message-ID: A question for you all.... I have the upcoming task of rebuilding an awful piece of software here, which is a network daemon that also fires off some scheduled events (cron-style). We clearly want to rebuild this in Perl, so we can leverage our existing components (like our DBIx::Class schema and business logic). So what is the Modern Perl method for building such an application? I know POE has been out there for ages, but is POE still considered the state of the art in this realm of Perl? Is there anything else worth considering? (Anything that's built in Moose gets bonus points.) -- Stephen Clouse -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul.millard at gmail.com Fri Dec 17 14:26:20 2010 From: paul.millard at gmail.com (Paul Millard) Date: Fri, 17 Dec 2010 16:26:20 -0600 Subject: [Kc] Event Daemons in Perl In-Reply-To: References: Message-ID: Here's a few ideas: http://search.cpan.org/~kixx/Catalyst-Engine-JobQueue-POE-0.0.3/lib/Catalyst/Helper/JobQueue/POE.pm http://www.catalyzed.org/2009/06/poe-anyevent321-fight.html Paul On Fri, Dec 17, 2010 at 4:20 PM, Stephen Clouse wrote: > A question for you all.... > > I have the upcoming task of rebuilding an awful piece of software here, > which is a network daemon that also fires off some scheduled events > (cron-style). We clearly want to rebuild this in Perl, so we can leverage > our existing components (like our DBIx::Class schema and business logic). > > So what is the Modern Perl method for building such an application? I know > POE has been out there for ages, but is POE still considered the state of > the art in this realm of Perl? Is there anything else worth considering? > (Anything that's built in Moose gets bonus points.) > > -- > Stephen Clouse > > _______________________________________________ > kc mailing list > kc at pm.org > http://mail.pm.org/mailman/listinfo/kc > -------------- next part -------------- An HTML attachment was scrubbed... URL: From stephenclouse at gmail.com Mon Dec 20 09:34:59 2010 From: stephenclouse at gmail.com (Stephen Clouse) Date: Mon, 20 Dec 2010 11:34:59 -0600 Subject: [Kc] Event Daemons in Perl In-Reply-To: References: Message-ID: Not too long after I sent that first email, I stumbled upon this: http://search.cpan.org/~rcaputo/Reflex-0.085/lib/Reflex.pm The POE maintainer's effort at a Moose version of POE. Conveniently it can import POE classes as well. -- Stephen Clouse -------------- next part -------------- An HTML attachment was scrubbed... URL: From jhannah at mutationgrid.com Mon Dec 20 10:42:46 2010 From: jhannah at mutationgrid.com (Jay Hannah) Date: Mon, 20 Dec 2010 12:42:46 -0600 Subject: [Kc] Event Daemons in Perl In-Reply-To: References: Message-ID: <716F3C03-DA5A-40A1-8218-2CD1D84EDB0C@mutationgrid.com> On Dec 20, 2010, at 11:34 AM, Stephen Clouse wrote: > Not too long after I sent that first email, I stumbled upon this: > > http://search.cpan.org/~rcaputo/Reflex-0.085/lib/Reflex.pm > > The POE maintainer's effort at a Moose version of POE. Conveniently it can import POE classes as well. If you implement that be sure to let us know how it goes. :) I maintain MooseX::Workers, a very Moose-ified POE::Wheel::Run. https://github.com/jhannah/moosex-workers Catalyst Moose-ified its internals in the 5.80 series. Development of that line began in Oct 2008. BioPerl Moose-ified is called "Biome." Looks like it's gone stale: https://github.com/cjfields/biome Moose the world! :) Jay Hannah Software Architect jhannah at mutationgrid.com | http://mutationgrid.com | 1-402-598-7782 From stephenclouse at gmail.com Mon Dec 20 11:16:25 2010 From: stephenclouse at gmail.com (Stephen Clouse) Date: Mon, 20 Dec 2010 13:16:25 -0600 Subject: [Kc] Event Daemons in Perl In-Reply-To: <716F3C03-DA5A-40A1-8218-2CD1D84EDB0C@mutationgrid.com> References: <716F3C03-DA5A-40A1-8218-2CD1D84EDB0C@mutationgrid.com> Message-ID: On Mon, Dec 20, 2010 at 12:42 PM, Jay Hannah wrote: > Catalyst Moose-ified its internals in the 5.80 series. Development of that > line began in Oct 2008. > Already using Catamoose :) > Moose the world! :) > I heartily endorse this event or product. After using Moose heavily for a year, "plain old" Perl OO makes me want to eviscerate myself with something involving a machete and a food processor. -- Stephen Clouse -------------- next part -------------- An HTML attachment was scrubbed... URL: From jhannah at mutationgrid.com Mon Dec 20 11:29:31 2010 From: jhannah at mutationgrid.com (Jay Hannah) Date: Mon, 20 Dec 2010 13:29:31 -0600 Subject: [Kc] Event Daemons in Perl In-Reply-To: References: <716F3C03-DA5A-40A1-8218-2CD1D84EDB0C@mutationgrid.com> Message-ID: <40DB952B-DF48-4937-84D3-919ED09DFA7D@mutationgrid.com> On Dec 20, 2010, at 1:16 PM, Stephen Clouse wrote: > On Mon, Dec 20, 2010 at 12:42 PM, Jay Hannah wrote: > Catalyst Moose-ified its internals in the 5.80 series. Development of that line began in Oct 2008. > > Already using Catamoose :) Is that a project name I've missed? Or a meme I'm already using? :) > After using Moose heavily for a year, "plain old" Perl OO makes me want to eviscerate myself with something involving a machete and a food processor. I still use Damian Conway OO Perl (Manning http://www.manning.com/conway/) techniques when an entire system is 100 lines or less. At real or predicted total size of project exceeding 100 lines of source code the Moose is my co-pilot. :) P.S. Why is this mailing list set to "Reply to author?" Isn't "Reply to list" vastly superior? Jay Hannah Software Architect jhannah at mutationgrid.com | http://mutationgrid.com | 1-402-598-7782 From sterling at hanenkamp.com Mon Dec 20 13:25:53 2010 From: sterling at hanenkamp.com (Sterling Hanenkamp) Date: Mon, 20 Dec 2010 15:25:53 -0600 Subject: [Kc] Event Daemons in Perl In-Reply-To: <40DB952B-DF48-4937-84D3-919ED09DFA7D@mutationgrid.com> References: <716F3C03-DA5A-40A1-8218-2CD1D84EDB0C@mutationgrid.com> <40DB952B-DF48-4937-84D3-919ED09DFA7D@mutationgrid.com> Message-ID: (Thanks Jay for your backhanded method of pointing out that I previously clicked Reply instead of Reply to All. :-p I dislike having to remember to click Reply to all on just this list.) I've used POE. I have heard of Reflex, but not used it. At work, we recently rolled our own system using a messaging server and a completely new code base. I have also used AnyEvent recently. It provides a system for building event loops, but can use other event loop systems such as POE, EV, Glib, etc. for the actual engine that drives the system. That may lead you to other event loops you might consider. On Mon, Dec 20, 2010 at 1:29 PM, Jay Hannah wrote: > On Dec 20, 2010, at 1:16 PM, Stephen Clouse wrote: > > On Mon, Dec 20, 2010 at 12:42 PM, Jay Hannah > wrote: > > Catalyst Moose-ified its internals in the 5.80 series. Development of > that line began in Oct 2008. > > > > Already using Catamoose :) > > Is that a project name I've missed? Or a meme I'm already using? :) > > > After using Moose heavily for a year, "plain old" Perl OO makes me want > to eviscerate myself with something involving a machete and a food > processor. > > I still use Damian Conway OO Perl (Manning http://www.manning.com/conway/) > techniques when an entire system is 100 lines or less. At real or predicted > total size of project exceeding 100 lines of source code the Moose is my > co-pilot. :) > > P.S. Why is this mailing list set to "Reply to author?" Isn't "Reply to > list" vastly superior? > > Jay Hannah > Software Architect > jhannah at mutationgrid.com | http://mutationgrid.com | 1-402-598-7782 > > > > > _______________________________________________ > kc mailing list > kc at pm.org > http://mail.pm.org/mailman/listinfo/kc > -- Andrew Sterling Hanenkamp sterling at hanenkamp.com 785.370.4454 -------------- next part -------------- An HTML attachment was scrubbed... URL: From amoore at mooresystems.com Mon Dec 20 13:30:27 2010 From: amoore at mooresystems.com (Andrew Moore) Date: Mon, 20 Dec 2010 15:30:27 -0600 Subject: [Kc] reply-to munging Message-ID: On Mon, Dec 20, 2010 at 1:29 PM, Jay Hannah wrote: > P.S. ?Why is this mailing list set to "Reply to author?" ? Isn't "Reply to list" vastly superior? I guess I never really noticed that before before. I think I can change that in the mailman settings. Any objections to making that change? -Andy From jhannah at mutationgrid.com Mon Dec 20 13:53:54 2010 From: jhannah at mutationgrid.com (Jay Hannah) Date: Mon, 20 Dec 2010 15:53:54 -0600 Subject: [Kc] Event Daemons in Perl In-Reply-To: References: <716F3C03-DA5A-40A1-8218-2CD1D84EDB0C@mutationgrid.com> <40DB952B-DF48-4937-84D3-919ED09DFA7D@mutationgrid.com> Message-ID: <3BF34428-B869-4C6C-9962-2CD1C26C17B0@mutationgrid.com> On Dec 20, 2010, at 3:25 PM, Sterling Hanenkamp wrote: > (Thanks Jay for your backhanded method of pointing out that I previously clicked Reply instead of Reply to All. :-p I dislike having to remember to click Reply to all on just this list.) Backhanded? My apologies if I've offended. I didn't intend to comment on anyone's email(s) except my own. Jay Hannah Software Architect jhannah at mutationgrid.com | http://mutationgrid.com | 1-402-598-7782 From sterling at hanenkamp.com Mon Dec 20 14:36:48 2010 From: sterling at hanenkamp.com (Sterling Hanenkamp) Date: Mon, 20 Dec 2010 16:36:48 -0600 Subject: [Kc] Event Daemons in Perl In-Reply-To: <3BF34428-B869-4C6C-9962-2CD1C26C17B0@mutationgrid.com> References: <716F3C03-DA5A-40A1-8218-2CD1D84EDB0C@mutationgrid.com> <40DB952B-DF48-4937-84D3-919ED09DFA7D@mutationgrid.com> <3BF34428-B869-4C6C-9962-2CD1C26C17B0@mutationgrid.com> Message-ID: I only meant "backhanded" to mean "indirect". You backhanded me in the process of frontal slapping the mailing list configuration. :-p On Mon, Dec 20, 2010 at 3:53 PM, Jay Hannah wrote: > On Dec 20, 2010, at 3:25 PM, Sterling Hanenkamp wrote: > > (Thanks Jay for your backhanded method of pointing out that I previously > clicked Reply instead of Reply to All. :-p I dislike having to remember to > click Reply to all on just this list.) > > Backhanded? > > My apologies if I've offended. I didn't intend to comment on anyone's > email(s) except my own. > > Jay Hannah > Software Architect > jhannah at mutationgrid.com | http://mutationgrid.com | 1-402-598-7782 > > > > > > _______________________________________________ > kc mailing list > kc at pm.org > http://mail.pm.org/mailman/listinfo/kc > -- Andrew Sterling Hanenkamp sterling at hanenkamp.com 785.370.4454 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jhannah at mutationgrid.com Mon Dec 20 15:38:33 2010 From: jhannah at mutationgrid.com (Jay Hannah) Date: Mon, 20 Dec 2010 17:38:33 -0600 Subject: [Kc] Event Daemons in Perl In-Reply-To: References: <716F3C03-DA5A-40A1-8218-2CD1D84EDB0C@mutationgrid.com> <40DB952B-DF48-4937-84D3-919ED09DFA7D@mutationgrid.com> <3BF34428-B869-4C6C-9962-2CD1C26C17B0@mutationgrid.com> Message-ID: <5839CCA2-D8FD-4D9E-8CF1-809F8C6A2EA3@mutationgrid.com> On Dec 20, 2010, at 4:36 PM, Sterling Hanenkamp wrote: > I only meant "backhanded" to mean "indirect". You backhanded me in the process of frontal slapping the mailing list configuration. :-p Wow. What a violent bastard I am. My shrink better up my meds. :) But it is true: That particular MailMan configuration setting will be the first against the wall when the revolution comes. Or someone could click that little radio button and press "Save". Or they could email support at pm.org which would send me an email and I could do that for them. Hmm... Scratch the last option. I'm feeling violent AND lazy. :) Jay Hannah Software Architect jhannah at mutationgrid.com | http://mutationgrid.com | 1-402-598-7782 From don.ellis at gmail.com Tue Dec 21 03:11:17 2010 From: don.ellis at gmail.com (Don Ellis) Date: Tue, 21 Dec 2010 05:11:17 -0600 Subject: [Kc] reply-to munging In-Reply-To: References: Message-ID: On Mon, Dec 20, 2010 at 3:30 PM, Andrew Moore wrote: > On Mon, Dec 20, 2010 at 1:29 PM, Jay Hannah > wrote: > > P.S. Why is this mailing list set to "Reply to author?" Isn't "Reply > to list" vastly superior? > > I guess I never really noticed that before before. I think I can > change that in the mailman settings. Any objections to making that > change? > > -Andy > > I thought we had commented on this some time ago. I agree that "reply to list" makes much more sense. --Don Ellis -------------- next part -------------- An HTML attachment was scrubbed... URL: From andy at petdance.com Tue Dec 21 07:40:58 2010 From: andy at petdance.com (Andy Lester) Date: Tue, 21 Dec 2010 09:40:58 -0600 Subject: [Kc] reply-to munging In-Reply-To: References: Message-ID: <5C35F351-3F72-42E5-BA9C-918F5189D476@petdance.com> On Dec 21, 2010, at 5:11 AM, Don Ellis wrote: > I thought we had commented on this some time ago. Every mailing list that involves computer people has had this discussion at least once in the past. Thrice if Randal is on it. xoxo, Andy -- Andy Lester => andy at petdance.com => www.techworklove.com => AIM:petdance From amoore at mooresystems.com Tue Dec 21 07:57:43 2010 From: amoore at mooresystems.com (Andrew Moore) Date: Tue, 21 Dec 2010 09:57:43 -0600 Subject: [Kc] reply-to munging In-Reply-To: References: Message-ID: On Tue, Dec 21, 2010 at 5:11 AM, Don Ellis wrote: > I thought we had commented on this some time ago. I agree that "reply to > list" makes much more sense. OK. I'll consider that consensus that we should change. I've "flipped the bit" and so this email should have the reply-to header set right, I think. Cheers, -Andy From don.ellis at gmail.com Wed Dec 22 15:20:46 2010 From: don.ellis at gmail.com (Don Ellis) Date: Wed, 22 Dec 2010 17:20:46 -0600 Subject: [Kc] reply-to munging In-Reply-To: References: Message-ID: Looks like it's fixed now. I'll continue to complain if I see it on another list. To the other list, that is. --Don Ellis On Tue, Dec 21, 2010 at 9:57 AM, Andrew Moore wrote: > On Tue, Dec 21, 2010 at 5:11 AM, Don Ellis wrote: > > I thought we had commented on this some time ago. I agree that "reply to > > list" makes much more sense. > > OK. I'll consider that consensus that we should change. I've "flipped > the bit" and so this email should have the reply-to header set right, > I think. > > Cheers, > -Andy > -------------- next part -------------- An HTML attachment was scrubbed... URL: From davidnicol at gmail.com Sun Dec 26 11:55:25 2010 From: davidnicol at gmail.com (David Nicol) Date: Sun, 26 Dec 2010 13:55:25 -0600 Subject: [Kc] New business: motion to change settings Message-ID: On Mon, Dec 20, 2010 at 5:38 PM, Jay Hannah railed against the status quo in such a way that it could only be interpreted as a motion to effect an alteration of the settings of the mailing list kc at pm.org, from "reply to sender" to "reply to list" I will execute this task item after seeing a majority voice vote or mailing list equivalent. who is in favor? (yea == change ; nay == don't change ) From ironicface at earthlink.net Sun Dec 26 12:05:30 2010 From: ironicface at earthlink.net (ironicface at earthlink.net) Date: Sun, 26 Dec 2010 14:05:30 -0600 (GMT-06:00) Subject: [Kc] New business: motion to change settings Message-ID: <9698571.1293393931161.JavaMail.root@elwamui-hybrid.atl.sa.earthlink.net> Ummmm ... I think the railery has already produced a shifting in the Universe. > >On Mon, Dec 20, 2010 at 5:38 PM, Jay Hannah railed against the status >quo in such a way that it could only be interpreted as a motion to >effect an alteration of the settings of the mailing list kc at pm.org, >from "reply to sender" to "reply to list" > >I will execute this task item after seeing a majority voice vote or >mailing list equivalent. > >who is in favor? (yea == change ; nay == don't change ) >_______________________________________________ >kc mailing list >kc at pm.org >http://mail.pm.org/mailman/listinfo/kc From amoore at mooresystems.com Sun Dec 26 14:18:16 2010 From: amoore at mooresystems.com (Andrew Moore) Date: Sun, 26 Dec 2010 16:18:16 -0600 Subject: [Kc] New business: motion to change settings In-Reply-To: <9698571.1293393931161.JavaMail.root@elwamui-hybrid.atl.sa.earthlink.net> References: <9698571.1293393931161.JavaMail.root@elwamui-hybrid.atl.sa.earthlink.net> Message-ID: On Sun, Dec 26, 2010 at 2:05 PM, wrote: > Ummmm ... I think the railery has already produced a shifting in the Universe. Yep. I counted "some" for, and none against after a couple of days, so I switched it. Thanks! -A From jmreinke at gmail.com Sun Dec 26 15:42:05 2010 From: jmreinke at gmail.com (John Reinke) Date: Sun, 26 Dec 2010 17:42:05 -0600 Subject: [Kc] New business: motion to change settings In-Reply-To: References: Message-ID: yea On Sun, Dec 26, 2010 at 1:55 PM, David Nicol wrote: > On Mon, Dec 20, 2010 at 5:38 PM, Jay Hannah railed against the status > quo in such a way that it could only be interpreted as a motion to > effect an alteration of the settings of the mailing list kc at pm.org, > from "reply to sender" to "reply to list" > > I will execute this task item after seeing a majority voice vote or > mailing list equivalent. > > who is in favor? (yea == change ; nay == don't change ) > _______________________________________________ > kc mailing list > kc at pm.org > http://mail.pm.org/mailman/listinfo/kc > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanvoss at gmail.com Sun Dec 26 17:08:30 2010 From: alanvoss at gmail.com (Alan Voss) Date: Sun, 26 Dec 2010 19:08:30 -0600 Subject: [Kc] kc Digest, Vol 86, Issue 8 In-Reply-To: References: Message-ID: Yea! On Sun, Dec 26, 2010 at 2:00 PM, wrote: > Send kc mailing list submissions to > ? ? ? ?kc at pm.org > > To subscribe or unsubscribe via the World Wide Web, visit > ? ? ? ?http://mail.pm.org/mailman/listinfo/kc > or, via email, send a message with subject or body 'help' to > ? ? ? ?kc-request at pm.org > > You can reach the person managing the list at > ? ? ? ?kc-owner at pm.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of kc digest..." > > > Today's Topics: > > ? 1. New business: motion to change settings (David Nicol) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sun, 26 Dec 2010 13:55:25 -0600 > From: David Nicol > Subject: [Kc] New business: motion to change settings > Cc: kc at pm.org > Message-ID: > ? ? ? ? > Content-Type: text/plain; charset=UTF-8 > > On Mon, Dec 20, 2010 at 5:38 PM, Jay Hannah railed against the status > quo in such a way that it could only be interpreted as a motion to > effect an alteration of the settings of the mailing list kc at pm.org, > from "reply to sender" to "reply to list" > > I will execute this task item after seeing a majority voice vote or > mailing list equivalent. > > who is in favor? (yea == change ; nay == don't change ) > > > ------------------------------ > > _______________________________________________ > kc mailing list > kc at pm.org > http://mail.pm.org/mailman/listinfo/kc > > End of kc Digest, Vol 86, Issue 8 > ********************************* >