Arax?

I remember reading about ARAX on slashdot, and after writing some
javascript recently, I really wish I could have written in Ruby instead,
as I know the language so much better.

So, does anyone know if ARAX has a chance of becoming a client-side
scripting language in browsers like javascript? Or is there little
chance of this happening?

Thanks for any help.

As the Article on Slashdot states: it might be possible in Silverlight
environments. Thats not even AJAX as most people think of it
(HTML+asynchronous Javascript) This means that your client already has
Ruby installed (through Ruby.NET on the .NET VM, which is not
production-ready).

In a browser environment, i don’t see that happening. JS interpreters
are faster, better tested and widely deployed. I don’t see a point of
changing that. Not before browsers themselves sit on top of VMs like
.NET or the JVM.

On 8 Mar 2009, at 01:26, Kyle M. wrote:

I remember reading about ARAX on slashdot, and after writing some
javascript recently, I really wish I could have written in Ruby
instead,
as I know the language so much better.

So, does anyone know if ARAX has a chance of becoming a client-side
scripting language in browsers like javascript? Or is there little
chance of this happening?

You might find HotRuby or Red suits your needs. HotRuby is fast but
not feature complete so you may have to make some design compromises,
but it does offer excellent performance :slight_smile:

Ellie

Eleanor McHugh
Games With Brains
http://slides.games-with-brains.net

raise ArgumentError unless @reality.responds_to? :reason

Kyle M. wrote:

I remember reading about ARAX on slashdot

I remember that article – it was mostly just an idea.

So, does anyone know if ARAX has a chance of becoming a client-side
scripting language in browsers like javascript? Or is there little
chance of this happening?

I would say, it’s inevitable, but it’s probably not ready yet. If it
happens, sadly, it’s probably going to be targeting JavaScript, rather
than native support in browsers.

Javascript is actually not a bad language in its own right, and it
actually does some things better than Ruby. I’d suggest using jQuery,
and reading Douglas Crockford.

On Mar 7, 9:26 pm, Kyle M. [email protected] wrote:

I remember reading about ARAX on slashdot, and after writing some
javascript recently, I really wish I could have written in Ruby instead,
as I know the language so much better.

So, does anyone know if ARAX has a chance of becoming a client-side
scripting language in browsers like javascript? Or is there little
chance of this happening?

You can do it with BrowserPlus – Yahoo’s answer to Google Gears. It
has client-side Ruby as an option.
http://browserplus.yahoo.com/developer/service/ruby/

– Mark.

Is there a site somewhere that elaborates on this a bit to get you
started?

Hi Charlie,

[email protected] wrote:

JRuby already works in a browser, and has for a couple years.
You can run as an applet, or with more recent Java 6 releases,
interact directly with browser-based JS and the DOM.

You got any links a fella could follow to find out more about how this
works?

Thanks,
Bill

Kyle M. wrote:

I remember reading about ARAX on slashdot, and after writing some
javascript recently, I really wish I could have written in Ruby instead,
as I know the language so much better.

So, does anyone know if ARAX has a chance of becoming a client-side
scripting language in browsers like javascript? Or is there little
chance of this happening?

JRuby already works in a browser, and has for a couple years. You can
run as an applet, or with more recent Java 6 releases, interact directly
with browser-based JS and the DOM.

  • Charlie