-
as seen on Stack Overflow
- Search for 'Stack Overflow'
In a system which requires use of multiple languages, what are the best practices to ensure a loosely-coupled architecture when code is calling another language's code?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
In a system which requires use of multiple languages, what are the best practises to ensure a loosely-coupled architecture when code is calling another language's code?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
In Prototype I can show a "loading..." image with this code:
var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars,
onLoading: showLoad, onComplete: showResponse} );
function showLoad () {
...
}
In jQuery, I can load a server page into an element with this:
$('#message')…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have built a variety of little scripts using Ruby's very simple Queue class, and share the Queue between Ruby and JRuby processes using DRb. It would be nice to be able to access these from Scala (and maybe Java) using JRuby.
I've put together something Scala and the JSR-223 interface to access…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I'm learning Ruby, and I'm starting to play with building extensions in C. I have Programming Ruby The Pragmatic Programmers' Guide and so I can follow that for the basic nuts and bolts. What I was wondering is if there already existed some nifty frameworks/whatever to help interoperability between…
>>> More