select personnel
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1557
selectwm 0.4.1
selectwm is a small application which lets you select your window manager at X startup. more>>
This is a small application (using GTK+) which lets you select your window manager. It looks for a file named .selectwmrc in the users directory which contains a list of window managers.
When you start X it should show a list which lets you choose your window manager (by double clicking on it with the mouse or with the arrow keys and the return or space key).
<<lessWhen you start X it should show a list which lets you choose your window manager (by double clicking on it with the mouse or with the arrow keys and the return or space key).
Download (0.020MB)
Added: 2005-04-27 License: GPL (GNU General Public License) Price:
1640 downloads
mrtg-select 1.0
mrtg-select allows the flexible display of MRTG graphs, chosen by keyword and time span. more>>
mrtg-select allows the flexible display of MRTG graphs, chosen by keyword and time span.
I use MRTG to graph all kinds of stuff, and looking at those graphs on the same page helps me detect correlations. ("Say, Professor -- that spike in CPU temperature came right when the Rapture Index hit a three-year high!")
mrtg-select lets me pick a subset of graphs to be displayed on the same page, based on keyword and time span.
And the best part is that it figures out the keywords automagically just by being pointed at the directory where the graphs live -- theres no config file to update. Licensed under the GPL.
<<lessI use MRTG to graph all kinds of stuff, and looking at those graphs on the same page helps me detect correlations. ("Say, Professor -- that spike in CPU temperature came right when the Rapture Index hit a three-year high!")
mrtg-select lets me pick a subset of graphs to be displayed on the same page, based on keyword and time span.
And the best part is that it figures out the keywords automagically just by being pointed at the directory where the graphs live -- theres no config file to update. Licensed under the GPL.
Download (0.002MB)
Added: 2005-11-16 License: GPL (GNU General Public License) Price:
1440 downloads
Inline::Select 0.01
Inline::Select contains dynamic selection of ILSM for a package. more>>
Inline::Select contains dynamic selection of ILSM for a package.
SYNOPSIS
use Inline::Select::Register (
PACKAGE => Calc,
Inline => [ Perl => sub {require t/Calc.pm} ]
) ;
use Inline::Select::Register (
PACKAGE => Calc,
Inline => [ CPP => t/Calc.cpp ]
) ;
use Inline::Select::Register (
PACKAGE => Calc,
Inline => [ Java => t/Calc.java ]
) ;
use Inline::Select::Register (
PACKAGE => Calc,
Inline => [ Python => t/Calc.py ]
) ;
use Inline::Select (
PACKAGE => Calc,
Inline => $ARGV[0] # one of Perl, CPP, Java, Python
) ;
my $c = new Calc() ;
ok($c->add(2, 3), 5) ;
USAGE
Usage of Inline::Select is pretty simple. For each programming language, you must speficy a use Inline::Select::Register (or Inline::Select->register() at runtime) statement to register the use of Inline for that language. All the Inline parameters are saved and that Inline block will only be evaluated if that language is selected later on.
When you are done registering Inline blocks, you then spefify a use Inline::Select (or Inline::Select->bind() at runtime) to actually load (in the caller package) the Inline block for the selected language.
<<lessSYNOPSIS
use Inline::Select::Register (
PACKAGE => Calc,
Inline => [ Perl => sub {require t/Calc.pm} ]
) ;
use Inline::Select::Register (
PACKAGE => Calc,
Inline => [ CPP => t/Calc.cpp ]
) ;
use Inline::Select::Register (
PACKAGE => Calc,
Inline => [ Java => t/Calc.java ]
) ;
use Inline::Select::Register (
PACKAGE => Calc,
Inline => [ Python => t/Calc.py ]
) ;
use Inline::Select (
PACKAGE => Calc,
Inline => $ARGV[0] # one of Perl, CPP, Java, Python
) ;
my $c = new Calc() ;
ok($c->add(2, 3), 5) ;
USAGE
Usage of Inline::Select is pretty simple. For each programming language, you must speficy a use Inline::Select::Register (or Inline::Select->register() at runtime) statement to register the use of Inline for that language. All the Inline parameters are saved and that Inline block will only be evaluated if that language is selected later on.
When you are done registering Inline blocks, you then spefify a use Inline::Select (or Inline::Select->bind() at runtime) to actually load (in the caller package) the Inline block for the selected language.
Download (0.003MB)
Added: 2007-06-01 License: Perl Artistic License Price:
875 downloads
SQL::Interpolate 0.33
SQL::Interpolate is a Perl module to interpolate Perl variables into SQL statements. more>>
SQL::Interpolate is a Perl module to interpolate Perl variables into SQL statements.
SYNOPSIS
use SQL::Interpolate qw(:all);
# Some sample data to interpolate:
my $s = blue; my @v = (5, 6);
# Variable references are transformed into bind parameters.
# The most basic usage involves scalarrefs (as well as arrayrefs
# preceeded by "IN").
my ($sql, @bind) = sql_interp
SELECT * FROM table WHERE x = , $s, AND y IN, @v;
# RESULT:
# $sql = SELECT * FROM mytable WHERE x = ? AND y IN (?, ?)
# @bind = ($s, @v);
# In certain contexts, an arrayref or hashref acts as a single tuple:
my ($sql, @bind) = sql_interp
INSERT INTO table, {x => $s, y => 1};
# RESULT:
# $sql = INSERT INTO mytable (x, y) VALUES(?, ?);
# @bind = ($s, 1);
my ($sql, @bind) = sql_interp
UPDATE table SET, {x => $s, y => 1}, WHERE y , 2;
# RESULT:
# $sql = UPDATE mytable SET x = ?, y = ? WHERE y ?;
# @bind = ($s, 1, 2);
# In general, a hashref provides a shortcut for specifying
# a logical-AND construction:
my ($sql, @bind) = sql_interp
SELECT * FROM table WHERE, {x => $s, y => @v};
# RESULT:
# $sql = SELECT * FROM mytable WHERE (x = ? AND y IN (?, ?));
# @bind = ($s, @v);
# In general, an arrayref acts as a result set or reference to
# a temporary table:
my ($sql, @bind) = sql_interp
[[1, 2], [4, 5]], UNION, [{x => 2, y => 3}, {x => 5, y => 6};
# RESULT:
# $sql = (SELECT ?, ? UNION ALL SELECT ?, ?) UNION
# (SELECT ? AS x, ? AS y UNION ALL SELECT ?, ?);
# @bind = (1,2,4,5, 2,3,5,6);
my ($sql, @bind) = sql_interp
SELECT * FROM, [[1, 2], [4, 5]]
# RESULT:
# $sql = SELECT * FROM (SELECT ?, ? UNION ALL SELECT ?, ?) AS tbl0;
# @bind = (1,2,4,5);
# Each result above is suitable for passing to DBI:
my $res = $dbh->selectall_arrayref($sql, undef, @bind);
# Besides these simple techniques shown, SQL-Interpolate includes
# various optional modules to further integrate SQL::Interpolate with
# DBI and streamline the syntax with source filtering and macros (see
# the L section):
use DBIx::Interpolate FILTER => 1;
...
my $rows = $dbx->selectall_arrayref(sql[
SELECT thid, date, title, subject
FROM threads
WHERE date > $x AND subject IN @subjects
]);
<<lessSYNOPSIS
use SQL::Interpolate qw(:all);
# Some sample data to interpolate:
my $s = blue; my @v = (5, 6);
# Variable references are transformed into bind parameters.
# The most basic usage involves scalarrefs (as well as arrayrefs
# preceeded by "IN").
my ($sql, @bind) = sql_interp
SELECT * FROM table WHERE x = , $s, AND y IN, @v;
# RESULT:
# $sql = SELECT * FROM mytable WHERE x = ? AND y IN (?, ?)
# @bind = ($s, @v);
# In certain contexts, an arrayref or hashref acts as a single tuple:
my ($sql, @bind) = sql_interp
INSERT INTO table, {x => $s, y => 1};
# RESULT:
# $sql = INSERT INTO mytable (x, y) VALUES(?, ?);
# @bind = ($s, 1);
my ($sql, @bind) = sql_interp
UPDATE table SET, {x => $s, y => 1}, WHERE y , 2;
# RESULT:
# $sql = UPDATE mytable SET x = ?, y = ? WHERE y ?;
# @bind = ($s, 1, 2);
# In general, a hashref provides a shortcut for specifying
# a logical-AND construction:
my ($sql, @bind) = sql_interp
SELECT * FROM table WHERE, {x => $s, y => @v};
# RESULT:
# $sql = SELECT * FROM mytable WHERE (x = ? AND y IN (?, ?));
# @bind = ($s, @v);
# In general, an arrayref acts as a result set or reference to
# a temporary table:
my ($sql, @bind) = sql_interp
[[1, 2], [4, 5]], UNION, [{x => 2, y => 3}, {x => 5, y => 6};
# RESULT:
# $sql = (SELECT ?, ? UNION ALL SELECT ?, ?) UNION
# (SELECT ? AS x, ? AS y UNION ALL SELECT ?, ?);
# @bind = (1,2,4,5, 2,3,5,6);
my ($sql, @bind) = sql_interp
SELECT * FROM, [[1, 2], [4, 5]]
# RESULT:
# $sql = SELECT * FROM (SELECT ?, ? UNION ALL SELECT ?, ?) AS tbl0;
# @bind = (1,2,4,5);
# Each result above is suitable for passing to DBI:
my $res = $dbh->selectall_arrayref($sql, undef, @bind);
# Besides these simple techniques shown, SQL-Interpolate includes
# various optional modules to further integrate SQL::Interpolate with
# DBI and streamline the syntax with source filtering and macros (see
# the L section):
use DBIx::Interpolate FILTER => 1;
...
my $rows = $dbx->selectall_arrayref(sql[
SELECT thid, date, title, subject
FROM threads
WHERE date > $x AND subject IN @subjects
]);
Download (0.056MB)
Added: 2007-04-05 License: Perl Artistic License Price:
933 downloads
PSPL Multi Select Box 1.0.1
PSPL Multi Select Box is an enhanced implementation of the HTML form input element for selecting multiple items from a list. more>>
PSPL Multi Select Box is an enhanced implementation of the HTML form input element for selecting multiple items from a list.
Users can select multiple choices without having to press the ALT button like a normal "select multiple" box. It is easy to customize, and you can easily modify the visual style of PSPL Multi Select Box to match your Web site design or theme.
The project is also compliant to W3C standards, and has been tested with most recent browsers. Unlike normal "select multiple" boxes, PSPL Multi Select Box follows the layer design in IE.
<<lessUsers can select multiple choices without having to press the ALT button like a normal "select multiple" box. It is easy to customize, and you can easily modify the visual style of PSPL Multi Select Box to match your Web site design or theme.
The project is also compliant to W3C standards, and has been tested with most recent browsers. Unlike normal "select multiple" boxes, PSPL Multi Select Box follows the layer design in IE.
Download (MB)
Added: 2007-02-09 License: Free To Use But Restricted Price:
987 downloads
SLMotion 1.2
SLMotion is a small prog for a small request. more>>
SLMotion is a small prog for a small request. Ive to make a film with a special effect : slow a video and speed up after ... like prof films. I search a tool and dont find one on Linux, so i make it myself.
To run :
Untar the archive
./slmotion
Usage :
1 - Load a video
2 - Select a part of the video to apply effect. Take most frame that you need its more easy to reimplement your video after.
3 - Select precisely the first and last image to apply the effect
4 - Choose the value to reduce speed
5 - Lets go and enjoy
<<lessTo run :
Untar the archive
./slmotion
Usage :
1 - Load a video
2 - Select a part of the video to apply effect. Take most frame that you need its more easy to reimplement your video after.
3 - Select precisely the first and last image to apply the effect
4 - Choose the value to reduce speed
5 - Lets go and enjoy
Download (0.14MB)
Added: 2006-09-19 License: GPL (GNU General Public License) Price:
1132 downloads
steelme 0.1.3
steelme is a GUI theme system which extends and improves on Suns Metal Pluggable Look and Feel. more>>
steelme is an open-source theme manager for Java Swing programs. It allows the end user to select from pre-installed themes, or color schemes, or to create his own by the use of the ThemeEditor.
steelme is designed to be lightweight and easy for the application developer to use.
<<lesssteelme is designed to be lightweight and easy for the application developer to use.
Download (1.25MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
1472 downloads
Gentoo Category Select 0.3
Gentoo Category Select is a graphical tool for selecting Gentoo Package Categories to exclude from your local package repository more>>
Gentoo Category Select is a graphical tool for selecting Gentoo Package Categories to exclude from your local package repository.
It does so by weaning information from multiple directories and files for convenience, as well as providing warning about categories that should not be excluded due to currently installed packages.
This is achieved without the addition of a configuration file. Currently only the Qt front-end is finished. It is modularly designed for ease in creating front-ends based on other toolkits.
The advantages are saved disk space (small/MMV), quicker rsync time (small/MMV), and a lessening of bandwidth requirements by gentoo.org and its mirrors.
<<lessIt does so by weaning information from multiple directories and files for convenience, as well as providing warning about categories that should not be excluded due to currently installed packages.
This is achieved without the addition of a configuration file. Currently only the Qt front-end is finished. It is modularly designed for ease in creating front-ends based on other toolkits.
The advantages are saved disk space (small/MMV), quicker rsync time (small/MMV), and a lessening of bandwidth requirements by gentoo.org and its mirrors.
Download (0.008MB)
Added: 2005-08-26 License: GPL (GNU General Public License) Price:
1520 downloads
Relations 0.95
Relations is a Perl module with functions to use with databases and queries. more>>
Relations is a Perl module with functions to use with databases and queries.
SYNOPSIS
use Relations;
$as_clause = as_clause({full_name => "concat(f_name, ,l_name)",
{status => "if(married,Married,Single)"})
$query = "select $as_clause from person";
$avoid = to_hash("virustbug","t");
if ($avoid->{bug}) {
print "Avoiding the bug...";
}
unless ($avoid->{code}) {
print "Not avoiding the code...";
}
<<lessSYNOPSIS
use Relations;
$as_clause = as_clause({full_name => "concat(f_name, ,l_name)",
{status => "if(married,Married,Single)"})
$query = "select $as_clause from person";
$avoid = to_hash("virustbug","t");
if ($avoid->{bug}) {
print "Avoiding the bug...";
}
unless ($avoid->{code}) {
print "Not avoiding the code...";
}
Download (0.018MB)
Added: 2007-05-16 License: Perl Artistic License Price:
891 downloads
Relations::Query 0.93
Relations::Query is a Perl Object for building queries with DBI/DBD::mysql. more>>
Relations::Query is a Perl Object for building queries with DBI/DBD::mysql.
SYNOPSIS
# Relations::Query Script that creates some queries.
use Relations::Query;
$query = new Relations::Query(-select => {fife => barney},
-from => {green_teeth => moogoo},
-where => "flotsam>jetsam",
-group_by => "denali",
-having => {fortune => cookie},
-order_by => [was,is,will],
-limit => 1);
$get_query = $query->get();
$query->set(-select => {clean => sparkle},
-from => {lean => book},
-where => "fighting is between courage and chaos",
-limit => 123);
$set_query = $query->get();
$get_add_query = $query->get_add(-select => {mean => dog},
-where => "running is null",
-having => {kitties=> on_tv},
-limit => [9678]);
$query = to_string({select => this,
from => that});
<<lessSYNOPSIS
# Relations::Query Script that creates some queries.
use Relations::Query;
$query = new Relations::Query(-select => {fife => barney},
-from => {green_teeth => moogoo},
-where => "flotsam>jetsam",
-group_by => "denali",
-having => {fortune => cookie},
-order_by => [was,is,will],
-limit => 1);
$get_query = $query->get();
$query->set(-select => {clean => sparkle},
-from => {lean => book},
-where => "fighting is between courage and chaos",
-limit => 123);
$set_query = $query->get();
$get_add_query = $query->get_add(-select => {mean => dog},
-where => "running is null",
-having => {kitties=> on_tv},
-limit => [9678]);
$query = to_string({select => this,
from => that});
Download (0.010MB)
Added: 2006-09-02 License: Perl Artistic License Price:
1147 downloads
Practical Query Analyzer 1.6
Practical Query Analyzer produces HTML reports on query statistics. more>>
Practical Query Analyzer produces HTML reports on the most frequent queries, slowest queries, queries by type (select/insert/update/delete), and more for both PostgreSQL and MySQL log files.
<<less Download (0.05MB)
Added: 2005-11-28 License: BSD License Price:
1428 downloads
Resizeable Form Fields 0.2.1
Resizeable Form Fields is an extension which allows you to resize HTML form fields, including textareas, select boxes and more. more>>
Resizeable Form Fields is an extension which allows you to resize HTML form fields, including textareas, select boxes and more.
Resize HTML form fields, including textareas, select boxes, text fields, and iframes.
<<lessResize HTML form fields, including textareas, select boxes, text fields, and iframes.
Download (0.004MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
937 downloads
Database Functions 1.0
Database Functions is a PHP class that can be used to build and execute MySQL database queries. more>>
Database Functions is a PHP class that can be used to build and execute MySQL database queries.
It can build SELECT, INSERT, UPDATE and DELETE queries from lists of parameters and values.
The class can also execute the generated queries and retrieve the SELECT query results into associative arrays.
<<lessIt can build SELECT, INSERT, UPDATE and DELETE queries from lists of parameters and values.
The class can also execute the generated queries and retrieve the SELECT query results into associative arrays.
Download (MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
830 downloads

Securepoint Firewall & VPN Server 4.5
One of the most important requirements in the realisation of networks. more>> One of the most important requirements in the realisation of networks is the security. When internal and external computing-systems are connected with each other it has to be secured that no unauthorised person has access to them and the system is only allowing access to only authorised personnel. The Securepoint Professional Firewall & VPN Server (Information brochure) is suitable for companies with between 5 to 2.000 workstations, supports up to 16 network zones to protect company departments against each other and contains an integral VPN Server based on PPTP and IPSec.
Securepoint comes with an own secured Linux operating system based on RedHat. Securepoint has a client/server architecture. The administration client (Securepoint Security Manager) works under Windows and Linux (with wine).
Securepoint is an excellent and cost-effective choice for companies which wish to secure their Internet access, to protect the departments against each other and build up VPN nets between company and external locations.
All products are compatible with other softwaresystems like virusscanners, Load-balancing Systems...
Secured and harded RedHat Linux
Support of kernel 2.4.X
Support journaling filesystem
Support RAID
Network Interfaces with 10/100/1000 Mbit
16 Network interfaces (External, Internal, DMZ/SSN)
Compatible to other Linux software<<less
Download (212.04MB)
Added: 2009-03-31 License: Freeware Price: Free
278 downloads
Capacitor Converter 1.0
Capacitor Converter is an extension which converts capacitor values. more>>
Capacitor Converter is an extension which converts capacitor values.
Easy to use capacitor converter. Converts between pF, nF and uF in a flash. For those of you who didnt know you can make the toolbar disappear.
Just right-click(Windows) or ctrl+click(one button Macs) beside the address bar and select Capacitor Converter to make it disappear.
<<lessEasy to use capacitor converter. Converts between pF, nF and uF in a flash. For those of you who didnt know you can make the toolbar disappear.
Just right-click(Windows) or ctrl+click(one button Macs) beside the address bar and select Capacitor Converter to make it disappear.
Download (0.002MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
603 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 select personnel 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