0
votes
1answer
20 views
Get result from shell script objective-c
I would like to run a shell script, from a file or from an objective-c string (within the code). I would also like the shell script's result to be stored to a variable. I would not like the shell …
0
votes
1answer
17 views
How to get vmware to run a program within MAC OS X via script or alias
On my Mac OS X computer, I am trying to setup a script that will open a particular program ( Visual Studio ) that resides within VMWare.
More specifically, when I run the script, I want Visual …
0
votes
1answer
27 views
running mysql_fix_privilege_tables kills my root password
I am learning mysql and ran into a problem with 'mysql.proc' missing when trying to create a stored procedure. mysql version 5.1.41.
I read that running the script 'mysql_fix_privilege_tables' is …
0
votes
3answers
33 views
Java 1.5 Script Engine
Since Java 1.6 there is this nice Script Engine Manager which let's i.e. execute JavaScript scripts in run time. Is there something similar in functionality in Java 1.5?
0
votes
3answers
34 views
ORM for SQL Scripting
What is the best way to run simple sql scripts in a database (preferably db implementation agnostically)?
So, for illustration purposes, using your best/suggested way, i'd like to see a script that …
0
votes
4answers
38 views
Loading script tags via AJAX
I have a div tag which is filled with script via an ajax call, but the script does not execute.
Is there a way to cause the script to execute?
0
votes
0answers
5 views
Dynamically resize web browser control in Lotus Notes subform
I want to create a subform, which contains a web browser control in it. As this subform is going to be placed in different other forms, I'd like to be able to resize the width of the web browser …
1
vote
1answer
13 views
action script dynamic type?
I am curious about code in my action script project:
public var _p:Object
...
in a function:
public function WObject(pp:MovieClip)
{
_p = pp;
_p.Play();
}
The Play() function is in …
0
votes
1answer
29 views
How to kill main thread from sub thread in Jython
I have a script that creates a thread which after 60 seconds (this thread) needs to kill the main thread. I`m not sure what command I can use to kill the main thread. I'm using Jython 2.5.1 and …
0
votes
2answers
25 views
VIM: Automatically adding menu-items for scripts from a particular directory
I have a number of scripts (Ruby as it happens) I run from VIM, by setting up the startup file to contain (for instance):
amenu Ruby.script1 :%!ruby C:\ruby_scripts\script1.rb<cr><cr>
…
0
votes
0answers
18 views
CompositeScriptRefernce
Hi,
I'm trying to add a composite scriptreference like this;
ScriptReference scriptReference = new ScriptReference("CSSFriendly.JavaScript.MenuAdapter.js", "CSSFriendly");
…
0
votes
2answers
47 views
Bash scripting on Android
Has anybody tried bash scripting on android?
I tried to write a simple script on Android's bash shell through adb.
I tried the following script which works for me:
#sh1
x="hello"
echo "$x"
But when …
0
votes
2answers
43 views
ASP.NET: Appending to HTTP response
I have a Page.aspx. I would like to inject a <script> tag into the response stream of Page.aspx, after it has finished writing its output. How could I do this form within the codebehind of Page?
…
0
votes
6answers
75 views
Bourne Shell Scripting — simple for loop syntax
I'm not entirely new to programming, but I'm not exactly experienced. I want to write small shell script for practice.
Here's what I have so far:
#!/bin/sh
name=$0
links=$3
owner=$4
if [ $# -ne 1 ]
…
0
votes
2answers
74 views
How can I make my batch script for deletion of old files work?
Inside a folder (say c:\test) I want to delete the oldest file if the number of files are over 21.
This is what I came up with, issue is that it one time deletes the oldest file, second run it does …
