From jay at jays.net Mon Aug 8 10:59:10 2011 From: jay at jays.net (Jay Hannah) Date: Mon, 8 Aug 2011 12:59:10 -0500 Subject: [Omaha.pm] Meeting tomorrow, 7pm Message-ID: <7EA02B6C-5ECE-45DB-A1A2-329D8C47417F@jays.net> http://odlug.org/ Justin Hamilton: "I recently wrote a Forth interpreter in Scheme just as a fun little toy project." Justin: Are you still on for tomorrow night? :) I didn't get the impression Justin needed the whole meeting, necessarily. Anyone else have anything they want to present? Thanks, j From jay at jays.net Mon Aug 8 11:30:12 2011 From: jay at jays.net (Jay Hannah) Date: Mon, 8 Aug 2011 13:30:12 -0500 Subject: [Omaha.pm] Meeting tomorrow, 7pm In-Reply-To: <4e036c20-3fb3-486e-b365-24907f3ecc90@x19g2000prc.googlegroups.com> References: <4e036c20-3fb3-486e-b365-24907f3ecc90@x19g2000prc.googlegroups.com> Message-ID: <6A7E1C04-6571-4C78-B426-9B4BA005DF49@jays.net> On Jul 28, 2011, at 10:12 AM, Justin Hamilton wrote: > Hey guys, good news is that I was able to wrangle my job into letting > me take an additional week of vacation. Downside is that this means my > vacation will run through the August 9th meeting, so I won't be able > to give a demo of my Forth interpreter then. Sorry for the late > notice, but I'm excited for the additional off time from my job. Oh, oops. Missed this email. Justin: No worries. :) Shawn: Are you ready to present something tomorrow? http://odlug.org/ Thanks, j From shawnhermans at gmail.com Mon Aug 8 16:34:48 2011 From: shawnhermans at gmail.com (Shawn Hermans) Date: Mon, 8 Aug 2011 18:34:48 -0500 Subject: [Omaha.pm] [odynug] Re: Meeting tomorrow, 7pm In-Reply-To: <6A7E1C04-6571-4C78-B426-9B4BA005DF49@jays.net> References: <4e036c20-3fb3-486e-b365-24907f3ecc90@x19g2000prc.googlegroups.com> <6A7E1C04-6571-4C78-B426-9B4BA005DF49@jays.net> Message-ID: I am checking with my wife to see, but looks good Sent from my iPhone On Aug 8, 2011, at 1:30 PM, Jay Hannah wrote: > On Jul 28, 2011, at 10:12 AM, Justin Hamilton wrote: >> Hey guys, good news is that I was able to wrangle my job into letting >> me take an additional week of vacation. Downside is that this means my >> vacation will run through the August 9th meeting, so I won't be able >> to give a demo of my Forth interpreter then. Sorry for the late >> notice, but I'm excited for the additional off time from my job. > > Oh, oops. Missed this email. Justin: No worries. :) > > Shawn: Are you ready to present something tomorrow? > > http://odlug.org/ > > Thanks, > > j > > > > -- > You received this message because you are subscribed to the Google Groups "Omaha Dynamic Language User Group" group. > To post to this group, send email to odynug at googlegroups.com. > To unsubscribe from this group, send email to odynug+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/odynug?hl=en. > From netarttodd at gmail.com Mon Aug 29 15:30:18 2011 From: netarttodd at gmail.com (Todd Hamilton) Date: Mon, 29 Aug 2011 17:30:18 -0500 Subject: [Omaha.pm] POE::Component::Client::Stomp Message-ID: I am working on a project that (tries to) uses POE + ActiveMQ + STOMP. I want to publish messages to the queue using POE::Component::Client::Stomp. I am not having a lot of luck. Those who use these technologies, what method do you use to publish a message? THe goal of my application is to provided a POE TCP server that listens for a stream from a client (print job) and then publishes a message to the MQ queue. -- Todd Hamilton (402) 881-0438 From jay at jays.net Mon Aug 29 15:39:48 2011 From: jay at jays.net (Jay Hannah) Date: Mon, 29 Aug 2011 17:39:48 -0500 Subject: [Omaha.pm] POE::Component::Client::Stomp In-Reply-To: References: Message-ID: <17F03533-93D4-46C2-9CDF-A48294168DA1@jays.net> On Aug 29, 2011, at 5:30 PM, Todd Hamilton wrote: > I am working on a project that (tries to) uses POE + ActiveMQ + STOMP. > I want to publish messages to the queue using > POE::Component::Client::Stomp. I am not having a lot of luck. Those > who use these technologies, what method do you use to publish a > message? THe goal of my application is to provided a POE TCP server > that listens for a stream from a client (print job) and then publishes > a message to the MQ queue. I don't think I've used POE::Component::Client::Stomp. 3(?) years ago I did some Net::Stomp to ActiveMQ, which seemed to work fine out of the box, but we ended up abandoning ActiveMQ after unexplained weirdness (crashes) after a few million messages. I assume they've fixed whatever that issue was by now. Currently, $dayjob is using Net::Kestrel to talk to Kestrel*, which is Twitter's MQ tech. I'm using POE::Wheel::Run and Net::Kestrel together for simplistic parallelization. You might try irc.perl.org #poe, or the POE mailing lists. To get any specific help you'll need to boil down your use case and post your code and output online somewhere (I prefer gist.github.com) for people to try to poke around with it. I hope that helps, j * https://github.com/robey/kestrel From netarttodd at gmail.com Mon Aug 29 16:02:06 2011 From: netarttodd at gmail.com (Todd Hamilton) Date: Mon, 29 Aug 2011 18:02:06 -0500 Subject: [Omaha.pm] POE::Component::Client::Stomp In-Reply-To: <17F03533-93D4-46C2-9CDF-A48294168DA1@jays.net> References: <17F03533-93D4-46C2-9CDF-A48294168DA1@jays.net> Message-ID: Jay Thanks. I am curious...When you send a message using you current method, do you open a connection once at init of your program, or do you open/close the connection after each message? Todd On Mon, Aug 29, 2011 at 5:39 PM, Jay Hannah wrote: > On Aug 29, 2011, at 5:30 PM, Todd Hamilton wrote: >> I am working on a project that (tries to) uses POE + ActiveMQ + STOMP. >> I want to publish messages to the queue using >> POE::Component::Client::Stomp. ?I am not having a lot of luck. ?Those >> who use these technologies, what method do you use to publish a >> message? ?THe goal of my application is to provided a POE TCP server >> that listens for a stream from a client (print job) and then publishes >> a message to the MQ queue. > > I don't think I've used POE::Component::Client::Stomp. 3(?) years ago I did some Net::Stomp to ActiveMQ, which seemed to work fine out of the box, but we ended up abandoning ActiveMQ after unexplained weirdness (crashes) after a few million messages. I assume they've fixed whatever that issue was by now. > > Currently, $dayjob is using Net::Kestrel to talk to Kestrel*, which is Twitter's MQ tech. I'm using POE::Wheel::Run and Net::Kestrel together for simplistic parallelization. > > You might try irc.perl.org #poe, or the POE mailing lists. To get any specific help you'll need to boil down your use case and post your code and output online somewhere (I prefer gist.github.com) for people to try to poke around with it. > > I hope that helps, > > j > > > > * https://github.com/robey/kestrel > > _______________________________________________ > Omaha-pm mailing list > Omaha-pm at pm.org > http://mail.pm.org/mailman/listinfo/omaha-pm > -- Todd Hamilton (402) 881-0438 From jay at jays.net Mon Aug 29 16:49:59 2011 From: jay at jays.net (Jay Hannah) Date: Mon, 29 Aug 2011 18:49:59 -0500 Subject: [Omaha.pm] POE::Component::Client::Stomp In-Reply-To: References: <17F03533-93D4-46C2-9CDF-A48294168DA1@jays.net> Message-ID: <583CF52B-2149-4BE0-AEA4-06B6979E807A@jays.net> On Aug 29, 2011, at 6:02 PM, Todd Hamilton wrote: > I am curious...When you send a message using you current method, do > you open a connection once at init of your program, or do you > open/close the connection after each message? Just once at the start. Looks like Net::Kestrel doesn't even have a disconnect?. (Yet?) -laugh- j http://search.cpan.org/perldoc?Net::Kestrel https://github.com/gphat/net-kestrel