0
votes
1answer
38 views
Storing a lua class with parent in luabind::object (updated)
Using C++, lua 5.1, luabind 0.7-0.81
Trying to create a lua class with parent and store it in a luabind::object.
Lua
class 'TestClassParent'
function TestClassParent:__init()
print('parent …
0
votes
1answer
15 views
Automatically Delete Subversion Tags By Date
I'm creating a batch file (on Windows Vista) to deploy my project from development to our staging server. The code I currently have is:
:: Copy files from development to staging
robocopy …
0
votes
5answers
51 views
Simple ,fast script support for a c# application
I have developed an application which can create Xml files from Xml schema with some user defined rules for generating value for each node.
I want to give my user the ability to write scripts for …
1
vote
2answers
60 views
Can I use the .NET Framework from JavaScript (JScript) or VBScript?
I want to write a script that can run on a vanilla Windows (XP or later) system and call methods in an installed (GAC'd) .NET assembly. (I need to deliver the script to other people and I don't want …
0
votes
2answers
50 views
Linux: How do I delegate exotic commandline arguments using a script?
Hello!
I want to write a wrapper bash script, and to pass all arguments to a called program. I was very sure, that this works correctly:
#!/bin/sh
someProgam $@
But when passing exotic arguments …
0
votes
0answers
34 views
strange performance behavior when running app from scripting language
Hi,
I wrote tcl script as an glue between different apps which are computationally intensive.
When I run top command I see that 2 cpu's are 100% utilized.
The one is for the tcl and the second is …
204
votes
129answers
21k views
How do you stop scripters from slamming your website hundreds of times a second?
[update] I've accepted an answer, as lc deserves the bounty due to the well thought-out answer, but sadly, I believe we're stuck with our original worst case scenario: CAPTCHA everyone on purchase …
0
votes
2answers
41 views
How to execute a Groovy Script from my Grails app?
Well, it seems a simple task but I didn't manage to make it run.
I have a groovy script that runs fine under Windows Vista when calling from prompt:
> cd MY_GAILS_PROJECT_DIR
> groovy cp …
0
votes
2answers
41 views
Using Apple Scripting Bridge in C
I'm wondering if it is possible to use Scripting Bridge (as discussed here) in C. What I'm trying to do is control and/or get information from Apple applications (such as iTunes, see link listing 2.1 …
1
vote
3answers
39 views
help with subversion (svn) hook script
How to create a subversion server hook script that prevents people from committing changes if they don't own the lock on the file first?
Svn server is on windows.
Thanks.
P.S. Additional info in …
0
votes
3answers
48 views
search through a range of directories bash script
Hi,
I have written (tried to) this small bash script for searching through a range of directories.
#!/bin/bash
shopt -s nullglob
for file in [ac]*/blarg
do
echo $file
done
This script …
-1
votes
1answer
39 views
How might I send an XML file, via a POST request, using cURL? [closed]
I have a web service that accepts XML files. In order to make use of this, I must send the file in a POST request. I would like to use cURL to do this... But I do not know how to use cURL! Any …
0
votes
2answers
18 views
How do I print the list of registry keys in HKCU\Environment to SDTOUT using JScript (WSH)?
I want to iterate over the environment keys and print a list of these items.
5
votes
6answers
271 views
What do people mean when they say “Perl is very good at parsing”? [closed]
What do people mean when they say "Perl is very good at parsing"?
How is Perl any better or more powerful than other scripting languages such as Python or Ruby?
0
votes
1answer
45 views
Python login script
Hi All,
I have the following script to logon to a url,but on submit in the webpage i call
<input type=button value="go" onclick="Search()";>
How to do the same in the following script …
