I am using the following code
--- EDIT @annakata : Adding the complete code
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
</HEAD>
<BODY>
<table id="additionalContactsTable" name="additionalContactsTable"
width="100%"
>
...
I've written a small command line utility in Python (ljdump if you're curious). I originally wrote it for a technical audience who is comfortable with editing textual config files and running Python scripts from the command line. With Python, I don't have to worry about cross-platform concerns very much.
I would like to make this more a...
The other day, I tweaked a script for a friend's World of Warcraft addon. He was surprised that you could edit the addons—that they were "open source." (Word of Warcraft addons are written in the Lua scripting language) I found myself wanting to say "Sure you can—all scripts are 'open source'."
Is that true? Sure, some scripts can be co...
what would be your suggestions for a good bash/ksh script template to use as a standard for all newly created scripts?
I usually start (after #! line) with a commented-out header with a filename, synopsis, usage, return values, author(s), changelog and would fit into 80-char lines.
all documentation lines I start with double-hash symbo...
Hello I am working with a simulator that uses rcS scripts to boot, this is my script
cd /tests
./test1 &
./test2 &
./test3 &
./test4
exit
What I want is run all the test at the same time and that the exit command is executed only when all the previous test have finished. And not only when test 4 has finished, is this possible?.
Thank...
I have this input in a form:
<input type="text" value="<script src='/js/script.js' type='text/javascript'></script>" name="embed"/>
The quotations in general have to be double, so I put single-quotes within the value property.
However, when I do that, the result is:
<script src=’/js/script.js’ type=’text/javascript’></script>
Not...
Im trying to get a value (IP address) from a W3C logfile (kinda like a text file). This is what I have so far but with no luck:
Set filename=ex%date:~-2,4%%date:~-10,2%%date:~-7,2%.log
For /F "tokens=2 delims=: . " %%A in ('E:\WINDOWS\system32\LogFiles\MSFTPSVC6141885\%filename%') do (Set ip=%%A)
and the log file looks like:
# So...
Is there a good way to write F# scripts that execute stand-alone without compiling?
...As scripts that could be executed via task scheduler on a server? I assume the server would have the core F# libraries, but not Visual Studio installed.
Is there an F# equivalent to CS-Script or NScript,
but not a hack (workaround).
...
We have an application which at certain times needs to execute 'tasks' in order to do some work. These tasks currently are just commands (read: dodgy VB scripts) being fired off and then monitoring the process for completion or aborting if it 'times out', however we don't have enough control over the execution.
I would like to integrate...
I am creating an interface for Python scripting.
Later I will be dong Python scripting also for automated testing.
Is it necessary the at i must use class in my code.Now I have created the code
with dictionaries,lists,functions,global and local variables.
Is class necessary?
Help me in this.
...
Hi Folks,
We have various spreadsheets that employ deliciously complicated macros and third party extensions to produce complicated models. I'm working on a project that involves slightly tweaking various inputs and seeing the results. Rather than doing this by hand or writing VBA, I'd like to see if I can write a python script to dri...
I do a lot of data analysis scripting, comparing two objects or strings to determine differences or come up with gaps that need to be filled.
When you're in a loop, comparing object a to object b, do you have a preferred coding standard that makes sense (i.e., it is self-documenting) and can travel nicely to other code? Or are variable ...
Hi,
I'd like to parse rss feeds and download podcasts on my ReadyNas which is running 24/7 anyway.
So I'm thinking about having a shell script checking periodically the feeds and spawning wget to download the files.
What is the best way to do the parsing?
Thanks!
...
What are the most common reasons that I would be getting this error from running a Perl script:
Memory fault(coredump)
I am running two SQL commands beforehand that only store ~1500 rows each with 6 fields. The SQL works fine out of the script, so I don't think I'm getting the error from that. And half of my code runs before it takes ...
When should I use ScriptManager to register scripts and when is it ok to use the Page.ClientScript?
What are the rules?
...
Hi guys,
I'm writing a very simple flash app (AS 2) to sign users up to an email newsletter; the way it works is that it uses LoadVars to hit a (same-domain) PHP script via POST with the user's email address. The PHP script then passes the info through to another domain (the newsletter mailer URL) via curl to sign up the user.
So far, ...
Joel and Jeff talked about launching an "IT Pro" version of Stack Overflow during the most recent podcast. This raises a lot of interesting questions (besides "what should it be called?") - scripting falls right in that space between systems administration and "real" programming, so which community should we scripters/sysadmins hypothet...
Hi,everubody! can you help me with my trouble? I'm trying to create form for filling resume. User should not use mail client to submit form. How can I realize this idea on javascript or PHP?
...
[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 attempts of the crap. Short explanation: caching / web farms make it impossible for us to actually track hits, and any workaround (sending ...
What is the best tutorial, recipe, how-to, to embed a scripting language (like python, lua...) in another language (like c#)? Particularly, one that shows how to provide host-level elements in the script-level language (e.g. whenever someone accesses the attribute name of the object 'car' in python, the host application intercepts that c...