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.
...
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...
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...
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 ? :)
...
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...
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?
...
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...
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 ...
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(...
Is it possible to compile multiple languages together in order to get the best of the different languages.
...
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.
...
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...
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?
...