multiple-languages

Are there any reasons not to use "this" ("Self", "Me", ...)?

I read this answer and its comments and I'm curious: Are there any reasons for not using this / Self / Me ? BTW: I'm sorry if this has been asked before, it seems that it is impossible to search for the word this on SO. ...

Multiple Apps in Multiple Languages on different OS's. Should I attempt a unified Test Harness ?

I am the newest member of a project that is an amalgam of various Applications written in various Programming Languages on both Unix and Windows operating systems. I get the 'honor' of figuring out how to implement a nightly Regression Build/Test for all these various Apps. Unfortunately, these Apps were NOT built with TDD principles a...

How can I call an executable to run on a separate machine within a program on my own machine (win xp)?

My objective is to write a program which will call another executable on a separate computer(all with win xp) with parameters determined at run-time, then repeat for several more computers, and then collect the results. In short, I'm working on a grid-computing project. The algorithm itself being used is already coded in FORTRAN, but w...

How do multiple-languages interact in one project?

Hi there. I am a Youngster so i have a lot to learn :) A Question that stuck on my mind is : I heard some people program in multiple languages in one Project.I can't imagine how the languages interact with each other. I mean there is no Java method like myProgram.callCfunction(parameters); never happens .. or am i wrong ? :) ...

Dangerous learning multiple languages at the same time?

I have been learning PHP for a few months now and I'd also like to learn JavaScript as I think they would make a good set of languages together for the type of projects that I like to do. But is it wise to learn two languages at the same time? What are your experiences with this, do you get the syntax of each language mixed up with each...

How to design database schema for a content management system (cms) with multiple language support?

Hi everyone, I am going to build a site with multiple language support, and I need to have the ability to control the workflow of the articles, companies, products. All with multiple language support and multiple versioning. Does anyone have the solution for this already or I need to start from scratch? ...

Annotate images using tools built into OS X

I want to overlay text on images on OS X, preferably without installing additional software, so that, as a sysadmin, I can know at a glance that machines are up-to-date, in a way that is easily scriptable and easily modifiable, and can run without GUI access. [Being able to overlay images or apply color-changing effects would be a bonus...

Most efficient way to do language file in PHP?

Questions Updated instead of making a new question... I really want to provide a few alternative languages other then English on my social network site I am building, this will be my first time doing any kind of language translation so please bear with me. I am researching so I am al ear and open to ideas and I have a lot already here ...

Representation of enums

How do enums work 'behind the scenes' in programming languages? I am guessing that each language has a different way of representing these datatypes. In java you can use the == operator, for example: public class TestEnum { private enum Test { foo, bar } public static void main(String[] args) { System.out.println(...

Compiling multiple languages together

Is it possible to compile multiple languages together in order to get the best of the different languages. ...

Compiling multiple languages together to make them run on different platforms

I would like to start with a THANK YOU to all those that answered my previous question on Compiling multiple languages together. Now I want to know whether or not it's possible to Compile multiple languages together so that they would run on different platforms. ...

Managing multiple .NET languages in a web application

I am part of a development team building a new ASP.NET 3.5 web application. Two of us are C# coders, and the other is a VB.NET coder. I know that we can mix languages on a per-project basis, and one can build classes in one language that inherit from classes written in the other language in a different project (which we are already doin...

How to call a php function within <script> tag from coldfusion 9

I have this nice big Dev Kit written in PHP, but the application I'm currently developing is in CFML. In an attempt to avoid rewriting the PHP, I'm going to try to just wrap the PHP in CF <script> tags and call the PHP functions when I need them. Does anyone have any idea how to call one of those PHP functions inline in CF? ...