The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
7 views

Eclipse Graphiti, How to add Palette entries during runtime? [migrated]

I'm trying to build some editor and it need to be very flexible/adjustable. So i know which Elements i get in the Palette recently at Start or at run-time of my Editor. My idea is i load which ...
6
votes
1answer
183 views

Difference between language virtual machine and emulating vm?

I'm having a hard time understanding the difference between an emulation virtual machine and a language vm. I started with the research and implementation of an emulation virtual machine. Primarily ...
1
vote
1answer
294 views

What are Web runtime environments and programming languages

I've been looking into the details behind these two different categories: Web runtime environments Web application programming languages I believe I have the correct information and have phrased ...
2
votes
1answer
419 views

What is the Big-O time complexity of this algorithm [closed]

I was wondering what the run time of this small program would be? #include <stdio.h> int main(int argc, char* argv[]) { int i; int j; int inputSize; int sum = 0; if(argc == 1) inputSize ...
1
vote
1answer
114 views

Sencha Ext JS run time license

Do you need to buy a run time license from Sencha if your application code written is developed in Ext JS and deployed on a web server? http://www.sencha.com
2
votes
1answer
802 views

What is the difference between APIs, Libraries, Runtime systems, and frameworks? [duplicate]

Possible Duplicate: Library vs. framework vs API? I am having hard times understanding what these concepts really mean. This software stack thing is very confusing. Can you please help me ...
6
votes
4answers
188 views

Are there any languages that allow the static context of a method call to be available at runtime?

Is it possible for a method to know the type of the method it is called under? So for example in the following object orientated psuedo code: Instance io = new InstanceSubclass(); io.doStuff(); Is ...
2
votes
2answers
508 views

Is Node.js “considered” to be its own programming language?

Whenever I read blog posts about a new app that had Node.js involved, bloggers often write "the app was written in node." But I hardly ever see a phrase going like "the app was written in JavaScript, ...
5
votes
5answers
368 views

Which language should I use for a computationaly intensive program?

This is a multi-part question. I am writing a computational intensive program that will preform computations on very large numbers, on the scale of factorial(100) . I'm considering using Java or c++ ...
2
votes
1answer
551 views

Why do my java programs run faster in eclipse than in BlueJ?

I've been programming for about 2 years, and so far Java is all I know. When I made the switch from BlueJ to eclipse I noticed my old projects ran much faster. What would be the reason for this, as ...
13
votes
6answers
1k views

How do I determine the runtime of a double recursive function?

Given any arbitrarily double-recursive function, how would one calculate its run time? For Example (in pseudocode): int a(int x){ if (x < = 0) return 1010; else return b(x-1) + ...
6
votes
5answers
533 views

How did they count the number of lines of code executed at runtime?

There was a PC game released in 2001 called Black & White by Lionhead studios in which there was a lengthy statistics page which updated in real-time. There were stats such as how many people ...
7
votes
4answers
677 views

Building a DSL: Scripted atop a general-purpose language or stand-alone?

I'm debating designing a domain specific language to simplify a given, obscure programming model. Part of the debate is whether to build it (as a script) atop an existing language/runtime (e.g. Java) ...