Main > Free Download Search >

Free select software for linux

select

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1542
mrtg-select 1.0

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.
<<less
Download (0.002MB)
Added: 2005-11-16 License: GPL (GNU General Public License) Price:
1440 downloads
selectwm 0.4.1

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).

<<less
Download (0.020MB)
Added: 2005-04-27 License: GPL (GNU General Public License) Price:
1640 downloads
Inline::Select 0.01

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.

<<less
Download (0.003MB)
Added: 2007-06-01 License: Perl Artistic License Price:
875 downloads
Gentoo Category Select 0.3

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.
<<less
Download (0.008MB)
Added: 2005-08-26 License: GPL (GNU General Public License) Price:
1520 downloads
PSPL Multi Select Box 1.0.1

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.
<<less
Download (MB)
Added: 2007-02-09 License: Free To Use But Restricted Price:
987 downloads
SQLitepp

SQLitepp


SQLitepp is a multilanguage object oriented wrapper to the sqlite library. more>>
SQLitepp is a C/C++/Python wrapper to sqlite library for database management. It implements an object oriented way to manipulate the database in every supported language.

SQLitepp supports selfupdatable queries and a straight SQL code query system without using strange things for querying the database, letting you manipulate it directly in SQL but also exposing simple object oriented methods to manipulate the result of the queries and updating them.

Python EXAMPLE:

db = SQLDatabase("database.db")
q = db.query("Tablename", "SELECT Name,Id FROM %t")
if len(q):
tuple1 = q[0]
tuple1["Name"] = "Foobar"
tuple1.commit()
del db

C++ EXAMPLE:

SQLDatabase db("database.db");
SQLQuery *q = db.query("Tablename", "SELECT Name,Id FROM %t");
if(q->numberOfTuples()) {
SQLRow *tuple1 = q->getRow(0);
tuple1->set("Name", "Foobar");
tuple1->commit();
}
delete q;

C EXAMPLE:

void *db = new_SQLDatabase("database.db");
void *q = SQLDatabase_query(db, "Tablename", "SELECT Name,Id FROM %t");
if(SQLQuery_numberOfTuples(q)) {
void *tuple1 = SQLQuery_getRow(q, 0);
SQLRow_set(tuple1, "Name", "Foobar");
SQLRow_commit(tuple1);
}
delete_SQLQuery(q);
delete_SQLDatabase(db);
<<less
Download (0.019MB)
Added: 2005-09-26 License: LGPL (GNU Lesser General Public License) Price:
1489 downloads
steelme 0.1.3

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.
<<less
Download (1.25MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
1472 downloads
SQLizer 1.1

SQLizer 1.1


SQLizer is a Java utility library intended for generating sql from the search input. more>>
SQLizer is a Java utility library intended for generating sql from the search input.

Synopsis:

import stanford.netdb.utils.*;

String sql_1 = Feild2SQL.parseField(type,table, column, input_str, field_display_name, post_filter);

String sql_2 = Feild2SQL.parseStringField(table, column, input_str, field_display_name);

String sql_3 = Feild2SQL.parseIntField(table, column, line, field_display_name);

Given an input string it builds SQL select statement. It supports two types of inputs, numeric and string. The catch is that this library allows usage of operators in the input string. Supported operators are and, or and not. It also supports wildcards *, %, ? and _ in string searches. In case of numeric searches no wildcards are supported.

To accommodate searches by strings, which have wildcards in them, backslashes can be used to escape appropriate characters. Obviously to search for it needs to be escaped as well. Strings with spaces needs to be enclosed in double quotes. The other possibility is to do a regex search, which is accomplished by enclosing string in forward slashes. The resulting SQL is targeted toward Oracle regex expressions. For example, following input strings will be appropriately evaluated.

a or b
-> ( ( select id from Record where name = a ) UNION ( select id from Record where name = b ) )

not a and not b
-> ( ( select id from Record MINUS ( select id from Record where name = a ) ) INTERSECT ( select id from Record MINUS ( select id from Record where name = b ) ) )

"a b c" or a\*
-> ( ( select id from Record where name = a b c ) UNION ( select id from Record where name LIKE a\% ESCAPE ) )

/^.*[[:digit:]]$/
-> ( select id from Record where REGEXP_LIKE(name, ^.*[[:digit:]]$, i) )

We use unions and intersects in order to accomodate searches for objects with multi-value attributes.

<<less
Download (0.006MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
820 downloads
SQLayer 1.1

SQLayer 1.1


SQLayer is a Perl interface to DB. more>>
SQLayer is a Perl interface to DB.

new(database => DBI:mysql:database=phorum;host=localhost;port=3306, user => user, passowrd => somepass);

my $PAllRowsArrayRef = $D -> all_rows("SELECT a, b FROM dum"); # pointer to array

my @AOneColumnArray = $D -> column("SELECT a FROM dum"); # array

$D -> commit; # is equal to $D -> proc("COMMIT");

my $NConnectStatus = $D -> connect_status; # returns 1 if connected

$D -> DEBUG(1); # warn query only
$D -> DEBUG($n); # set trace level to $n-1

$D -> enable_transactions; # enable transactions if possible
$D -> errstr; # returns error code

my %HHashNameById = $D -> hash_all("SELECT id, name FROM dum"); #

my $PHashOneByFieldsNameRef = $D -> hash_row("SELECT a, b, c FROM dum WHERE id = 1"); # pointer to hash

my %HHashOneByFieldsName = $D -> hash_var("SELECT a, b, c FROM dum WHERE id = 1"); # hash

$D -> nodebug; # No warn query and clear tracing

$NAffectedRowsNum = $D -> proc("DELETE FROM dum WHERE a = b"); # affected rows

my @AOneRowArray = $D -> row("SELECT a, b, c FROM dum WHERE id = 1"); # array
my $NVvalue = $D -> row("SELECT a FROM dum WHERE id = 1 "); # one value

my $PRowOfHashRef = $D -> row_hash("SELECT a, b, c FROM dum"); # pointer to array of hashes

$SQuoted = $D -> quote($SSomeVar); # same as DBI method

<<less
Download (0.003MB)
Added: 2007-07-18 License: Perl Artistic License Price:
828 downloads
Suede 0.2.5

Suede 0.2.5


Suede provides a set of SVG icons for Gnome 2.x. more>>
Suede provides a set of SVG icons for Gnome 2.x.
INSTALL:
-Untar to ".icons" directory in your home directory, or in the /usr/share/icons directory.
-Select icon theme
-Done!
Enhancements:
- Switched most colors to ones from the Gnome 32 color palette
- added start-here icon
- new mimetype icons
<<less
Download (MB)
Added: 2007-03-03 License: GPL (GNU General Public License) Price:
966 downloads
SafeSQL 2.2

SafeSQL 2.2


SafeSQL project is an SQL query processer to automate the tedious tasks of syntax testing. more>>
SafeSQL project is an SQL query processer to automate the tedious tasks of syntax testing, injection attack-proofing, dropping parts of queries and other misc features. It has only been tested with MySQL syntax, but any ANSI SQL-92 compliant db library should work OK.
SYNOPSIS:
require SafeSQL.class.php;
// dummy up a variable with a single quote in it
$section_name = "freds place";
// run the query through SafeSQL
$safesql =& new SafeSQL_MySQL;
$query_string = $safesql->query("select * from sections
where Section_Name = %s", array($section_name));
echo $query_string;
OUTPUT:
select * from sections where Section_Name = freds place
// $query_string is now safe to pass to your SQL library
Enhancements:
- This release adds %n and %N for handling quoted and (non-quoted) NULL values.
<<less
Download (0.007MB)
Added: 2007-04-06 License: LGPL (GNU Lesser General Public License) Price:
933 downloads
SMPlayer 0.1

SMPlayer 0.1


SMPlayer is a utility to play media file via the media player MPlayer. more>>
SMPlayer is a utility to play media file via the media player MPlayer. Files can be selected by a File-Selection-Dialog or by Drag-and-Drop.

By now it supports only basic functionality:

Select File, Play File, Seek, Switch to Fullscreen, adjust volume.
During playback a progress bar is shown.

<<less
Download (0.68MB)
Added: 2007-03-18 License: GPL (GNU General Public License) Price:
962 downloads
SLMotion 1.2

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

<<less
Download (0.14MB)
Added: 2006-09-19 License: GPL (GNU General Public License) Price:
1132 downloads
transset-df 5

transset-df 5


transset-df is a patched version of xorgs transset. more>>
transset-df is a patched version of xorgs transset. I wanted to integrate transset into my windowmanager and to be able to set and unset transparency by just pressing a key.
To make that possible I added several different select methods. The first one was select by pointing which lets the user run transset directly on the window curently under the cursor without having to click. Later select by name and id was added after inspiration from other transset patches.
In the future I guess its meant for the windowmanagers to handle transparency. Then we will hopefully see these functions and many other now imposible function. This will however require you to wait untill this is implemented in your favorite wm.
This patch is a way of "scratching where it itches", by creating a usefull integration with every windowmanager without changing any wm-code. The "unix way" of doing it :)
Main features:
- select window by clicking (as transset)
- select window by pointing
- select by window name or id
- force toggle
- increase or decrease opacity
Installation:
First of all, for transparency to work in X you have to have a X-server with XComposite extension working. transset-df is not a program that creates transparency, its a program that sets properties for windowses. These properties must then be supported by the underlaying X-server. Im not going to go through how to get xcomposite working, but if you can already set transparency with xorgs transset then you can also do it with transset-df.
type: tar zxf transset-df-X.tar.gz where X is the versionnumber
type: cd transset-df-X/
type: make
type: make install (you have to be root-user here)
Enhancements:
- transSet.c: Applied patch so that transset-df compiles with gcc 2.95. Thanks to Andreas Kohn for the patch
<<less
Download (0.010MB)
Added: 2006-01-11 License: Freely Distributable Price:
1382 downloads
MySQL Abstractor 2.2

MySQL Abstractor 2.2


MySQL Abstractor package contains PHP classes that implements a MySQL database abstraction layer. more>>
MySQL Abstractor package contains PHP classes that implements a MySQL database abstraction layer.

It provides several classes. There is one for establishing connections and executing SQL queries, another for composing and executing SELECT, INSERT, UPDATE and DELETE queries from a list of parameters, and a wrapper class to simplify the usage of the other two classes.

<<less
Download (MB)
Added: 2007-07-24 License: MIT/X Consortium License Price:
502 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5