From amoore at mooresystems.com Tue May 12 08:58:11 2009 From: amoore at mooresystems.com (Andrew Moore) Date: Tue, 12 May 2009 10:58:11 -0500 Subject: [Kc] may meeting tonight Message-ID: <6c70d2980905120858lb3f588ay4479c0a143cdc5f8@mail.gmail.com> This month's meeting sneaked up on me. Anyone interested in getting together for a beer and to chat about perl? The regular meeting is scheduled for this evening at 7pm at Barley's in Shawnee. I'll only be out there if I hear from at least one other person. -Andy From djgoku at gmail.com Tue May 12 09:30:00 2009 From: djgoku at gmail.com (Jonathan Otsuka) Date: Tue, 12 May 2009 11:30:00 -0500 Subject: [Kc] may meeting tonight In-Reply-To: <6c70d2980905120858lb3f588ay4479c0a143cdc5f8@mail.gmail.com> References: <6c70d2980905120858lb3f588ay4479c0a143cdc5f8@mail.gmail.com> Message-ID: On May 12, 2009, at 10:58 AM, Andrew Moore wrote: > This month's meeting sneaked up on me. Anyone interested in getting > together for a beer and to chat about perl? > > The regular meeting is scheduled for this evening at 7pm at Barley's > in Shawnee. > > I'll only be out there if I hear from at least one other person. I will not be able to make this meeting as I am in Colorado. See you next month. Jonathan From nelspjr at yahoo.com Tue May 12 11:08:26 2009 From: nelspjr at yahoo.com (Nels Peterson) Date: Tue, 12 May 2009 11:08:26 -0700 (PDT) Subject: [Kc] May meeting Message-ID: <503322.19754.qm@web57707.mail.re3.yahoo.com> I plan on being there, but that doesn't mean you have to :) -------------- next part -------------- An HTML attachment was scrubbed... URL: From amoore at mooresystems.com Tue May 12 14:59:32 2009 From: amoore at mooresystems.com (Andrew Moore) Date: Tue, 12 May 2009 16:59:32 -0500 Subject: [Kc] May meeting In-Reply-To: <503322.19754.qm@web57707.mail.re3.yahoo.com> References: <503322.19754.qm@web57707.mail.re3.yahoo.com> Message-ID: <6c70d2980905121459h796538feqa314caa59eb75d90@mail.gmail.com> Nels - It actually looks like I'm not going to be able to make it out there. Sorry for the short notice! -Andy On Tue, May 12, 2009 at 1:08 PM, Nels Peterson wrote: > I plan on being there, but that doesn't mean you have to :) > > > _______________________________________________ > kc mailing list > kc at pm.org > http://mail.pm.org/mailman/listinfo/kc > From stephenclouse at gmail.com Tue May 12 15:49:59 2009 From: stephenclouse at gmail.com (Stephen Clouse) Date: Tue, 12 May 2009 17:49:59 -0500 Subject: [Kc] May meeting In-Reply-To: <6c70d2980905121459h796538feqa314caa59eb75d90@mail.gmail.com> References: <503322.19754.qm@web57707.mail.re3.yahoo.com> <6c70d2980905121459h796538feqa314caa59eb75d90@mail.gmail.com> Message-ID: <5d0ee2170905121549w2d6940e5h7b51554291c8fc4e@mail.gmail.com> I would be out there but I unfortunately have a conflict tonight. -- Stephen Clouse -------------- next part -------------- An HTML attachment was scrubbed... URL: From davidnicol at gmail.com Wed May 13 12:07:50 2009 From: davidnicol at gmail.com (David Nicol) Date: Wed, 13 May 2009 14:07:50 -0500 Subject: [Kc] lazy sorting Message-ID: <934f64a20905131207y21a18a5al97f1bd4b0ce1e87a@mail.gmail.com> I've just released a lazy quicksorting iterator to cpan as Tie::Quicksort::Lazy. From ggoebel at goebel.ws Fri May 22 06:20:25 2009 From: ggoebel at goebel.ws (Garrett Goebel) Date: Fri, 22 May 2009 09:20:25 -0400 Subject: [Kc] Adding Perl support for Google App Engine Message-ID: <4A16A699.9000504@goebel.ws> Votes for supporting Perl is in 3rd place behind PHP and Ruby in Google App Engine's "Open List" of issues. Perl is less than 300 votes behind Ruby. If you'd like to help change that... vote and spread the word... See: http://ergoletterbag.blogspot.com/2009/05/adding-perl-support-to-google-app.html From djgoku at gmail.com Mon May 25 21:04:31 2009 From: djgoku at gmail.com (Jonathan Otsuka) Date: Mon, 25 May 2009 23:04:31 -0500 Subject: [Kc] Catalyst and DBIx::Class Message-ID: <3B1A25C4-5F41-4FE6-9182-C0DC1A869BB6@gmail.com> This weekend I started a project which needed to access its data from SQL Server. Using the helper scripts provided from Catalyst (myapp_create.pl) and DBIC::Schema. When running the script which was connecting over ODBC, Result Classes (lib/MyApp/MyApp/Schema/Result/ *.pm) weren't being produced. I tried my question in #catalyst (irc.perl.org), but was told that it wasn't the helper script so I joined #dbix-class and ask my question. I was promptly asked questions about what the whole command I was running to try to create the Result Classes, and possible things to try which didn't work. Not long after, the same person asking me questions presented me with modules files to install, once installed I was able to produce Result Classes!!! I am very thankful for Caelum in #dbix-class (he is the on that helped me, and created the modules/patches) for helping me. I had other issues in trying to find the correct dbi connection string for SQL Server and ODBC. This is what I used: dbi:ODBC:"driver={SQL Server};server=hostname;database=test;uid=user;pwd=password;" Jonathan