The State of Ruby VMs — Ruby Renaissance 89
igrigorik writes "In the short span of just a couple of years, the Ruby VM space has evolved to more than just a handful of choices: MRI, JRuby, IronRuby, MacRuby, Rubinius, MagLev, REE and BlueRuby. Four of these VMs will hit 1.0 status in the upcoming year and will open up entirely new possibilities for the language — Mac apps via MacRuby, Ruby in the browser via Silverlight, object persistence via Smalltalk VM, and so forth. This article takes a detailed look at the past year, the progress of each project, and where the community is heading. It's an exciting time to be a Rubyist."
Re: (Score:2, Insightful)
Web 2.0 is still gay.
To quote Mel Brooks' *The Producers*:
Ruby Javascript (Score:3, Insightful)
It would be so nice to be able to use Ruby instead of Javascript. :)
It is so much easier to write clean code in Ruby and since I use a lot of Ruby on Rails it would be great to be able to use the same code in the backend and in the browser. Go Ruby!
Re: (Score:2, Informative)
Re:Ruby Javascript (Score:5, Interesting)
Truly spoken like someone who doesn't know appear to know anything about Javascript, and has never programmed anything significant in it. Or Ruby either for that matter. If you do, you should have backed up your comments with real evidence and experience rather than just a few silly expletives.
How does Ruby retain Perl's syntax but not the semantics? Sounds like you're making this up. Have you ever coded anything significant in Ruby? I don't care for Ruby's syntax either (the ability to call functions with () means you can pass functions around as parameters), but that doesn't make Ruby any less powerful as a full OOP, dynamic language.
As for Javascript, try using it for something significant sometime. Write a firefox plugin or something. Javascript is here to stay and is the mainstay of client-end user interface code. Javascript is an extremely powerful and dynamic language, akin to smalltalk in it's power and flexibility. Javascript uses a prototype-based style of OOP that takes some getting used to but is very powerful indeed. Even better Javascript has functional and lisp-like qualities to it. Javascript has its warts. Some of them are apparent if you've ever used Gnome Seed with GTK binding, from what I've read.
Despite all this I'd rather use python in the browser to script DOM objects, but ahh well. I'm also bitter that epiphany dropped Python in favor of Javascript for writing Epiphany plugins. Sigh.
Re: (Score:2, Insightful)
Something in your tone tells me you're not the open-minded type. Maybe you just failed to get into the language, expecting it instead to fit your own mindset+knowledge ?
Re: (Score:2)
It's good to know your programming skills are orders of magnitude higher than your articulation skills. If you had mentioned these things in the first place, but dropped the childish language, you're post would likely be moderated a +5 insightful.
Re: (Score:2)
Amen! Javascript sucks. It's one of the key pillars of "Why Web Browsers Are The Worst Development Platform Ever".
Re: (Score:2)
Spell checker is useless I tell you. But read again... I wasn't commenting on his grammar. Nothing like a good flame war!
Re: (Score:2)
The problem is not that you abused the english language (though this does reduce your persuasiveness), but rather that you made an inflammatory (assertion based on emotion) statement with _nothing_ to back it up originally. Your grammar and childish language did not cause you to be modded down alone. It was your substance, or lack thereof, that got the mod. Mods do have agendas and are sometimes grammar nazis. But by and large, if you speak persuasively and logically you'll be modded up. If you're perc
Re:Ruby Javascript (Score:5, Interesting)
Faggot, I've had the misfortune of using both JavaScript and Ruby (for web development and scripting) more than you likely ever have, and ever will.
Or perhaps you're just some internet blowhard [penny-arcade.com] who likes to play to the peanut gallery? As you demonstrate very little in the way of knowledge in your posts, we'll never know. Your silly pronouncements of superiority in spite of very little knowledge of your interlocutor certainly make this a distinct possibility.
Have you looked at the syntax of Perl and Ruby? The vast similarities should be pretty clear to everyone but the stupidest of mental retards...then fuck off. You'll need to use both Ruby and Perl to experience Ruby's weak semantics compared to Perl.
You claimed that Ruby kept most of the syntax of Perl, but not the 'semantics' whatever that means in this context. Care to explain what you think it means, because you haven't so far?
I've used both, and there are similarities, but there are also many significant differences. The object system in Ruby is far less a tacked on afterthought, you don't have to declare variables with a prefix so there is less line noise, everything is an object, nicer blocks, etc. There is also quite a tradition of choosing the way which seems least surprising and sticking to it, as opposed to 'There is more than one way to do it' in Perl - that means radically different library classes.
The syntax of Ruby encourages legibility but keeps most of the shortcuts (in regexp for example) of Perl, while avoiding the horrific write-once possibilities of Perl which you seem to be so proud of (i.e. stuff can be done in fraction of a line of code); just because it can be done in half a line doesn't mean it should.
There is a spectrum from code which is far too verbose to code which is far too succinct (i.e. unintelligible even to the creator after a certain period), and I'd say Perl can be pushed too far to the succinct side, but that's personal preference really. It's quite possible to write good Perl code, but that doesn't make it the be all and end all of scripting languages, indeed several other languages are now more suitable for scripting if you prefer an object-oriented approach.
While I must agree with the sentiment that people who cheerlead for a certain language as radically different from all others need an education in the history and diversity of computer languages, to claim that Ruby is a bad copy of Perl without qualifying the statement betrays your lack of knowledge of the language, nothing more.
Re: (Score:1)
Look up "object semantics" and quit being meanypants.
Indeed, the "semantics" is a lot of what makes it great. And the Ducks.
Re: (Score:2)
Unlike many people, including yourself, I came to JavaScript after years of programming with much better languages.
Heh heh. It would have made a more interesting troll if you had stated your preferred languages and the reasons for their superiority rather than hiding behind vague comparisons to 'much better languages', and explain *why* you feel Javascript/Ruby/EvilLanguageX are so impoverished, and what is better about other languages. There are plenty of things to criticise in all of them.
The fact you think Perl, which has many faults of its own, and still hasn't fully integrated oo, among other things, is clearly a g
Re: (Score:2)
Unlike many people, including yourself, I came to JavaScript after years of programming with much better languages.
Me too, however I still don't see it as "shitty"
Re: (Score:1)
You gave a great example yourself:
That tiny syntactic change -- which you describe as line noise -- moves variable scoping out of the realm of heuristics you have to guess about because they depend highly on containing context. You can still make a mess of lexical scoping in Perl, but at least you have syntactic hints about wh
Re: (Score:2)
Thanks for the cogent response.
That tiny syntactic change -- which you describe as line noise -- moves variable scoping out of the realm of heuristics you have to guess about because they depend highly on containing context.
I agree that's one use for it, but I'd prefer to strictly use objects to scope variables which need controlled, and get rid of all the $. Much like the ; at the end of the line, it's not necessary (IMHO) and just means more typing. I haven't run into many problems scoping variables in Ruby, whereas in Javascript the var is obligatory because of the strange scoping rules, and the odd rules still trip me up. So I'd say it depends on the rules of the language whether scoping will
Re: (Score:1)
That includes loop iterators (yes, I know these are rare in Ruby with pervasive blocks) and block-local variables not declared as incoming parameters. I'm curious to see idiomatic Ruby code written using only instance variables where a more straightforward approach would use lexicals. (Don't forget that if you have a method_missing on the object, you have more work to do to catch variable typos.)
I remember multiple debates ov
Re: (Score:2, Flamebait)
There is nothing wrong with Python that a block closure character wouldn't cure; but sadly the fucking IDIOTS who decided that a fucking INDENT aka a TAB is proper for a block closure more then deserve the scorn that has been heaped upon them and if I ran the Epiphany project I would have done the same but I am sure they did what they did for a myriad of other reasons.
When the language gets a block closure character I will actually look it it's utility, until then it goes on the scrap pile.
Re: (Score:2)
He sure is! Have you ever watched Quest for the Holy Grail?
Re: (Score:2)
Re: (Score:3, Insightful)
Re: (Score:2)
There's nothing stopping you from writing a Ruby DOM interface, and modifying your favorite browser to understand [script type="text/ruby"] tags on websites. It's all designed to be language-neutral, I have no idea why there's never been an effort to create more language options. (Well, IE had ActiveX, but that was never picked-up for obvious reasons.)
Re: (Score:2)
Nothing, except getting the browser makers to distribute it for you, especially Microsoft, at the expense of the technology(ActiveX) they developed to do just that, plus increase their stranglehold on desktops.
Why would they let you do what they failed to do?
Re: (Score:2)
Whine, whine. I never said it would be easy, I said it's possible.
Re: (Score:2)
ironically, you can write Silverlight apps in IronRuby that can manipulate the DOM.
Re: (Score:2, Interesting)
Sounds like the start of a Ruby fanboi crowd right here on /.
Javascript is a powerful functional protyped-based language that is just as powerful as any other dynamic language. Libraries like jQuery show just how powerful and expressive the language can be while applications like google maps, gmail, etc show how capable the language is.
It gets most of its negative sentiment from devs who don't understand it fully to appreciate its strengths. I would suggest using the resources on http://www.crockford.com/ja [crockford.com]
What do you mean by clean? (Score:2)
It is so much easier to write clean code in Ruby
How come? What do you mean by clean?
I know Javascript a lot better than I know Ruby, but I've got at least some mild experience with the latter, and so far, I don't see any particular feature of the language that suggests to me that Ruby's on a higher plane. Perhaps you could point out some?
it would be great to be able to use the same code in the backend and in the browser.
It would, which is one reason why it's exciting to see Javascript gaining traction on t
Re: (Score:2)
It would be so nice to be able to use Ruby instead of Javascript
The article had a couple links to Gestalt [visitmix.com], which does just that (for both Ruby and Python), for browsers that have Silverlight or Moonlight installed.
Re: (Score:2)
I have long said that Webbrowsers should be scripting language independent. They should be (like) plug-ins. With the same API exposed into it.
JS is actually pretty great, if you know how to use it. Which most that complain about it don’s. Or how many of those actually do functional programming in it, or really understand prototype-based object orientation?
I am for adding Python, Ruby, Haskell, OCaml, Erlang, but NOT C/C++, Perl or Lua. Maybe Java. Big maybe. ^^
Then again, I am a friend of well-designe
Re: (Score:2)
I have long said that Webbrowsers should be scripting language independent. They should be (like) plug-ins. With the same API exposed into it.
Yeah! And we could call it... Windows Scripting Host! And third-party languages like ActivePython would work like a charm in the browsers! At least as long as it is Internet Explorer...
Renaissance? (Score:2)
Ruby at a sight (Score:2, Interesting)
I've gotten to use Python in the last couple of years - it's concise, expressive, whole lot less verbose (compared to Java, C) but bit problematic when trying for tighter design with bigger scopes.
What are the pluses/minuses of Ruby compared to Python? Has it dumped all its Perlism now? (I looked at Ruby briefly years back).
Re: (Score:1, Insightful)
You didn't apparently look deeply. Ruby didn't resemble perl then, and it doesn't now. Ruby is far more powerful and expressive than Python.
Ruby did borrow some things from Perl, but it borrowed far more from Smalltalk.
Re: (Score:2)
On more than one occasion I've made fools cry because I broke their scaffolding...
Ha! That's the quote of the day :)
For what it's worth, I don't mind Ruby. I don't particularly like it, but I don't mind it. The (lack of a) type system makes it unwieldy for any serious endeavor. I'll bet you anything that a Java developer with Eclipse or Netbeans can work at least twice as fast as any Ruby/Python/Perl developer. Not to say Java is good for all things...
Now, with Python, doesn't the significant whitespace pretty much rule it out for use as a headache-free templating language? Or is that no
Get a closer look.. (Score:2)
Hey. I'm using lambdas and procs all the time. It helps to make loops and other construct more abstract and shareable between different parts of the code. Basically, lambdas can fit neatly between classes and functions in reducing lines of code (Don't Repeat Yourself principle), making the code more both more readable, more maintainable and less error-prone. Basically, I hardly need to document my code anymore, as the code speaks for itself - due to the expressibility of Ruby and well-chosen design of code
Re:Ruby at a sight (Score:4, Informative)
What are the pluses/minuses of Ruby compared to Python?
Short version : Same Same but different.
Re:Ruby at a sight (Score:5, Informative)
``I've gotten to use Python in the last couple of years - it's concise, expressive, whole lot less verbose (compared to Java, C)''
On those issues, Ruby isn't very different. In fact, I think the reason there are so many heated debates about which of Ruby and Python is better is exactly because, all things said and done, the differences don't matter that much and your preference is largely a matter of taste.
``but bit problematic when trying for tighter design with bigger scopes.''
Ruby borrows features from other great languages like Lisp and Smalltalk, which allow it to more naturally express paradigms other than imperative, and classes-and-methods. On the other hand, there is something to be said for Python's "one way to do it", as well.
Comparing Ruby and Python, I find that Python programs tend to have cleaner syntax (fewer hieroglyphs in the code) whereas Ruby programs tend to have cleaner structure (program more closely expresses what is being done because the language is multi-paradigm).
For programming in the large, both languages have about the same advantages and disadvantages: you have metaprogramming, which is a big plus, but no static checking, which is a minus. Personally, I feel like metaprogramming is an integral part of Ruby programming, whereas, in Python, it runs contrary to the spirit of "one way to do it", but Python does support metaprogramming and plenty of people are putting it to good use.
``What are the pluses/minuses of Ruby compared to Python? Has it dumped all its Perlism now? (I looked at Ruby briefly years back).''
Ruby definitely hasn't dumped its Perlisms. That's both a blessing and a curse: on the one hand, it allows for ugly programs, on the other hand, sometimes it's useful to say in a few hieroglyphs what would otherwise require lots of boilerplate code. Again, taste plays a role, but I must note that many languages that forgo Perlisms usually end up adopting regular expressions anyway, only with less power and more leaning toothpick syndrome. Given the choice, I'd rather have first-class regular expressions like Perl, even though they are the worst offenders in making Perl code look like line noise.
Basically, if you like Python for its purity, you'll probably detest Ruby. It's messy. But if you like Python for its expressive power, you may like Ruby because it offers you more of that. If you like Python but want static typing, don't bother with Ruby, because it won't give you that. You might be better off trying OCaml, Haskell, or Common Lisp (with appropriate compiler) in that case. If you're looking for speed, those are better options, too.
Re:Ruby at a sight (Score:4, Informative)
In fact, I think the reason there are so many heated debates about which of Ruby and Python is better is exactly because, all things said and done, the differences don't matter that much and your preference is largely a matter of taste.
Indeed. It probably won't make much sense to switch from ruby to python or python to ruby, unless you get paid to do that.
Re: (Score:2)
Or there exists code you need for one language that isn't available for the other...
Re: (Score:2, Informative)
Re: (Score:1)
Re:Ruby at a sight (Score:4, Insightful)
Personally, I feel like metaprogramming is an integral part of Ruby programming, whereas, in Python, it runs contrary to the spirit of "one way to do it", but Python does support metaprogramming and plenty of people are putting it to good use.
You have heard of the concept of functional programming, have you? If functions are first-class citizens in data-type world, there is no separation between functions and data (or algorithms and data structures) anymore. So there is no point in a word like “metaprogramming”. What those languages support, is metaprogramming. And it’s sometimes shocking how much it exactly looks like Haskell (where everybody steals from nowadays). ^^
JavaScript also belongs into that family.
As soon as you understand Haskell, suddenly, all those languages become much more intuitive, expressive and useful. (I love higher-order functions! ^^)
Re: (Score:3, Interesting)
``You have heard of the concept of functional programming, have you? If functions are first-class citizens in data-type world, there is no separation between functions and data (or algorithms and data structures) anymore. So there is no point in a word like "metaprogramming". What those languages support, is metaprogramming.''
Not quite. Metaprogramming [c2.com] is programs operating on programs. In that sense, there isn't actually a real need for a language to specifically support metaprogramming, because you can al
Re:Ruby at a sight (Score:5, Interesting)
Negatives:
Re:Ruby at a sight (Score:4, Informative)
A lot of mindshare and goodwill, centering on the Ruby on Rails framework.
Nothing against Rails, but there's a lot more to Ruby and the Ruby community than that one web framework.
Re: (Score:2)
I know, I myself have written several tools in Ruby CLI and RubyCocoa for work and other things, but Rails is really how I, and a lot of people over the last few years have received their entre to the language.
Rails it the reason there are now 6-odd OSS projects trying to speed up Ruby interpretation. For a long time Rails just couldn't compete on raw metrics with Python and PHP, but Rails was simply so much better from a developer workload standpoint, and its evangelist so much more organized, that now R
Re: (Score:1)
I know, I myself have written several tools in Ruby CLI and RubyCocoa for work and other things, but Rails is really how I, and a lot of people over the last few years have received their entre to the language.
Rails was my introduction to Ruby, and the reason I hated it. Once I found learned about the language itself, it was the start of a new love.
Just sayin', there are different experiences out there.
Re: (Score:1, Interesting)
It'd be good if you'd actually been familiar with Python before comparing the two.
Like Python.
This is convenient, but it's nothing more than a convenience, and not one you have to use often.
Like Python.
Many Python programmers would probably consider this a bug, not a feature.
Here's something that's an actual, genuine advantage, and that I wish Python had.
Like Python.
This is another act
Re: (Score:3, Informative)
Continuations have been removed from the core of Ruby, though they remain a library feature available with the main Ruby 1.9 implementation. They were removed for a number of reasons -- one is that no one was using them directly in production code (in part, that
Good News (Score:5, Insightful)
I'm glad to see so much work is being done on Ruby, and especially that people are working on compiling Ruby to native code. Ruby is a great language, but there is no denying that the old implementation (MRI 1.8 and before) is dog slow.
Re: (Score:2)
To quote the great Kottke:
...I've been sitting here copying a file to a floppy disk on my Mac design work station, the file is 5 megs and I've been waiting 20 minutes!!...
Benchmarks or it didn't happen. (Score:4, Insightful)
I've worked with Ruby for over a year and a half, and I can say with absolute confidence that the language is horrible. You can flame back to this all you want...
That might be an interesting discussion, actually, but:
...the fact remains that it's a slow blob and throwing more hardware at it is a stupid argument.
See, that's a property of the implementation, not the language. You have noticed what's happened to Javascript lately, right? It used to be slower than Ruby. With v8, it's faster than Python.
Also, you fail to address why throwing hardware at it is a stupid argument, and you don't provide any benchmarks that it's slow.
No major VM is going to make it rival the top languages in raw processing power (C/C++/Java even Python).
If you actually looked at benchmarks, you'd notice that if nothing else, Rails beats PHP, consistently, for performance.
And Rails "automagic" combined with Ruby's inability to report exceptions in a meaninful way (the backtrace is 99% rubbish, and often reports the error in a place where it didn't even occur)
It would help if you actually gave an example here, but you don't. In my experience, the backtrace is actually quite helpful, but use of unit tests and specs helps avoid it.
As for Ruby in a browser - there's already projects that do that, and do it fairly well.
Which is one of the things TFA is about. So what's your point?
Some of them use Applets, which is where suddenly everyone has a hissie fit. Yeah, using a proprietary Windows-centric tech like Silverlight is a MUUUUCH better option.
I suspect Silverlight is at least faster to load, but I haven't tried doing either. Javascript does what I want it to do well enough.
Or writing a VM in JavaScript? Talk about MOLASSES!
Again, benchmarks or it didn't happen. Make sure to test it in one of the better Javascript engines, like v8.
If I want to use a quick scripting language with ample flexibility and power, I'll use Groovy, thank you very much. For one thing, Groovy and Grails gives me a LOT more choice as flexibility over RoR any day of the week.
Can you give an example of how? I mean, for one, there only really seems to be Grails, whereas Ruby has more web frameworks than VMs, and that's saying something. Take Sinatra, for example:
That's right, a REST DSL. What has Groovy got, again?
So, Rubyists, have your little childish flames now.
That's the most literal example of flamebait I've ever seen. Unfortunately, it doesn't look like anyone's really flaming you back. I'm the closest, and I'm just asking for facts.
And don't assume I'm a "n00b" - I've got over 15 years IT experience in more languages that I can list in this comment block.
With all that experience, you couldn't figure out that the comment block seems to allow very, very long comments -- almost certainly longer than the total list of programming languages that exist?
More importantly, you seem to have fallen into the same trap that Jerry Taylor [centos.org] did. I have no idea what your experience is, but it certainly doesn't seem to be reflected here.
Re: (Score:2)
No, not those, but benchmarks which measure actual web performance, not merely fibonacci.
Try these [slideshare.net]. Note that when we actually compare a full framework (Cake vs Rails), Rails is faster, and Merb is much faster. When we try to compare closer to the bare metal (raw PHP), we find that the Merb controller is almost as fast, and the Merb router is much faster.
Also, the page you linked to links to this [php.net], which is actually less about PHP and more about your app in general. Ruby may be the bottleneck more often than
Re: (Score:1)
Dynamic languages renaissance (Score:3, Informative)
This is an exciting time not only for Ruby, but for other dynamic languages as well, especially javascript and python. .NET which opened the door to IronRuby.
For example python has a number of different implementations on the works that are starting to show good results in performance improvements.
Pypy (python in python) is already able to generate very fast numerical code, its JIT is making progress at good pace since the last months, and a new release is expected for the end of January.
Unladen Swallow is a Google sponsored project which aims to speed up the current cpython implementation, by implementing a jit with llvm, amongst other modifications. Their goal is to speed up current applications used by google in a relatively short time (they don't want to mantain a python implementation forever, this is an incremental improvement of cpython), and they concentrate in web applications that use c extensions.
Psyco, which is an extension module which speeds up python by a large margin and has been around for some years, has been revamped to version 2 and shows significant improvements as well.
We can also mention Ironpython, the implementation of python in
And there are many other minor efforts and one-guy projects that may give us surprises in the near future. For example CrossTwine linker (for python and ruby), Hotpython ( a new virtual machine built from the ground up to be fast), etc, etc...
As for javascript, those who thought it would be a dead language by now were plainly wrong. Google's V8 is a success and runs code at holy crap speed. Safari's Nitro followed suite.
no cardinal? (Score:2)
Re: (Score:1)
Cardinal still exists; it could use a couple of people concentrating on it.
Re: (Score:1, Interesting)
Let's translate that for everyone who doesn't speak the same language of bullshit that the Parroters all speak:
"Cardinal is a dead project. You can find old, shitty code for it, but don't expect it to compile or do anything useful. Even a illiterate Republican from Arkansas could make a helpful contribution to this project."
Re: (Score:2, Informative)
The dominant meaning of "translate" used by native English speakers generally implies some non-zero amount of veracity.
Cardinal [github.com] hasn't had much activity in the last couple of months because there have been only a couple of people working on it lately, and one of them started a new job at the end of September.
Even so, it exists, it passes tests, and it can interoperate in the same Parrot process with Perl 6 and Perl 5 code. (I suspect it can work with other Parrot-hosted languages