All Questions
10 questions
2
votes
1
answer
1k
views
Designing a program that runs scripts on multiple computers (Java)
I've been trying to design a program in Java (because I might need to create an app that does the controlling part) with GUI that can run scripts on a few local computers.
It should do the following:
...
3
votes
1
answer
130
views
Is it unreasonable to implement a small domain specific scripting language?
At my new job, they are currently spending scores of labor hours that we don't have to do manual QA testing after every build. Nothing is automated at all. (We can only afford three developers, and ...
32
votes
6
answers
6k
views
Dynamic Code Evaluation in Java - Clever or Sloppy?
I am trying to create a flexible ACL framework in Java for my application.
Many ACL frameworks are built on a whitelist of rules, where a rule is in the form of owner:action:resource. For example,
"...
2
votes
2
answers
295
views
Recreating files from shell script or java?
I have java application which takes a file, which is created by a process running on terminal. I start the process using a small shell script. Then run the Java application and it reads the file ...
1
vote
2
answers
237
views
Using Python/Ruby/Lua for Java startup scripts
I have a number of distinct Java utilities that are shipped together. Currently there are two startup scripts for each utility: a .sh one for Linux and a .bat for Windows.
I'm thinking of rewriting ...
4
votes
2
answers
576
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. ...
1
vote
1
answer
1k
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 ...
4
votes
4
answers
4k
views
When are scripts inside HTML not considered a bad practice?
I am new to web development. While studying the Play framework and JSP, I noticed that they both give an option to place script (in jsp scriptlet) inside HTML, but in both books I am reading they both ...
0
votes
1
answer
251
views
Lua-type Java integration with C++
So I'm curious:
I've implemented Lua within C++ a few times before, and while it was relatively simple, it still didn't harness the power that I would have liked.
I love how eclipse works, ...
29
votes
5
answers
19k
views
Is programming in Python faster than in C, C++ or Java? [closed]
There's a widespread belief among programmers that the more dynamic and loosely typed the language, the more productive the programmer will be in it. Guido van Rossum wrote about programming ...