In computer programming, a script is a program or sequence of instructions that is interpreted or carried out by another program rather than by the computer processor (like a compiled program is).
-2
votes
1answer
79 views
Python scripts link to GUI using an IDE [closed]
I am studying python. Now I can write python scripts(codes) to some extent.
I am interested in making GUI to those written programs.I like to do it using an IDE rather than using PyGTK or Tkinter.
Can ...
4
votes
4answers
174 views
Is it practical to write exit codes in a script where the outcome is more complex than success/fail?
Where I work, we're in the process of automating a lot of tasks that currently need to be run manually by an IT person to determine if the next task can be performed (the second task depends on ...
2
votes
3answers
386 views
why javascript is widely used scripting language in web applications? [duplicate]
I cant find plugins written in other languages other than javascript. There is browser support only for Javascript. Why didn't they use other scripting languages other than Javascript when people ...
2
votes
0answers
80 views
Script language native extensions - avoiding name collisions and cluttering others' namespace
I have developed a small scripting language and I've just started writing the very first native library bindings. This is practically the first time I'm writing a native extension to a script ...
2
votes
3answers
124 views
Parsing Text Tokens in Script Files
My team is wanting to migrate away from compiled code to dynamic code. We have a wide variety of customers and each has different business rules. Instead of having a single compiled code base, we are ...
0
votes
5answers
379 views
scripting support in a C# application [closed]
what is the simplest and fastest way to support simple scripting in a .Net application?
I search a lot but only find many things with practical no documentation or outdated since years.
I only need to ...
2
votes
2answers
167 views
May non-GPL-compatible scripts be linked at runtime to a GPLv3 library, by that (GPL) library itself?
First of all, pardon the title, as it's not very clear. I have an application I am writing that is GPLv3, and is in Java, which means that classfiles are generated and linked to for general operation. ...
2
votes
1answer
189 views
When to use embedded script language?
I already read some post about the why use embedded script language but I want to ask when to use it.
I have implemented an Objective-C / Javascript binding framework which allow me to write ...
-2
votes
2answers
254 views
Timeline of a programmer in terms of languages? [closed]
Alan Perlis once said: "A language that doesn't affect the way you
think about programming, is not worth knowing".
I am not proud of the fact that I started programming with scripting languages ...
3
votes
5answers
409 views
Is it bad to place “include directive” within main function?
It is always said that the include directives should be placed at the beginning of a script. The main reason is to make the functions available throughout the script. Regardless of this fact, is it ...
1
vote
1answer
121 views
LuaJit FFI and hiding C implementation details
I would like to extend an application using LuaJit FFI. Having seen http://luajit.org/ext_ffi_tutorial.html this is surprisingly easy when comparing this to the Lua C API. So far so good. However I do ...
1
vote
3answers
959 views
Is node.js a good fit for background processing?
I'm slowly learning node.js and have a small project I want to start. The project will have a lot of background processes (downloading data from external sites, parsing CSV files, etc.).
A big "win" ...
2
votes
1answer
289 views
Static code analysis for bash scripts
I program CLI utilities in bash to automate much of my work as a DBA.
I would like improve my code and make it more robus,t maybe with the help of some static code analysis tool like the one I used ...
2
votes
0answers
39 views
How to document legacy code (shell scripts)? [duplicate]
I got involved into a project where we are taking over a bunch of legacy code. Code is basically shell scripts and PL/SQL packages/procedures/functions. There is no documentation how the code works ...
0
votes
1answer
126 views
Could I have a real-world example of using the Spring scripting module in your Java application?
The Spring framework supports the use of scripting languages (specifically JRuby, Groovy and BeanShell) whereby a script in any of these can call Java code and vice versa.
I have read that a possible ...