|
What is meant by framework, programming language and scripting language?
Started by nicky on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
We should dispense with the term "scripting language" and just call them all programming languages questions?
http://en.wikipedia.org/wiki/Framework
http://en.wikipedia.org/wiki/Scripting_language
http://en.wikipedia.org/wiki/Programming....
|
|
Possible Duplicates:
What do people mean when they call something a “scripting” language?
What’s the difference between a programming language and a scripting language?
When is a language considered a scripting language?
What is different between script...
Started by masoud ramezani on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Also programming ....
You use it to program computer to perform (but not always) a program written in some "full-programming" language results in a native executable which you).
A scripting language is still a programming language.
|
|
Programming languages seem to go through several stages. Firstly, someone dreams up a new language, Foo Language. The compiler/interpreter is written in another language, usually C or some other low level language. At some point, FooL matures and grows...
Started by Matthew Scharley on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I would say of the language in the language....
A compiler/interpreter of any Turing machine, so any Turing-complete language should be enough :)
One to be very happy trying to implement a programming language in a Turing machine.
|
Ask your Facebook Friends
|
Are assembly language and machine language (for the same underlying system) really the same? Are there any differences between these two concepts?
Started by freenight on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Otherwise the assemly language is the equivalent of the machine language makes, for example, addressing....
With assembly language you processor instruction.
Assembly language is a convenience mechanism over the machine language.
|
|
What makes a language a scripting language? I've heard some people say "when it gets interpreted instead of compiled". That would make PHP (for example) a scripting language. It that the only criterion? or is it a coincidence, and are there other criteria...
Started by Sietse on
, 21 posts
by 21 people.
Answer Snippets (Read the full thread at stackoverflow):
"Scripting language" is one_source.pl
Given the above criteria PHP ....
Of course not a precise definition, more a way to think if it .
I would say scripting language on.
For example, JavaScript runs inside your browsers scripting engine.
|
|
Is there in HTML 5 filtering language or some analog of filter language? Something like GLSL / HYDRA / HLSL or just JS pixel filter/shader lib?
Started by Ole Jak on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Good luck ....
You'll probably have to come up with a hybrid of SVG/VML/ActiveX/Canvas and JS or just use Java .
You certainly won't find anything standard that will work with IE .
No, the closest thing to what you want is SVG filters, or perhaps canvas+JS .
|
|
Ignoring skilled people, libraries, and tools in both types of languages, are there good reasons to pick an OO language over a functional language? For what kind of projects?
Update: I ask this question because I have read so many good things about functional...
Started by StackUnderflow on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at stackoverflow):
Are never equal, if they were then the language itself would be more of a preference and would be chosen on how you categorise C, so ignoring that for now)
Which language to pick is always tricky, and as someone pointed out, it will be....
|
|
Every once in a while I'm confronted with displaying a list of available languages, and each and every time I ask my self:
Is it better to display the language in:
the currently selected language English in the language according to the button/list item...
Started by DR on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
Reasons:
If it's not the....
I definitely think you should display in the language that matches the item in the button list.
Use country-flags in combination with the language name in that language (Deutsch, Francais, Nederlands, ...).
|
|
I got the idea for this question from numerous situations where I don't understand what the person is talking about and when others don't understand me.
So, a "smart" solution would be to speak a computer language. :)
I am interested how far a programming...
Started by kliketa on
, 32 posts
by 32 people.
Answer Snippets (Read the full thread at stackoverflow):
It's easy for non-programmer types to learn, so the syntax must... .
Depends on what circles you roll in, but LOLCODE could be considered like natural language? KTHXBYE IM OUTTA YR LOOP KTHXBYE
On a serious note, VB is a pretty natural language.
|
|
I've only recently come to really grasp the difference between static and dynamic typing, by starting off with C++, and moving into Python and JavaScript. What I don't understand is how a dynamically-typed language (e.g. Python) can be implemented on ...
Started by Skilldrick on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
(I don't know C++ very well, but I think you'll dynamically typed language is represented....
Every variable in the d-t language is represented as a struct { type, value }, where a value, use these vars like in dynamically typed language.
|