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.
-3
votes
1answer
37 views
Need guidance in writing a unix script to compare the files in source and target directories
i want to write a unix script where:
source dir:/test1/jobs/def1,def2,def3....so on
target dir:/test2/jobs/def1,def2,def3....so on
scenario1: i want to compare that jobs folder in source and target ...
0
votes
0answers
7 views
A script to gather information from a website and put it in an database
Today, my boss told me to verify the prices from our website to see if they are wrote right and there aren't any price differences between what we have from our suppliers and our website. What ...
0
votes
0answers
21 views
How do I create a native (C) generator?
I've been embedding Squirrel in a few small projects now and I'm quite familiar with the API, but I haven't ever come across a way to create a native generator...
My specific use case is as follows:
...
1
vote
2answers
43 views
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 ...
0
votes
1answer
46 views
Rename a vbscript process
When we run a *.vbs file, in processes, we used to get "wscript.exe". We can change this "wscript.exe" to our custom name by creating a shortcut and executing the shortcut.
Is it possible to display ...
0
votes
0answers
11 views
break/rerun lines in dynamic/scripting languages?
Lets say I want to make a scripting languages and I want to set a breakpoint and have the ability to run the line again or change/add a few lines and run those.
I guess I need an IDE support that ...
0
votes
0answers
18 views
scripting - number matching vs string matching operator, why both?
This may sounds weird but I did not found it anywere, why there are operators for matching strings and another operators for matching numbers. Number matching operator can be easily replaced by string ...
3
votes
1answer
107 views
Which programming language is simplest to use (for the user) as an integrated scripting language? [closed]
I'm writing a multiple choice test program for teachers. The formula for the marks is:
(points awarded) / (maximum score) * 5 + 1.
This gives a mark in the range [1,6].
Now I want to add a ...
1
vote
1answer
62 views
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 ...
7
votes
1answer
216 views
Display a drop-down/combo box in VB Script
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 = ...
0
votes
0answers
21 views
General Purpose or Specific IDEs? [closed]
I program in a few different languages and I mostly use eclipse for scripting/programming languages like python and java, microsoft sharepoint designer for HTML (I know it sucks, I'm moving away from ...
0
votes
1answer
62 views
VB Script does not recogonize the actual parameter
I've two VB Scripts. Say First.vbs and Second.vbs.
Frist.vbs calls Second.vbs each time some action/event happens.
I am trying to send two parameters from Frist.vbs to Second.vbs using the following ...
0
votes
2answers
49 views
How to exit all the VB Scripts which was started by me
I have two VB Scripts, say First.vbs and Second.vbs.
First.vbs calls Second.vbs each time some action/event happens.
I want to write a new VB Script, say Third.vbs, which terminates all the ...
0
votes
0answers
43 views
How to get the time at which the file is modified?
I've following script:
intInterval = "2"
strDrive = "c:"
strFolder = "\\Test\\"
strComputer = "."
Set objWMIService = GetObject( "winmgmts:" & "{impersonationLevel=impersonate}!\\" & ...
0
votes
1answer
69 views
Error in regex formulation for web scraping in python
I am trying to scrape some information from a website. I require 8 fields of information, I have got it for 5 fields, but 3 fields are always coming empty. I think there is some mistake with my ...
1
vote
0answers
121 views
Is Lua garbage collection in 5.2 really that bad? [closed]
I often read that lua's garbage collection is bad and it can cause slow downs every some time, which is something I must avoid. For example FarCry developer created new scripting language because lua ...
1
vote
1answer
180 views
Built-in scripting language available on all major operating systems?
Does anyone know of a scripting language that's included with most platforms (say Mac/Windows/Linux)? I haven't been able to find one. So far javascript in web browsers or compiled java are about ...
1
vote
0answers
64 views
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 ...
1
vote
1answer
51 views
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 ...
1
vote
2answers
88 views
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 ...
0
votes
1answer
414 views
gnuplot and Shell script read many files and create graphs
ok I am trying to plot graphs for a different set of datafiles (9 in total) So i created this shell script:
!/bin/bash
datastorenum=9
PlotOutputLoc=/root/bin/SANscripts/graphs
PlotGname=datastore
...
0
votes
1answer
52 views
Empty Folder List from a Given Input [closed]
I have a directory that contain logs for each day. Each directory is formated with this name pattern 2012_07_01 , 2012_07_02.
What I want is to check from a given $startdate and a $enddate, and see ...
0
votes
2answers
57 views
Need Comma seperated output for N number of values in Shell
Given below is a script with X number of Outputs:
#!/bin/bash
instant_client="/root/ora_client/instantclient_11_2"
output=`$instant_client/sqlplus -s HRUSER/HRUSER@TOMLWF <<EOF
set heading off
...
0
votes
2answers
44 views
Executing script variable by variable
i have a script & it goes as below,
instant_client="/root/ora_client/instantclient_11_2"
output=`$instant_client/sqlplus -s HRUSER/HRUSER@TOMLWF <<EOF
set heading off
set feedback off
set ...
2
votes
2answers
212 views
Passing IFS values to a dynamic array
i have a Oracle output (select output) as cand1 cand2 cand3 cand62
now i need to store these values in an array through shell script.
#!/bin/bash
instant_client="/root/ora_client/instantclient_11_2"
...
1
vote
3answers
125 views
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]
...
1
vote
1answer
126 views
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 ...
1
vote
3answers
497 views
Define a Gradle task with inputs from project dependencies?
Background: I have a multi-project Gradle build, and I've defined a Gradle task which runs JavaScript unit tests in an Exec task. The inputs to this task are the JavaScript files in the project, so ...
-2
votes
1answer
119 views
JSP :: Java EE : ? :: Django [closed]
I am a newbie to Django and have Java EE( Struts) experience. In structs we can make use of the powerful Struts Tags and the same are complemented by the jsp tags.
I have read that html files are the ...
11
votes
5answers
936 views
Is there a good scripting Pascal-like language for Delphi?
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 looked ...
3
votes
0answers
207 views
Is Python a good candidate for deployment automation? [closed]
I am looking for a scripting language for deployment automation (installing, uninstalling, copying files etc.). Main requirements are: cross-platform, debuggable, good documentation, good IDE (or ...
2
votes
2answers
190 views
What is an embedded scripting language?
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 ...
0
votes
1answer
62 views
Typed vs scripting languages. Should i jump on the bandwagon of js+php? [closed]
Is it me or are scripting languages becoming more and more popular compared to stronly typed languages in the coding world?
Big companies like google or facebook seems to use php and javascript ...
0
votes
4answers
191 views
Which scripting language suits best in my scenario? [closed]
I am searching through the web for the best scripting language for my current scenario. As I writing this question here, you can see that I am not certain which one is the best for my case.
What is ...
2
votes
3answers
210 views
Is it possible to write scripting language that translates to C code?
I have an idea to create scripting language which will make people to program easier doing a lot of macros, functions, simpler function names everything more simpler for simple person to work with. ...
1
vote
1answer
272 views
appcfg.py is not running with cmd prompt windows 7
I am having strange problem. I used to run appcfg.py to update my app to appengine but now its not working anymore. When I run this command
C:\Program Files \Google\google_appengine>appcfg.py update ...
2
votes
2answers
151 views
Statically Typing a Scripting Language in Java
I'm building a scripting language in Java for a game, and I'm currently working on the parser. The language is to be utilized by players/modders/myself to create custom spells and effects. However, ...
0
votes
1answer
26 views
Application code is not delivered as object code for the underlying processor in scripting languages
Source code is present at run time in production system (though it may be compiled into ByteCode, native object code, or some other format for performance reasons). Application code is not delivered ...
0
votes
1answer
126 views
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.
...
0
votes
0answers
56 views
Delete files from specifile low level subdirectories and script should ignore checking upper level dir
Delete log files from specific low level subdirectories and script should ignore checking upper level dir.
There may be new directories created (so we should not hardcode any dir path) here.but the ...
2
votes
1answer
252 views
Should Ruby gems be licensed under the GPLv3?
I am the author of a few gems. I've released them under the GPLv3.
I think I've chosen the wrong license. I don't really want to restrict the use of my code to free software.
I was under the ...
1
vote
0answers
178 views
what actually is scripting language? [closed]
I was reading the material about the groovy language and spotted the word scripting language.At http://en.wikipedia.org/wiki/Scripting_language, this is the statement:
A scripting language or ...
7
votes
2answers
178 views
Is weak typing a performance increase or a decrease?
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, ...
1
vote
1answer
127 views
How to use [function] in webdna
I have been spending hours digging in Govinda great job in WebdnaCodeSparker.
I must confess I have never been using the [function] and I now wondering how to use it...
I went thought the doc, it ...
1
vote
1answer
129 views
high performance runtime
It’s the first time I submit a question in this forum.
I’m posting a general question. I don’t have to develop an application for a specific purpose.
After a lot of “googling” I still haven’t found a ...
0
votes
1answer
375 views
Howto anchor a Group of Elements to a specific TextFrame in InDesign CS5 javascript
I have written an importscript which places articles into a Indesign masterspread from a xml file. Every article will be placed into a new textframe. Every article can have multiple pictures with a ...
3
votes
3answers
685 views
tutorials or introductions to writing a simple scripting language?
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 ...
1
vote
4answers
383 views
Implementing lambdas in a scripting language
I have this modified code example I took from the wikipedia article on anonymous functions.
comp(threshold)
{
return lambda(x)
{
return x < threshold;
};
}
main()
{
a = ...
0
votes
1answer
74 views
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 ...
0
votes
1answer
194 views
scripting or programming language? [duplicate]
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 ...


