0
votes
1answer
16 views
Pinging all subnets of a wireless network
I'm trying to satiate my curiosity by doing a small network reachability test. I want to try to ping all subnets of a wireless network at my school from the subnet that I am connected to. So, suppose …
0
votes
2answers
31 views
Call javascript interpreter from a script
I've written some scripts in Javascript under Rhino 1.7, one of them starts a minimal http server and accepts JS commands in input.
Now, if I call (from within Rhino):
engine = …
0
votes
2answers
14 views
How to Merge multiple patch files?
We use subversion and during every check-in, a script creates a patch file with all the diff. Now for the same issue/defect there could be multiple check-ins and we end up with multiple patch files. …
0
votes
1answer
15 views
Active Scripting on the server side
I am considering writing a NT service. The service will need scripting capabilities. Users can write some VBScript/JScript code and feed the server.
I also want the script be able to debug in …
0
votes
4answers
46 views
SVN Automatic merge to branch on check in
We use one branch for the our upcoming release, and trunk for the next release (later).
For example:
v1.1 -> v1.2 -> trunk
(Where v1.1 is in production, v1.2 is the upcoming release and trunk will …
0
votes
1answer
27 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) (depricated)
are …
1
vote
2answers
68 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 any sign to the user.
…
0
votes
1answer
19 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 -python test.i
$ …
0
votes
3answers
35 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 $file_$pattern.xls, …
1
vote
1answer
48 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 can run their API's …
2
votes
7answers
49 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 would have been for me …
2
votes
3answers
54 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 item. Can anybody …
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 can be anywhere from …
0
votes
1answer
32 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 interfaces in C++ and …
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 toward more, or
less …
