search for: reactor

Displaying 20 results from an estimated 63 matches for "reactor".

Did you mean: refactor
2010 Jul 09
4
How can I run this in Wine
I am trying to run Soul of the Ultimate Nation on a macbook pro and im not sure how to get it to work. Can anyone help me out? Here are links to the websites. You have to install the reactor for the game and the reactor itself. I was able to install the reactor, but I wasn't able to sign in. Anyone have any hints? sun.ijji.com (this is the site for the game) www.ijji.com (those are the people who made the game)
2010 Aug 04
6
Ijji Reactor
Yo'z, new here and all, and rather weak in the knowledge department of linux/ubuntu and wine. I'm fairly sure i'm running the latest wine, i installed / updated wine and all that stuff about a month ago so yeah. I'm basically trying to use Ijji Reactor, but it won't let me sign in at all. I don't know how to get the wine log and all of that @_@;
2008 Jan 18
8
Query All Worker
What does the method query_all_workers() do? There is no documentation on what this method returns (1.0.1 version). Orion -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/backgroundrb-devel/attachments/20080118/9f9b8112/attachment.html
2008 Jun 02
3
Adviced way of tagging music
I change a lot of my CD to Ogg to be able to listen them easily from my computer (I use foobar, I was used to WMP but it does not support library for Ogg files and plug-ins I found for this where poor) without the need for frequent CD changing. I like my music to be richly tagged. But with classical music CD it is a real pain to tag those files. Typical problems involve: - single CD
2007 Dec 09
38
libevent
Hello, I have been looking at the Ruby/EventMachine. First let me say it look very good. Reactor model with no threads makes for fast reliable server, and I have read about marvelous Twisted framework for Python and am glad to see something similar for Ruby. I am writing network app with Ruby threads now and it very slow, and I try new Ruby 1.9 with native threads that make it much slower. P...
2007 Feb 25
6
Crash occurs where EventMachine.connect is
Hi everyone, If you subclass EventMachine::Connection and call it outside an EventMachine::run event loop, EventMachine crashes! Example: class Put < EventMachine::Connection include EventMachine::Deferrable HOST="localhost" PORT=8080 def self.request(data) EventMachine.connect(HOST, PORT, self) {|c| c.instance_eval { @data = data } } end #
2002 Apr 07
0
missing corner case in authorized_keys?
I've written up a little HOWTO on how I set up my CVS server to allow anonymous access via ssh. I did it a little bit differently than the method documented by Theo and crew. Where their login shell has a lot of stuff in it, mine is a simple execle() statement. Url is here: http://reactor-core.org/#code After following the steps outlined in the HOWTO, I came across the following problem. How can I disable things like port forwarding, X forwarding, agent forwarding, and so on to people who are connecting to this passwordless account? The .ssh/authorized_keys file seems to provide...
2010 Jul 24
3
HTML rendering is currently disabled (Wanna' play GUNZ!)
Okay, I'm a super super-dee-duper newbster. Aaaaand I'm on a MacBook. Aaaaand I'm running Leopard (10.5.8). So I've used Wine before a loooong time ago for some things, but nothing big. And now I want to play Gunz (from ijji.com). I got everything downloaded (the reactor) and then it tells me something about "Gecko" needing to be installed. I get everything all installed and check "Launch Ijji Reactor" box on the final page of the installer. And then it takes a while, and then a white box pops up with "HTML rendering is currently disabled&q...
2008 Apr 23
2
Status of EventMachine.fork
Hi All, I''m currently looking into doing a bit of evented network programming in ruby and i''m currently looking into packet, eventmachine and rev. The problem is that I need to be able to fork and start a new reactor within the forked child (it also should open a socket and write status information back to the main process). I have not been able to do this with EventMachine. When searching the mailinglist I found a mention of EventMachine.fork, is there any news on the progress on that? Thanks in advance, Flu...
2002 Mar 21
1
Tag changes
...into the proposal. We just thought you should know. :D Jokes aside, the updated document is available at the URL below - ignore the "Last updated Thu Jan 31" message, it really was updated a few days ago; Jonathan, you might want to fix that. Further discussion is welcome. http://reactor-core.org/ogg-tag-standard.html <p> -- -:-:- David K. Gasaway -:-:- XNS : =David K Gasaway -:-:- Email: dave@gasaway.org -:-:- Web : dave.gasaway.org <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from thi...
2006 May 22
3
core-model-2
I''ve added experiments/core-model-2 to SVN. I think this is pretty clean and satisfactory. Jeff, please have a look and see if you like the placement of timeouts (which are currently unimplemented). Any event now has the possibility of a timeout. To get an application-level timeout, you''d just post an event with a timeout to a nil target. When the timeout expires, the errback
2006 Mar 27
4
Remote databases and daemons
I've looked over the docs on remote backends, the protocol, and a bit of the c++ for doing distributed and remote searches. I've got a couple of questions: * The remote protocol is usable only as a Database, not as a WriteableDatabase -- is this correct? So, if I don't want my application to have a copy of the database on the same machine I'll need to write an indexer daemon on
2005 Jul 10
5
Indices and totals
Hi all! I've read http://reactor-core.org/ogg-tagging.html and http://www.vorbis.com/ot/20030303.html#id2726753 about the goals and non-goals of vorbis comments, but I'm still unsure: 1) Is it by purpose to forget about CDA's index feature because it's so rarely used or did nobody here ever thought about it? ->...
2007 May 24
4
Multiple EM connections on separate threads
Hi EM Gurus, I''m hoping someone can shed some light on the following... I''m using a 3rd party (legacy) server that can accept up to 8 simultaneous connections on one port. I''ve been able to make multiple connections to this server from within one call to EventMachine::run {...}. Specificaly, I can access each connection separately using: em_thread = Thread.new do
2001 Dec 07
2
Revised Proposal for Vorbis TAG Standard
Based on peoples posts to this list, and feedback on IRC (irc.openprojects.net #vorbis) I have updated the original proposal. You can read it here. Please read it before writing any futher questions, comments, or criticisms of the proposal. http://reactor-core.org/~djw/ogg-tags.txt Cheers Jonathan -------------- next part -------------- A non-text attachment was scrubbed... Name: part Type: application/pgp-signature Size: 797 bytes Desc: not available Url : http://lists.xiph.org/pipermail/vorbis/attachments/20011207/293f997e/part-0001.pgp
2008 Aug 06
6
Event loop responsiveness + client
...inimize the occurrence of this race condition, the main thread needs to be as fast as possible. Aman pointed me to: http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/7872 http://readlist.com/lists/ruby-lang.org/ruby-talk/3/16264.html It seems like a solution would be to have a very fast reactor loop in an OS thread that tracks the state of the connections and updates a data structure that can be queried and send the events to a subscription queue in Ruby main thread. For example, Connection#error? would return true the "instant" the client closes the socket, which would be befor...
2010 Feb 12
1
[LLVMdev] Unable to connect to google1.osuosl.org
I am unable to connect to build master at:google1.osuosl.org:9990 from my buildslave. See attached twisted9.0.0 log. 2010-02-12 09:50:03-0800 [-] Log opened. 2010-02-12 09:50:03-0800 [-] twistd 9.0.0 (C:\Python26\python.exe 2.6.2) starting up. 2010-02-12 09:50:03-0800 [-] reactor class: twisted.internet.win32eventreactor.Win32Reactor. 2010-02-12 09:50:03-0800 [-] Starting factory <buildbot.slave.bot.BotFactory instance at 0x013A1DA0> 2010-02-12 09:50:24-0800 [Uninitialized] <twisted.internet.tcp.Connector instance at 0x00D0AE40> will retry in 3 seconds 2010-02-1...
2011 Nov 30
2
gamegaurd orean.vxd and error
hello i'm trying to run AVA on my mac with wine with the application playonmac which uses wine but as i read it is not possible to make gamegaurd run on wine, except if i change some files can anyone help me ?? and i'm trying to run reactor to but i don' have the correct configuration but if it works byu steam it will be ok. thank you
2009 Jun 21
1
Replay Gain in Vorbis
...page at: http://en.wikipedia.org/wiki/Replay_Gain it states: "FLAC and Ogg Vorbis use the REPLAYGAIN_* comment fields." but I can't find any reference to Replay Gain in the VorbisComment references. On: http://wiki.xiph.org/index.php/VorbisComment I found a link to: http://reactor-core.org/ogg-tagging.html but this page looks like it has been hacked. Many thanks, Martin -- Martin J Leese E-mail: martin.leese stanfordalumni.org Web: http://members.tripod.com/martin_leese/
2008 Apr 11
2
Can I do this, question
I have a bunch of real uses for BackgroundDrb, but I also a very simple need to delay sending an email for about 5 seconds after a rails action completes. Basically I need to leave time for the DB to commit and sync to the slaves before the email can be sent Is BackgroundDb the right tool for this job? Any other suggestions on ways to implement this? (I have seen suggestions to create a