Tagged Questions
The polyglot tag has no wiki summary.
14
votes
5answers
382 views
IDE(s) for Polyglot programming
I'm working in Java, C ,Perl, and Bash (and a little python) on a project that all work together (mostly via RESTfull interfaces) and am looking for an IDE suited to Polyglot programming?
What IDE ...
14
votes
7answers
826 views
Is Polyglot programming important?
Trying to learn more about Polyglot programming.
What is it exactly and is it important?
I found this article by Ted Neward (Thoughtworks) interesting.
Article suggests that polyglot programming was ...
10
votes
1answer
683 views
What's the most complex/powerful code you can write that's valid in a maximum number of languages?
What's the most complex/powerful code you can write that's valid in a maximum number of languages?
So, for example, the following code is valid in both PHP and JavaScript.
function foo($bar)
{
$var ...
10
votes
11answers
470 views
Polyglot Programming: Is building applications with multiple languages a good practice?
I am considering building an application that is a blend of a dynamic language (python or ruby) and compiled language and need some help getting convincing myself that this is a good idea.
My thought ...
8
votes
3answers
302 views
Can Perl and Batch run in the same batch file?
I've got a batch script that does some processing and calls some perl scripts.
My question is if there was a way to put the perl code directly into the batch script and have it run both types of ...
5
votes
3answers
236 views
stackoverflow's “page not found” polyglot: what languages is it in?
At present, when a user of the popular Q&A website http://stackoverflow.com with under 10k rep tries to view a deleted question, she sees the following image:
(Note that the filename of this ...
3
votes
5answers
223 views
Why do you or do you not implement using polyglot solutions?
Polyglot, or multiple language, solutions allow you to apply languages to problems which they are best suited for. Yet, at least in my experience, software shops tend to want to apply a "super" ...
1
vote
3answers
149 views
Using Multiple Database Types to Model Data in a single application
Does it make sense to break up the data model of an application into different database systems? For example, the application stores all user data and relationships in a graph database (ideal for ...
1
vote
0answers
517 views
Rails 3.0.3 and Polyglot Gem problem
I hope you can help me.
I had a rails app running locally, and also uploaded and running on Heroku. All was well. Last week, I started work again and ran into a snag.
At the beginning of my day, ...
1
vote
1answer
60 views
Do programs written in a strict superset of a language count as a polyglot?
First of all, this is the definition of a polyglot:
In the context of computing, a polyglot is a computer program or script written in a valid form of multiple programming languages, which ...
1
vote
2answers
207 views
Maven 3 has a new DSL formats for its POM. Is there a similar sort of format for Spring applicationcontext.xml files?
In Maven 3 there are new DSL replacements for the POMs. See:
http://polyglot.sonatype.org/groovy.html
for the wonderfully terse syntax.
Is there something similar that can be used for Spring ...
1
vote
4answers
86 views
Should I use polyglot documentation?
It's possible to interleave a C++ source file with an HTML document:
//<![IGNORE[
/*]]>
<html>
<head>
<title>Example</title>
</head>
<body>
...
1
vote
4answers
422 views
Should I write Polyglot HTML5 documents?
I've been considering converting my current HTML5 documents to polyglot HTML5 ones. I figure that even if they only ever get served as text/html, the extra checks of writing it XML would help to keep ...
1
vote
1answer
74 views
Exception: “Invalid action number found in internal parse table.” Polyglot Exception
I am using an Compiler called Polyglot which is a highly extendable compiler for Java.
I seem to have run into this Exception while trying to compile some test code:
"Invalid action number found ...
1
vote
4answers
144 views
Should I try to reuse Ruby code in a Java project?
I'd rather not "reinvent the wheel" and I've found a Ruby project that provides functionality I need in my Java app (there is no preexisting Java project that does what I need - trust me, I've ...
0
votes
0answers
99 views
Scripting related question for a data-intensive application
I have recently started working on a project which is broken down into the following modules when viewed architecturally:
A Frontend for accepting file uploads and displaying results. (I
have ...
0
votes
1answer
301 views
Suggestion for Ancestry type Database: MongoDB, Redis, etc.?
I'm writing a ruby app that stores ancestry type data. I.e. Family tree.
For the rest of the application I'm using MongoDB for storage as it lends itself to a hierarchical structure, however ancestry ...
0
votes
3answers
287 views
Integrate applications using multiple programming languages into a Java application
Is there an open source application that could integrate applications using multiple programming languages into a Java application?
0
votes
4answers
122 views
What combination do you use for your polyglot solution?
Those of us who use multiple languages to solve problems can combine them in a lot of ways. Personally I use PL/SQL, XSLT, JavaScript, and Java plus the pseudo languages HTML, XML, CSS, Ant, and ...
-3
votes
1answer
132 views
Using multiple programming languages: what is the point? [closed]
I have looked this up and I still cannot find any sort of answer to this.
The thing I am referring to is Polyglot programming, which is the use of multiple programming languages to make an ...