runs with scissors
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4839
RSS2Cisco 2.0
RSS2Cisco is a server-side script that will convert RSS feeds into Ciscos IP phone XML format for use as a service. more>>
RSS2Cisco is a script that runs on server and converts RSS feeds in Ciscos IP phone XML format for use as a service. This script will take RSS feeds and convert them to be displayed on Ciscos IP based phones such as the 7920, 7940 and 7960.
<<less Download (MB)
Added: 2007-05-11 License: Free for non-commercial use Price:
898 downloads
runsuid 1.5
runsuid runs a script with another user-id/group-id, when the user has the right to do so according to the configuration file. more>>
runsuid runs a script with another user-id/group-id, when the user has the right to do so according to the configuration file.
If used in the right combination with access restrictions this can ease the life of system administrators. Additionally, it can be used for running CGI-scripts as different fixed users.
Enhancements:
- A stupid options parsing bug and a memory leak (with no security implications) were fixed.
- Spelling corrections were made.
<<lessIf used in the right combination with access restrictions this can ease the life of system administrators. Additionally, it can be used for running CGI-scripts as different fixed users.
Enhancements:
- A stupid options parsing bug and a memory leak (with no security implications) were fixed.
- Spelling corrections were made.
Download (0.020MB)
Added: 2007-01-24 License: GPL (GNU General Public License) Price:
1003 downloads
run in xterm 0.9.1
run in xterm is an servcie menu which adds run in xterm & run in xterm as root to action menu on binary files, scripts etc. more>>
run in xterm is an servcie menu which adds "run in xterm" & "run in xterm as root" to action menu on binary files, scripts etc.
It has 2 languages: english and polish.
Installation:
copy/save this file in
~/.kde/share/apps/konqueror/servicemenus
<<lessIt has 2 languages: english and polish.
Installation:
copy/save this file in
~/.kde/share/apps/konqueror/servicemenus
Download (MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1230 downloads
WMsensors.pl 0.1
WMsensors.pl is a small perl-program which monitors the temperature and voltages of CPU and motherboard. more>>
WMsensors.pl is a small perl-program which monitors the temperature and voltages of CPU and motherboard and also shows the Fan-speed.
Runs as a dock app for Window Maker.
Needs no config-file, but a proper configured installation of lm_sensors and uses the Wharf::JDockApp modul from the CPAN.
<<lessRuns as a dock app for Window Maker.
Needs no config-file, but a proper configured installation of lm_sensors and uses the Wharf::JDockApp modul from the CPAN.
Download (0.011MB)
Added: 2006-11-03 License: GPL (GNU General Public License) Price:
638 downloads

Unix configuration extractor 4
The Unix configuration extractor is a script more>> The Unix configuration extractor is a script that runs on the server to extract necessary security configurations. This script doesnt make any changes to the server other than creating the dump files<<less
Download (19KB)
Added: 2009-03-31 License: Freeware Price: Free
206 downloads
Critical Mass 1.0.1
Critical Mass (Critter) is an SDL/OpenGL space shootem up game. more>>
Critical Mass (aka Critter) is an SDL/OpenGL space shootem up game. Critical Mass project currently runs on Mac OS X, Windows, and Linux.
The latter is my main development platform. Other platforms supported by SDL/OpenGL may also work with a bit of work.
<<lessThe latter is my main development platform. Other platforms supported by SDL/OpenGL may also work with a bit of work.
Download (4.9MB)
Added: 2006-07-16 License: GPL (GNU General Public License) Price:
1213 downloads
run 0.1
run adds a service menu for all file types. more>>
run adds a service menu for all file types. This service menu will just call the file in the command line using the active folder as work folder.
Makes running some scripts and applications much easier (Some require work folder to be the same where they are located so double-clicking does not work).
Maybe a good fix would be to make it available only for files that have the executable permission
<<lessMakes running some scripts and applications much easier (Some require work folder to be the same where they are located so double-clicking does not work).
Maybe a good fix would be to make it available only for files that have the executable permission
Download (MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1215 downloads
IPC::Run::Simple 1.3
IPC::Run::Simple is a simple system() wrapper. more>>
IPC::Run::Simple is a simple system() wrapper.
SYNOPSIS
# Run a command and check whether it failed
use IPC::Run::Simple;
run("echo Hello, O Cruel World")
or die "Command failed";
# Describe the failure
use IPC::Run::Simple qw($ERR);
run("echo Hello, O Cruel World")
or die "Command failed: $ERR";
# Use the :all tag instead of explicitly requesting $ERR
use IPC::Run::Simple qw(:all);
run("echo Hello, O Cruel World")
or die "Command failed: $ERR";
# Die with error message if command does not return 0
use IPC::Run::Simple qw(:Fatal);
run("echo Hello, O Cruel World");
# Allow other exit values without dying
use IPC::Run::Simple qw(:Fatal);
run(command => [ "echo", "Hello, O Cruel World!" ],
allowed => [ 1, 2, 5 ]);
This module is intended to be a very simple, straightforward wrapper around the system() call to make it behave more like other builtins.
run() will return a true value if the command was executed and return a successful status code, and false otherwise. The reason for the failure will be stored in the $IPC::Run::Simple::ERR variable (which is just $ERR if you import either $ERR or :all). The description of the reason was pulled almost directly from the system() documentation.
Optionally, you can import the :Fatal tag, which will cause run() to die() with an appropriate message if the command fails for any reason.
If you wish to allow nonzero exit values but still want to trap unexpected errors, you may use an expanded call syntax. Call run() with a set of key=>value pairs. The two implemented keys are command (an array reference containing the command to run) and allowed (an array reference of exit values that are allowed without causing run() to return false or throw an exception.)
<<lessSYNOPSIS
# Run a command and check whether it failed
use IPC::Run::Simple;
run("echo Hello, O Cruel World")
or die "Command failed";
# Describe the failure
use IPC::Run::Simple qw($ERR);
run("echo Hello, O Cruel World")
or die "Command failed: $ERR";
# Use the :all tag instead of explicitly requesting $ERR
use IPC::Run::Simple qw(:all);
run("echo Hello, O Cruel World")
or die "Command failed: $ERR";
# Die with error message if command does not return 0
use IPC::Run::Simple qw(:Fatal);
run("echo Hello, O Cruel World");
# Allow other exit values without dying
use IPC::Run::Simple qw(:Fatal);
run(command => [ "echo", "Hello, O Cruel World!" ],
allowed => [ 1, 2, 5 ]);
This module is intended to be a very simple, straightforward wrapper around the system() call to make it behave more like other builtins.
run() will return a true value if the command was executed and return a successful status code, and false otherwise. The reason for the failure will be stored in the $IPC::Run::Simple::ERR variable (which is just $ERR if you import either $ERR or :all). The description of the reason was pulled almost directly from the system() documentation.
Optionally, you can import the :Fatal tag, which will cause run() to die() with an appropriate message if the command fails for any reason.
If you wish to allow nonzero exit values but still want to trap unexpected errors, you may use an expanded call syntax. Call run() with a set of key=>value pairs. The two implemented keys are command (an array reference containing the command to run) and allowed (an array reference of exit values that are allowed without causing run() to return false or throw an exception.)
Download (0.005MB)
Added: 2007-08-15 License: Perl Artistic License Price:
802 downloads
spin_auth 1.0.3
spin_auth is an authentication wrapper. more>>
spin_auth is an authentication wrapper.
spin_auth can be used by other mod_spin applications to authenticate users specified in a traditional Apache manner, but without actually employing dangerously breakable basic authentication. It also enables non-encrypted applications to temporarily switch to SSL/TLS for authentication only.
Enhancements:
- This version builds and runs against the new development branch of mod_spin, 1.1.
<<lessspin_auth can be used by other mod_spin applications to authenticate users specified in a traditional Apache manner, but without actually employing dangerously breakable basic authentication. It also enables non-encrypted applications to temporarily switch to SSL/TLS for authentication only.
Enhancements:
- This version builds and runs against the new development branch of mod_spin, 1.1.
Download (0.019MB)
Added: 2005-11-28 License: GPL (GNU General Public License) Price:
1425 downloads
Poissonrun 0.03
Poissonrun runs a given command statistically once every T seconds. more>>
Poissonrun runs a given command statistically once every T seconds. The program can be run at any given time, but on average, it is every T seconds.
The random process is based on the poisson distribution.
Installation:
./configure
make
make install
Enhancements:
- This release adds new methods for specifying probabilities and time intervals, improves documentation, and adds a feature for having multiple commands in a running state simultaneously.
<<lessThe random process is based on the poisson distribution.
Installation:
./configure
make
make install
Enhancements:
- This release adds new methods for specifying probabilities and time intervals, improves documentation, and adds a feature for having multiple commands in a running state simultaneously.
Download (0.003MB)
Added: 2007-02-16 License: Public Domain Price:
983 downloads
Edit with gvim - with GVIM serverlist 070306
Edit with gvim - with GVIM serverlist is a Edit with gvim context menu in Konqueror. more>>
Edit with gvim - with GVIM serverlist is a "Edit with gvim" context menu in Konqueror. Has support for gvims serverlist. This lets you open a file into any already running gvim instance.
This is something I saw in Windows Explorer when I was using gvim there. After using it I couldnt believe I actually got around without it. Really good stuff. Since Konqueror is so incredibly-fantastic I was SURE it could do it as well. And it does!
How it works:
You run the ruby script which daemonizes itself. The daemon checks how many gvim instances there are running. It writes the serverlist info to a temporary file in /tmp in the format of a regular service menu. When done, it copies that to ~/.kde/share/apps/konqueror/servicemenus/gvim_servers.desktop
Then removes the temporary file and sleeps for 10 seconds. When it wakes up the cycle repeats, etc, etc.
Cons:
1. needs the RUBY interpreter
2. runs as a daemon
3. 10 second delay between updates (you can change this)
INSTALL:
Text based setup: run as root ./setup.py
GUI bases setup: run as root ./gui-setup.py
See ./setup.py --help for more options
<<lessThis is something I saw in Windows Explorer when I was using gvim there. After using it I couldnt believe I actually got around without it. Really good stuff. Since Konqueror is so incredibly-fantastic I was SURE it could do it as well. And it does!
How it works:
You run the ruby script which daemonizes itself. The daemon checks how many gvim instances there are running. It writes the serverlist info to a temporary file in /tmp in the format of a regular service menu. When done, it copies that to ~/.kde/share/apps/konqueror/servicemenus/gvim_servers.desktop
Then removes the temporary file and sleeps for 10 seconds. When it wakes up the cycle repeats, etc, etc.
Cons:
1. needs the RUBY interpreter
2. runs as a daemon
3. 10 second delay between updates (you can change this)
INSTALL:
Text based setup: run as root ./setup.py
GUI bases setup: run as root ./gui-setup.py
See ./setup.py --help for more options
Download (0.002MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
970 downloads
Chungles 0.3
Chungles is a file-sharing program for local networks that runs on any platform. more>>
Chungles is a file-sharing program for local networks that runs on any platform.
More, its a file-sharing program that utilizes ZeroConf (JmDNS libraries) for computer detection and shares files easily about platforms with simple drag ndrop.
The GUI is done in SWT (allowing native graphics) and the program is written in Java.
<<lessMore, its a file-sharing program that utilizes ZeroConf (JmDNS libraries) for computer detection and shares files easily about platforms with simple drag ndrop.
The GUI is done in SWT (allowing native graphics) and the program is written in Java.
Download (MB)
Added: 2006-12-14 License: GPL (GNU General Public License) Price:
1047 downloads
Bitswiki 0.1
Bitswiki is a wiki that runs on Ruby on Rails. more>>
Bitswiki is a wiki that runs on Ruby on Rails.
Bitswiki project features:
- tags
- searching
- textile markdown
- revision comparison
- pluggable external authentication
- listing of recent changes
- RSS feeds for individual page changes or the entire wiki
- scriptaculous drawer effects
Bitswiki Installation Instructions:
Edit config/database.yml to your taste. For example, to use MySQL, search and replace postgresql to mysql, and postgres to root.
Execute these commands inside the bitswiki root directory:
createdb bitswiki
rake db:schema:load
script/server
Point your browser at http://localhost:3000/
<<lessBitswiki project features:
- tags
- searching
- textile markdown
- revision comparison
- pluggable external authentication
- listing of recent changes
- RSS feeds for individual page changes or the entire wiki
- scriptaculous drawer effects
Bitswiki Installation Instructions:
Edit config/database.yml to your taste. For example, to use MySQL, search and replace postgresql to mysql, and postgres to root.
Execute these commands inside the bitswiki root directory:
createdb bitswiki
rake db:schema:load
script/server
Point your browser at http://localhost:3000/
Download (0.081MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1022 downloads
kernbench 0.42
kernbench is a CPU throughput benchmark. more>>
This is a cpu throughput benchmark originally devised and used by Martin J. Bligh. It is designed to compare kernels on the same machine, or to compare hardware. To compare hardware you need to be running the same architecture machines (eg i386) and run kernbench on the same kernel source tree.
kernbench runs a kernel at various numbers of concurrent jobs: 1/2 number of cpus, optimal (default is 4xnumber of cpus) and maximal job count. Optionally it can also run single threaded. It then prints out a number of useful statistics for the average of each group of runs.
You need at least 2Gb of ram for this to be a true throughput benchmark or else you will get swapstorms.
Ideally it should be run in single user mode on a non-journalled filesystem. To compare results it should always be run in the same kernel tree.
Using:
You need a kernel tree (any will do) and the applications time and awk
installed. time is different to the builtin time used by BASH and has more
features desired for this benchmark.
Simply cd into the kernel tree directory and type
/path/to/kernbench
Options:
kernbench [-n runs] [-o jobs] [-s] [-H] [-O] [-M] [-h] [-v]
n : number of times to perform benchmark (default 5)
o : number of jobs for optimal run (default 4 * cpu)
s : perform single threaded runs (default dont)
H : dont perform half load runs (default do)
O : dont perform optimal load runs (default do)
M : dont perform maximal load runs (default do)
f : fast run
h : print this help
v : print version number
Enhancements:
- Incorrect counting of CPUs was fixed.
- The -j option was changed to at least 4GB ram.
<<lesskernbench runs a kernel at various numbers of concurrent jobs: 1/2 number of cpus, optimal (default is 4xnumber of cpus) and maximal job count. Optionally it can also run single threaded. It then prints out a number of useful statistics for the average of each group of runs.
You need at least 2Gb of ram for this to be a true throughput benchmark or else you will get swapstorms.
Ideally it should be run in single user mode on a non-journalled filesystem. To compare results it should always be run in the same kernel tree.
Using:
You need a kernel tree (any will do) and the applications time and awk
installed. time is different to the builtin time used by BASH and has more
features desired for this benchmark.
Simply cd into the kernel tree directory and type
/path/to/kernbench
Options:
kernbench [-n runs] [-o jobs] [-s] [-H] [-O] [-M] [-h] [-v]
n : number of times to perform benchmark (default 5)
o : number of jobs for optimal run (default 4 * cpu)
s : perform single threaded runs (default dont)
H : dont perform half load runs (default do)
O : dont perform optimal load runs (default do)
M : dont perform maximal load runs (default do)
f : fast run
h : print this help
v : print version number
Enhancements:
- Incorrect counting of CPUs was fixed.
- The -j option was changed to at least 4GB ram.
Download (0.010MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
863 downloads
Lightbird 0.9.1
Lightbird is a try to create simple IM service for a LAN. more>>
Lightbird project is a try to create simple IM service for a LAN. It starts like a ICQ Groupware clone.
It uses mono and theoretically runs in all platforms (Gnu,Macosx and Windows). In Windows you can use .NET framework and install GTK Sharp.
Lightbird server uses Sqlite3 as users and messages DB.
<<lessIt uses mono and theoretically runs in all platforms (Gnu,Macosx and Windows). In Windows you can use .NET framework and install GTK Sharp.
Lightbird server uses Sqlite3 as users and messages DB.
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
982 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above runs with scissors search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed