0
votes
1answer
18 views
SQL Server: How to generate object scripts without DMO/SMO?
i want to generate scripts for database objects - tables, views, stored procedures, etc.
Since:
SQL Server Management Objects (SMO)
SQL Distributed Management Objects (SQL-DMO) …
0
votes
1answer
110 views
How do I extend a 3Ds Max material correctly
Basically, I'm just trying to add a few more properties to the "Standard" material in 3Ds Max 9. I've actually managed to accomplish this through max script, but it is breaking our …
0
votes
2answers
40 views
How to run a PowerShell script without displaying a window?
How is it possible to run a PowerShell script without displaying a window or any other sign to the user?
In other words, the script should run quietly in the background without an …
0
votes
1answer
11 views
Why does SWIG crash Python when linked to gtkglext?
Anything I link to gtkglext using SWIG crashes Python on exit. Why does this crash?
test.i:
%module test
%{
void test() { printf("Test.\n"); }
%}
void test();
Session:
$ swig …
0
votes
3answers
33 views
problem with redirecting output
I'm writing a script that selects rows from files in a directory which contain patterns $f1, $f2 and $f3 and storing the lines that contain the pattern in a file I want to call as …
2
votes
3answers
50 views
grep-ing multiple files
I want to grep multiple files in a directory and collect the output of each grep in a separate file ..So if I grep 20 files, I should get 20 output-files which contain the searched …
2
votes
7answers
43 views
What among Bash/Python/Perl/Ruby/Sed/Awk for System administration , coding accessories.
I know the question is very subjective. But I cannot form the question in a much more better manner. I would appreciate some guidance.
I often as a developer feel how easier it wo …
1
vote
1answer
42 views
Calculate driving directions using PHP?
For my application I need a server to calculate driving directions.
The Google Maps API was designed for clientside use only, with a Javascript and Flash API. Is there any way I …
0
votes
2answers
30 views
Startup time in Solaris server using shell script
How to find the start up time of a Solaris 5.1 server using a shell script,need to know how much time it took to be on running state?I need to know how much time it took to come to …
0
votes
4answers
68 views
Why can’t I call javac using the Backquotes/Backticks approach in Ruby?
I am trying to compile a java source file via a Ruby Script. However I am a bit puzzled by the following behavior
compile_results = `javac #{source_file}`
this fails to run wit …
0
votes
4answers
50 views
choosing even-numbered rows from a file
How do I choose even numbered rows of a file?
I wish to select rows #2, 4, 6, etc. from a file that contains data. Can anyone help me with this?
1
vote
3answers
22 views
Algorithmically suggest best node to perform demanding computation
Dear Overflowers:
At work we perform demanding numerical computations.
We have a network of several Linux boxes with different processing capabilities. At any given time, there …
10
votes
12answers
835 views
Would python make a good substitute for the windows command line/batch scripts?
I've got some experience with bash, which I don't mind, but now that I'm doing a lot of windows development I'm needing to do basic stuff/write basic scripts using the windows comm …
0
votes
1answer
25 views
Wrapping a Lua object for use in C++ with SWIG
Currently I know how to have C++ objects instantiated and passed around in Lua using SWIG bindings, what I need is the reverse.
I am using Lua & C++ & SWIG.
I have interf …
1
vote
2answers
26 views
How much access should an OS give to web-based scripting?
I've been thinking about the access web-based applications have to an OS.
I'm curious:
What is the best way of determining
this as it currently stands?
Is the trend leaning to …
