scripting-language Questions
7
Solved
I prefer to use scripting languages for short tasks, anything such as a really simple http bot, bulk importing/exporting data to/from somewhere, etc etc... Basic throw-away scripts and simple stuff...
Poundage asked 15/4, 2010 at 13:46
5
Solved
I am a beginner in python, and I was playing around with lambda functions.
I was writing a program using lambda function to print characters that are +1 the ascii value of the input characters. My...
Waterfront asked 19/9, 2015 at 15:46
6
Solved
I've seen some scripts examples over SO, but none of them seems to provide examples of how to read filenames from a .txt list.
This example is good, so as to copy all files from A to B folder
xco...
Impetrate asked 6/6, 2011 at 20:56
6
Solved
I'm looking for a good free scripting engine for Delphi. I want to add scripting to an application so that I can write small test scripts. Specifically I need:
Pascal-like syntax
current (I looke...
Driskell asked 10/9, 2012 at 0:17
13
Solved
In the many Python applications I've created, I often create simple modules containing nothing but constants to be used as config files. Additionally, because the config file is actually a Python c...
Wanwand asked 14/5, 2009 at 6:37
14
Solved
Can anyone explain the difference between Scripting Language and Programming Language please?
Also can you state some examples for each. I have Googled a lot but I always find the best answer...
Pellegrino asked 22/6, 2013 at 17:41
1
Solved
I want to use velocity language as Scripting language in JMeter's JSR 223 Sampler.
According to the list velocity can be used in JSR223,
According to the answer velocity should be added to JMeter...
Aeriela asked 15/8, 2017 at 4:51
7
Solved
I'm looking for a VM with the following features:
Small compiled code footprint (under 200K).
No external dependencies.
Unicode (or raw) string support.
Clean code/well organized.
C(99) code, NOT...
Monoatomic asked 12/3, 2011 at 0:49
4
Solved
Does anyone know of an implementation of a scripting language interpreter (something appropriate for a game) in Erlang? Something like Javascript or Lua would be great.
Consubstantial asked 21/12, 2009 at 6:28
2
I have a shell script with methods:
start(){
echo "Hello world"
}
stop(){
ps -ef|grep script.sh|grep -v grep|xargs kill
}
while [ "$1" != "" ]; do
case "$1" in
start)
start
;;
stop)
stop
;...
Value asked 1/7, 2016 at 2:37
2
I have a shell script with methods status() and start(). The code is below:
#function to check the jmeter processes running
status(){
PID=$(ps -ef | grep jmeter|grep -v grep)
echo "The jmeter pr...
Shotten asked 30/6, 2016 at 14:37
10
I'm getting a little rusty in scripting languages, provided they're popping like mushrooms lately :)
Today I thought that it would be nice to have a scripting language that talks seamlessly ...
Bulganin asked 30/6, 2010 at 14:54
9
Solved
I am trying to build out a useful 3d game engine out of the Ogre3d rendering engine for mocking up some of the ideas i have come up with and have come to a bit of a crossroads. There are a number o...
Moonlight asked 17/9, 2008 at 21:32
2
Solved
From what I've read so far, bash seems to fit the defintion of an interpreted language:
it is not compiled into a lower format
every statement ends up calling a subroutine / set of subrouti...
Malvern asked 10/5, 2015 at 20:33
8
Solved
I have a web-application. As part of this, I need users of the app to be able to write (or copy and paste) very simple scripts to run against their data.
The scripts really can be very simpl...
Uteutensil asked 24/2, 2011 at 0:27
3
Solved
Say I have the following Java API that all packages up as blocks.jar:
public class Block {
private Sting name;
private int xCoord;
private int yCoord;
// Getters, setters, ctors, etc.
publi...
Represent asked 15/7, 2014 at 18:55
3
So far I have tried the sling implementation for jsr223 scripting for scala, but was not able to get it set up correctly.
when I do this:
public static void main(String[] args) {
try {
new Scri...
Vibraculum asked 13/4, 2011 at 19:58
1
Solved
I'm trying to create a drop-down/combo box in VB Script. As per my understanding we need to create an instance for Internet Explorer and create a drop-down/combo box, something like this:
set oIE...
Culverin asked 20/3, 2013 at 5:54
2
Long time reader, very first question. fsi.exe is a .NET executable and therefore contains its own assembly complete with all the yummy methods and whatnot fsi uses to execute F# scripts.
Looking ...
Cheekpiece asked 9/1, 2011 at 1:26
2
Solved
Please, share your favorite links on this language where one can learn the best of it.
And also, please describe in few words the most important features of this language differing it form ot...
Sensitometer asked 18/11, 2009 at 11:30
2
Solved
What is an embedded scripting language? What are some advantages it would have over the domain specific language?
"A number of languages have been designed for the purpose of replacing application...
Greenaway asked 20/8, 2012 at 18:22
10
Solved
What tips can you give a person who is looking to write a programming or script language? I
am not worried about how to program nor design a compiler but how to develop one quickly using tool...
Tierratiersten asked 17/1, 2009 at 19:29
10
I am creating a scripting language to be used to create web pages, but don't know exactly where to begin.
I have a file that looks like this:
mylanguagename(main) {
OnLoad(protected) {
Displa...
Lysine asked 13/3, 2010 at 11:43
2
When writing interpreted languages, is it faster to have weak typing or strong typing?
I was wondering this, because often the faster dynamically typed interpreted languages out there (Lua, Javasc...
Castilian asked 10/3, 2012 at 13:9
3
Solved
I know there are a few questions floating around here on the subject, but it was hard to find anything useful to what I'm after...
I also know it will probably end up being quite the task to compl...
Hunger asked 15/1, 2012 at 5:58
1 Next >
© 2022 - 2024 — McMap. All rights reserved.