0
votes
3answers
41 views
basic shell script
I have some video files all ending in .wmv .mov .mpg. I have music files ending in .mp3 .wma. And finally I have some text files all end in the extension .txt
I wrote a shell scri …
0
votes
1answer
24 views
Using DOS file contents as command line arguments in BASH…
This is a follow-up to this question's answer.
How can I modify the code so that the annoying CRLF of a DOS created file can be stripped away before being passed to xargs?
Exampl …
1
vote
1answer
43 views
Reasons for using a DLR-based language rather than C# for scripting tasks?
I'm considering embedding a scripting language into one of my software projects and have identified two options: compiling C# at run-time via CodeDOM and embedding a DLR-based scri …
3
votes
1answer
94 views
how to implement objects for toy language ?
I am trying to make a toy language in c++. I have used boost spirit for the grammar, and hopefully for parser/lexer. The idea is a toy language where 'everything is an object' like …
1
vote
6answers
52 views
How to iterate over positional parameters in a Bash script?
Where am I going wrong?
I have some files as follows:
filename_tau.txt
filename_xhpl.txt
fiename_fft.txt
filename_PMB_MPI.txt
filename_mpi_tile_io.txt
I pass tau, xhpl, fft, mp …
0
votes
1answer
11 views
Starting a Firefoxprofile in a startupscript?
How do you start a Firefox-profile in a startupscript? This want do:
Set shell = CreateObject("WScript.Shell")
progList = Array("C:\Program Files\Mozilla Firefox\firefox.exe" -P …
0
votes
3answers
61 views
Scanning Keypress in Python
I have paused a script for lets say 3500 seconds by using time module for ex time.sleep(3500).
Now, my aim is to scan for keypresses while the script is on sleep, i mean its on th …
4
votes
9answers
171 views
Programming language to automatically navigate website?
Hi, I've been programming for many years now, and I have just one question.
What programming language allows you to create programs which can automatically navigate websites and p …
0
votes
0answers
21 views
.NET Web Scripting
I'm attempting to right a script to logon (username and password) on to a website and download a file. I've tried using the webClient and webBrowser classes to no avail, they don't …
0
votes
1answer
18 views
Startup time in Solaris server using shell script
How to find the start up time of a Solaris server using a shell script?
1
vote
2answers
58 views
Batch Script issue
Hello, for deleting files, I will be using the code below to remove the oldest file in the directory and run it every day. It came from the question of mine.
Applying to the origi …
202
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 e …
0
votes
3answers
97 views
Are there any good Pascal Script resources/documentation ?
I started playing around with Pascal Script today and I cannot find any good documentation. I found these (one, two) articles. The are helpful but they are just examples.
edit: …
1
vote
2answers
72 views
How can I get Pascal Script to recognize the ‘create’ and ‘free’ functions when importing a custom class?
I am having a problem with the example from this article. The article explains how to import your own classes so they can be called from a Pascal Script. I am importing my custom …
2
votes
1answer
19 views
Reload column names in ActiveRecord model class
I have a script using ActiveRecord that creates column names dynamically based on values read from a CSV file, something like this:
FasterCSV.foreach('votes.csv', :headers => t …
