Displaying 4 results from an estimated 4 matches for "cyll".
Did you mean:
call
2006 Aug 10
4
mongrel and comet "implementation"
Hey folks,
I was playing around with adding Comet (a javascript technology used
to receive events without AJAX polling) support to Mongrel. More info
about Comet here:
http://en.wikipedia.org/wiki/Comet_%28programming%29)
I sort of got it working. My code is available at:
http;//cyll.org/comet.tar.gz
Run comet.rb from inside the directory and point your browser at:
http://localhost:5555/
The fly in the ointment is that until a Comet request finishes, that
URL mount point stops responding. I assume this is because of how
thread management happens in Mongrel. Leaving the reques...
2006 Jul 14
0
FOSCON II: The Ruby Rodeo
PDX.rb presents...
FOSCON II: The Ruby Rodeo!
We invite you to join us for a set of presentations on Ruby programming
and Ruby culture. Confirmed speakers include:
* Alex Bunardzic
* Lucas Carlson
* Topher Cyll
* Ryan Davis
* Geoffrey Grosenbach
* Amy Hoy
If you didn''t catch it last year, FOSCON is a free and fun gathering of
Ruby fans held in the evening during O''Reilly''s Open Source Convention.
The speakers will be discussing a wide range of topics of interest to
the R...
2008 Jan 17
5
unusual challenges speccing external software
...on, which is
third-party closed-source commercial software which will run on my OS
X box but which is not actually transparent to Unix in any meaningful
way that I''m aware of. (The code generator can very probably also
drive any arbitrary MIDI consumer.) I''m using code from Topher Cyll''s
book "Practical Ruby Projects" to create Ruby wrappers to C methods in
Apple''s CoreMIDI library. The trap here is I''m calling those C methods
to generate MIDI elsewhere in the OS in some unknown way. That makes
speccing weird.
I''ve been able to refac...
2006 Dec 05
7
mongrel and long lived connections
Hi,
I found this article
http://cyll.org/blog/tech/2006-08-09-themongrelcomet.html on mongrel
and COMET very interesting.
I ran the code, and it worked just as Christopher explained. The one
thing I don''t understand is why mongrel can only handle 1 connection
at a time. I thought that mongrel used a thread per connection....