Questions tagged [scripting-language]

A scripting language or script language is a programming language that supports the writing of scripts, programs written for a software environment that automate the execution of tasks which could alternatively be executed one by one by a human operator.

A scripting language or script language is a programming language that supports the writing of scripts, programs written for a software environment that automate the execution of tasks which could alternatively be executed one by one by a human operator.

Scripts can be written and executed on the fly, without explicit compile and link steps; they are typically created or modified by the person executing them. A scripting language is usually interpreted from source code or bytecode. By contrast, the software environment the scripts are written for is typically written in a compiled language and distributed in machine code form; the user may not have access to its source code, let alone be able to modify it.

For more information see Wikipedia Entry about Scripting language

275 questions
1
vote
1 answer

Squirrel, sqrat, error when binding class

I am trying to compile a program that binds a class so that I can use it with a squirrel script. I am using VS2010 under Windows 7 and have compiled the squirrel libraries and sqrat using the unicode character set with debug configuration. The error…
Alex
  • 458
  • 5
  • 17
1
vote
2 answers

scripting language - to execute on the server

I'm looking for a scripting language that would be: a scripting language that is embeddable in Java actually I mean something that will not be executed as a native code, but interpreted secure (users would upload their scripts which would then…
mabn
  • 2,473
  • 1
  • 26
  • 47
1
vote
2 answers

How to get number of pages in a PDF document regardless of version ? Some scripting language

How I can get the number of pages in a PDF document ? The document can have images too, and text in different font size. It should work with different PDF document versions. The answer can be in any scripting language, I will port them later to…
astropanic
  • 10,800
  • 19
  • 72
  • 132
1
vote
1 answer

How to make bindings support for a scripting language

I'm making a scripting language with a bytecode machine in C++ just for fun. I plan to use it with an editor for a simple game. But I need to change scene nodes' positions, rotations etc within a script. This means I have to plan a bindining system.…
Dmitry K.
  • 313
  • 3
  • 17
1
vote
0 answers

Deployment of Python to support embedded and extended ways

I'm currently trying to deploy a site-package using Python 2.7 in a project written in C++ and using SWIG. Everything works very well. Our application is distributed to many clients, and we have one big existential question: should our installation…
MasterMind
  • 379
  • 2
  • 17
1
vote
1 answer

How to make a simple predicate engine

I have a task in which user can: 1. Form any number of points any coordinates; 2. Delete points according to a criterion. I realized: 1. The case of a simple criterion (>, <, =, >= etc.). 2. The case of a composite criterion, which consists of two…
Kifsif
  • 3,477
  • 10
  • 36
  • 45
1
vote
2 answers

Convert a Classic ASP project to another language so I can develop on Mac

I have a site in ASP that I want to convert to a language that I can host on my Mac (I haven't found a practical way to host Classic ASP). The site connects to a MySQL database to pull data which is represented using Google Charts in a Dashboard. I…
190290000 Ruble Man
  • 2,173
  • 1
  • 20
  • 25
1
vote
3 answers

awk to translate config file to json

I have a config file like this one: [sectionOne] key1_1=value1_1 key1_n=value1_n #this is a comment [sectionTwo] key2_1=value2_1 key2_n=value2_n ;this is a comment also [SectionThree] key3_1=value3_1 key3_n=value3_n [SectionFor] ... I need to…
Viorel
  • 11
  • 2
1
vote
1 answer

Calculate area of intersecting triangle sets

Given two sets of triangles where the triangles in each set don't overlap but may share 1 or 2 points, what's the best way to calculate the area resulting from the intersection of both triangle sets (violet areas in image)? Is this a hard or a…
chiborg
  • 26,978
  • 14
  • 97
  • 115
1
vote
1 answer

Which scripting language and web server to use for mulltithreading

I am new to web programming I need to develop a web page running on a server, that needs to show progress status of 10 threads simultaneously. Also I would require SQLite database integration. Please tell me what are the options available for me for…
osum
  • 805
  • 2
  • 10
  • 32
0
votes
1 answer

Embeddable scripting language with in-memory runtime

I am looking for an embeddable scripting runtime that can operate entirely in memory and not require to store libraries on disk. It should match the following criteria: Be able to interact with Windows API and/or COM in some fashion; Could load…
Konrads
  • 2,206
  • 2
  • 30
  • 45
0
votes
3 answers

scripting language with easy UI development capabilities

I have to develop a simple application for Windows that manages a hashmap. Users will enter a keyword in a text area and get some data back, that's all it has to do. The backend part of this is dead simple but I'm unsure of how to produce the UI. …
user903724
  • 2,956
  • 4
  • 24
  • 27
0
votes
0 answers

Automatic saving of images in Photoshop using the Photoshop scripting language

I am trying to save images in the AV1 Image (.AVIF) format using a script. My version of Photoshop (20.0.5) does not support this file format, but I added this feature to the version via a plugin located at…
0
votes
1 answer

scripting or programming language?

Possible Duplicate: When is a language considered a scripting language? what is the difference between programming and scripting languages? I have worked on C/C++ for a while and now I started looking at Python, I was told it is a good scripting…
Syntax_Error
  • 5,964
  • 15
  • 53
  • 73
0
votes
1 answer

Why in JavaScript and so in other programming languages is not possible to do if (a==b==c) to compare 3 variable at once?

Why, objectively, in programming languages in general, as far as I know, isn't possibile to compare 3 variable at once doing something like this: if(a == b == c) { do something; } but it is necessary to do something like: if(a == b && b == c) { …
willy wonka
  • 1,440
  • 1
  • 18
  • 31