Hi all Is the EventMachine website (www.rubyeventmachine.com) down? I can''t access it from South Africa, and have tried using tor as well with no luck. I''m kinda new to EventMachine, so I first have a lot of examples to work through and reading to do before I start pestering the mailing list with questions. Thanks to everyone who partook in creating the library, so far it''s been nothing short of a miracle, and have simplified a lot of projects where I''ve implemented it. Best -- Kenneth Kalmer kenneth.kalmer at gmail.com http://opensourcery.co.za -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/eventmachine-talk/attachments/20080822/0ee449ba/attachment.html>
On 22 Aug 2008, at 09:55, Kenneth Kalmer wrote:> Hi all > > Is the EventMachine website (www.rubyeventmachine.com) down? I can''t > access it from South Africa, and have tried using tor as well with > no luck.Yes, it is.> I''m kinda new to EventMachine, so I first have a lot of examples to > work through and reading to do before I start pestering the mailing > list with questions.For more immediate feedback and help, you will find a lot of us in the #eventmachine channel on the freenode IRC network. There are some limited examples in the RDOC under the EventMachine module documentation and various documents in the root of the gem.> Thanks to everyone who partook in creating the library, so far it''s > been nothing short of a miracle, and have simplified a lot of > projects where I''ve implemented it.Always good to hear, that''s what got me into it too :)> > > Best > > -- > Kenneth Kalmer > kenneth.kalmer at gmail.com > http://opensourcery.co.za > _______________________________________________ > Eventmachine-talk mailing list > Eventmachine-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/eventmachine-talk-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/eventmachine-talk/attachments/20080822/63850bd8/attachment.html>
On Fri, Aug 22, 2008 at 12:44 PM, James Tucker <jftucker at gmail.com> wrote:> > On 22 Aug 2008, at 09:55, Kenneth Kalmer wrote: > > I''m kinda new to EventMachine, so I first have a lot of examples to work > through and reading to do before I start pestering the mailing list with > questions. > > > For more immediate feedback and help, you will find a lot of us in the > #eventmachine channel on the freenode IRC network. There are some limited > examples in the RDOC under the EventMachine module documentation and various > documents in the root of the gem. >Working my way through those and some other samples scattered over the internet. Really want to make sure I get a rough idea of the scope and implement of EM before I harass everyone with noob questions. I just hate looking stupid :) Just implemented a rough prototype of Synaptein, my new ''protocol switch''. I''m having a tough time defining it, but the initial readme is posted at http://www.opensourcery.co.za/synaptein/. So far I''m extorting the "spawned process" and "deferrable" features of EM, and it works nicely, however I''m not sure how good it is. I''ll keep on playing with it over the next couple of days before making the code public. Best -- Kenneth Kalmer kenneth.kalmer at gmail.com http://opensourcery.co.za -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/eventmachine-talk/attachments/20080822/62697b88/attachment.html>
On 22 Aug 2008, at 13:45, Kenneth Kalmer wrote:> On Fri, Aug 22, 2008 at 12:44 PM, James Tucker <jftucker at gmail.com> > wrote: > > On 22 Aug 2008, at 09:55, Kenneth Kalmer wrote: >> I''m kinda new to EventMachine, so I first have a lot of examples to >> work through and reading to do before I start pestering the mailing >> list with questions. > > For more immediate feedback and help, you will find a lot of us in > the #eventmachine channel on the freenode IRC network. There are > some limited examples in the RDOC under the EventMachine module > documentation and various documents in the root of the gem. > > Working my way through those and some other samples scattered over > the internet. Really want to make sure I get a rough idea of the > scope and implement of EM before I harass everyone with noob > questions. I just hate looking stupid :)Async isn''t easy to start with, don''t worry about that. We welcome new minds.> Just implemented a rough prototype of Synaptein, my new ''protocol > switch''. I''m having a tough time defining it, but the initial readme > is posted at http://www.opensourcery.co.za/synaptein/. So far I''m > extorting the "spawned process" and "deferrable" features of EM, and > it works nicely, however I''m not sure how good it is. I''ll keep on > playing with it over the next couple of days before making the code > public.Best of luck! :-)> > Best > > -- > Kenneth Kalmer > kenneth.kalmer at gmail.com > http://opensourcery.co.za > _______________________________________________ > Eventmachine-talk mailing list > Eventmachine-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/eventmachine-talk-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/eventmachine-talk/attachments/20080822/f2bfb2ad/attachment.html>
On 22/08/2008, at 10:45 PM, Kenneth Kalmer wrote:> Just implemented a rough prototype of Synaptein, my new ''protocol > switch''. I''m having a tough time defining it, but the initial readme > is posted at http://www.opensourcery.co.za/synaptein/. So far I''m > extorting the "spawned process" and "deferrable" features of EM, and > it works nicely, however I''m not sure how good it is. I''ll keep on > playing with it over the next couple of days before making the code > public.That looks really cool - will keep an eye on it! I had contemplated something similar a while ago - but if I remember correctly the EM dev said that an XMPP in/out module would be included with core EM, so I thought I''d wait and see what happened with that. It hasn''t eventuated though, so your project might turn out to be very welcome .. I''ve received a few emails off-list asking about it so it''s not just me. anyway, look forward to it. Sho> Best > > -- > Kenneth Kalmer > kenneth.kalmer at gmail.com > http://opensourcery.co.za > _______________________________________________ > Eventmachine-talk mailing list > Eventmachine-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/eventmachine-talk-------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2429 bytes Desc: not available URL: <http://rubyforge.org/pipermail/eventmachine-talk/attachments/20080823/e694f340/attachment-0001.bin>
I wrote a simple XMPP client on top of eventmachine a few months ago, using Francis'' libxml2 based xmlpushparser: http://github.com/tmm1/xmpp4em. The client works, but I have since abandoned work on the project and switched over to using AMQP instead (http://github.com/tmm1/amqp) Aman On Fri, Aug 22, 2008 at 2:56 PM, Sho Fukamachi <sho.fukamachi at gmail.com>wrote:> > On 22/08/2008, at 10:45 PM, Kenneth Kalmer wrote: > > Just implemented a rough prototype of Synaptein, my new ''protocol switch''. >> I''m having a tough time defining it, but the initial readme is posted at >> http://www.opensourcery.co.za/synaptein/. So far I''m extorting the >> "spawned process" and "deferrable" features of EM, and it works nicely, >> however I''m not sure how good it is. I''ll keep on playing with it over the >> next couple of days before making the code public. >> > > That looks really cool - will keep an eye on it! > > I had contemplated something similar a while ago - but if I remember > correctly the EM dev said that an XMPP in/out module would be included with > core EM, so I thought I''d wait and see what happened with that. It hasn''t > eventuated though, so your project might turn out to be very welcome .. I''ve > received a few emails off-list asking about it so it''s not just me. > > anyway, look forward to it. > > Sho > > > Best >> >> -- >> Kenneth Kalmer >> kenneth.kalmer at gmail.com >> http://opensourcery.co.za >> _______________________________________________ >> Eventmachine-talk mailing list >> Eventmachine-talk at rubyforge.org >> http://rubyforge.org/mailman/listinfo/eventmachine-talk >> > > > _______________________________________________ > Eventmachine-talk mailing list > Eventmachine-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/eventmachine-talk >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/eventmachine-talk/attachments/20080822/f86c4f88/attachment.html>
On Sat, Aug 23, 2008 at 1:23 AM, Aman Gupta <themastermind1 at gmail.com>wrote:> I wrote a simple XMPP client on top of eventmachine a few months ago, using > Francis'' libxml2 based xmlpushparser: http://github.com/tmm1/xmpp4em. The > client works, but I have since abandoned work on the project and switched > over to using AMQP instead (http://github.com/tmm1/amqp) > > On Fri, Aug 22, 2008 at 2:56 PM, Sho Fukamachi <sho.fukamachi at gmail.com>wrote: > >> >> On 22/08/2008, at 10:45 PM, Kenneth Kalmer wrote: >> >> Just implemented a rough prototype of Synaptein, my new ''protocol >>> switch''. I''m having a tough time defining it, but the initial readme is >>> posted at http://www.opensourcery.co.za/synaptein/. So far I''m extorting >>> the "spawned process" and "deferrable" features of EM, and it works nicely, >>> however I''m not sure how good it is. I''ll keep on playing with it over the >>> next couple of days before making the code public. >>> >> >> That looks really cool - will keep an eye on it! >> >> I had contemplated something similar a while ago - but if I remember >> correctly the EM dev said that an XMPP in/out module would be included with >> core EM, so I thought I''d wait and see what happened with that. It hasn''t >> eventuated though, so your project might turn out to be very welcome .. I''ve >> received a few emails off-list asking about it so it''s not just me. >> >> anyway, look forward to it. >> >Thanks! I''ll push the code to github during the next week, have a short todo list to work through first. As for the AMQP, thats one of my future moves with the project. One example would be an incoming Jabber message to perform a task, that would be placed into a queue for further processing. However contrived the example, I''m sure you can imagine the possibilities of combining XMPP and AMQP. I know that company (cannot recall the name now) has been working on a XMPP to AMQP gateway in Erlang, and IIRC it would sit directly in ejabberd. Anycase, I''ll keep the list posted. -- Kenneth Kalmer kenneth.kalmer at gmail.com http://opensourcery.co.za -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/eventmachine-talk/attachments/20080823/aa8a37cb/attachment.html>