Main > Free Download Search >

Free optional software for linux

optional

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 974
photon photo album 0.4.4

photon photo album 0.4.4


Photon is a photo album with a clean design. more>>
Photon project is a photo album with a clean design.
Main features:
- static HTML pages (you can put all pages and images on a CD-ROM)
- slideshow (use javascript optional)
- can use gimp to resize picture for greater quality
- navigation between the image can use the keyboard (use javascript optional)
- work on any browser (Mozilla, Netscape Navigator 4.x, Konqueror, Opera)
- Each image can have a comment (with HTML tags)
- Information about the image (if taken from a digital picture) can be draw
- thumbnail image size can be choosed by the user
- output images can be scalled down
- control the number of thumbnail in a page
- movie support (new in 0.4.0)
- w3c compliant
<<less
Download (0.057MB)
Added: 2006-02-10 License: GPL (GNU General Public License) Price:
1351 downloads
OpenVRML 0.18.2

OpenVRML 0.18.2


OpenVRML is a VRML and X3D browser plug-in and C++ toolkit for incorporating VRML support into applications. more>> OpenVRML 0.18.2 is designed as a VRML and X3D browser plug-in and C++ toolkit for incorporating VRML support into applications.

OpenVRML provides VRML97 and Classic VRML X3D parsers, a runtime, and an OpenGL renderer as C++ libraries. The renderer is fully separate from the runtime library so that users can also provide their own renderer.

Enhancements: Fixed resolution of the Java virtual machine library for ppc and ppc64.

Requirements:

  • The Boost Libraries (required)
  • Font Configuration Library (recommended)
  • Freetype (recommended)
  • GNU Compiler for Java (recommended)
  • GTK+ (recommended)
  • libjpeg (recommended)
  • libpng (recommended)
  • Mesa (recommended)
  • Mozilla Firefox (recommended)
  • Simple DirectMedia Layer (recommended)
  • ANTLR (optional)
  • Blackdown Java 2 Standard Edition for Linux (optional)
  • IBM JDK for Linux (optional)
  • Mozilla (optional)
  • Sun Java 2 Platform, Standard Edition (optional)
<<less
Added: 2009-07-07 License: LGPL Price: FREE
12 downloads
EntityTable 1.0

EntityTable 1.0


EntityTable provides software that enhances/fixes JTable. more>>
EntityTable provides software that enhances/fixes JTable.
Each table row corresponds to a data Object in a List.
Main features:
- column hiding
- locking
- panning
- row scrolling
- row sorting
- intuitive focus behaviour
- optional virtual rows and columns
- Java 1.4 support
<<less
Download (0.67MB)
Added: 2007-02-07 License: MPL (Mozilla Public License) Price:
990 downloads
GPalta 0.3

GPalta 0.3


GPalta is a genetic programming toolbox that aims for simplicity and speed. more>>
GPalta is a genetic programming toolbox that aims for simplicity and speed.
GPalta features tree-based genetic programming, optional strong typing, a multithreaded GUI to control an evolution process, the ability to save evolutions to a file, to be continued at another time and place, and easy interoperability with Matlab.
Main features:
- Tree based genetic programming
- Strongly Typed (optional)
- Multithreaded GUI to control an evolution process
- Evolutions can be saved to file, and be continued later (and/or elsewhere)
- For GP aplications, all you have to do is provide fitness cases, configure some usual GP options and click go (or call evolve from Matlab)
- For advanced research, GPalta can be easily extended with custom nodes, fitness, operators, etc
GPalta is released under the terms of the GNU General Public License.
<<less
Download (0.19MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
1002 downloads
pwgen.pl 1.0

pwgen.pl 1.0


pwgen.pl is a password generator which can generate a desired number of password of arbitrary length. more>>
pwgen.pl is a password generator which can generate a desired number of password of arbitrary length and optional special characters.

Usage: pwgen.pl [options]

Options:
-h display this text.

-l password length, defaults to 10.
-n number of passwords to generate, defaults to 1.
-s includes special characters.

<<less
Download (0.003MB)
Added: 2006-08-31 License: GPL (GNU General Public License) Price:
1156 downloads
Bio::Das::Lite 1.49

Bio::Das::Lite 1.49


Bio::Das::Lite is a Perl extension for the DAS (HTTP+XML) Protocol. more>>
Bio::Das::Lite is a Perl extension for the DAS (HTTP+XML) Protocol.

SYNOPSIS

use Bio::Das::Lite;
my $bdl = Bio::Das::Lite->new_from_registry({category => Chromosome});
my $results = $bdl->features(22);

SUBROUTINES/METHODS

new : Constructor
my $das = Bio::Das::Lite->new(http://das.ensembl.org/das/ensembl1834);

my $das = Bio::Das::Lite->new({
timeout => 60,
dsn => http://user:pass@das.ensembl.org/das/ensembl1834,
http_proxy => http://user:pass@webcache.local.com:3128/,
});

Options can be: dsn (optional scalar or array ref, URLs of DAS services)
timeout (optional int, HTTP fetch timeout in seconds)
http_proxy (optional scalar, web cache or proxy if not set in %ENV)
caching (optional bool, primitive caching on/off)
callback (optional code ref, callback for processed XML blocks)
registry (optional array ref containing DAS registry service URLs
defaults to http://das.sanger.ac.uk/registry/services/das)
proxy_user (optional scalar, username for authenticating forward-proxy)
proxy_pass (optional scalar, password for authenticating forward-proxy)
user_agent (optional scalar, User-Agent HTTP request header value)

new_from_registry : Constructor
Similar to new above but supports capabilities and category
in the given hashref, using them to query the DAS registry and
configuring the DSNs accordingly.

my $das = Bio::Das::Lite->new_from_registry({
capabilities => [features],
category => [Protein Sequence],
});

Options are as above, plus
capability (optional arrayref of capabilities)
category (optional arrayref of categories)

<<less
Download (0.032MB)
Added: 2007-03-20 License: Perl Artistic License Price:
949 downloads
String::Scanf 0.98.8

String::Scanf 0.98.8


String::Scanf can emulate sscanf() of the C library. more>>
String::Scanf can emulate sscanf() of the C library.

SYNOPSIS

use String::Scanf; # imports sscanf()

($a, $b, $c, $d) = sscanf("%d+%d %f-%s", $input);
($e, $f, $g, $h) = sscanf("%x %o %s:%3c"); # input defaults to $_

$r = String::Scanf::format_to_re($f);
or
# works only for Perl 5.005
use String::Scanf qw(); # import nothing

my $s1 = String::Scanf->new("%d+%d %f-%s");
my $s2 = String::Scanf->new("%x %o %s:%3c");

($a, $b, $c, $d) = $s1->sscanf($input);
($e, $f, $g, $h) = $s2->sscanf(); # input defaults to $_

String::Scanf supports scanning strings for data using formats similar to the libc/stdio sscanf().

The supported sscanf() formats are as follows:

%d

Decimal integer, with optional plus or minus sign.

%u

Decimal unsigned integer, with optional plus sign.

%x
Hexadecimal unsigned integer, with optional "0x" or "0x" in front.

%o

Octal unsigned integer.

%e %f %g

(The [efg] work identically.)

Decimal floating point number, with optional plus or minus sign, in any of these formats:

1
1.
1.23
.23
1e45
1.e45
1.23e45
.23e45

The exponent has an optional plus or minus sign, and the e may also be E.

The various borderline cases like Inf and Nan are not recognized.

%s

A non-whitespace string.

%c

A string of characters. An array reference is returned containing the numerical values of the characters.

%%

A literal %.

The sscanf() formats [pnSC] are not supported.

The %s and %c have an optional maximum width, e.g. %4s, in which case at most so many characters are consumed (but fewer characters are also accecpted).

The numeric formats may also have such a width but it is ignored.

The numeric formats may have [hl before the main option, e.g. %hd, but since such widths have no meaning in Perl, they are ignored.

Non-format parts of the parameter string are matched literally (e.g. : matches as :), expect that any whitespace is matched as any whitespace (e.g. matches as s+).

<<less
Download (1.7MB)
Added: 2007-08-20 License: Perl Artistic License Price:
798 downloads
pidgin privacy please 0.3.1

pidgin privacy please 0.3.1


pidgin privacy please project is a pidgin plugin to stop spammers from annoying you. more>>
pidgin privacy please project is a pidgin plugin to stop spammers from annoying you. You can block messages from certain users, block messages from people who are not on your contact list, and suppress repeated authorization requests. Optionally, senders of blocked messages can be notified with an auto-reply.
Main features:
- Block certain users (with an optional auto-reply)
- Block messages from people who are not on your contact list (with an optional auto-reply)
- Suppress repeated authorization requests
This plugin was formerly known as gaim-blocky.
Enhancements:
- Beside some minor code cleanups, this release is mostly there to make users aware of the need to upgrade the pidgin patches.
<<less
Download (0.31MB)
Added: 2007-06-08 License: GPL (GNU General Public License) Price:
871 downloads
libopt++ 1.0.5

libopt++ 1.0.5


libopt++ is a C++ library intended to be a replacement for the venerable GNU getopt. more>>
libopt++ is a C++ library intended to be a replacement for the venerable GNU getopt. libopt++ library supports most of getopts features (though not optional arguments or -W), but is much simpler to use and does not permute argv[].
Enhancements:
- Updated build system to fix a few minor issues.
<<less
Download (0.017MB)
Added: 2006-10-16 License: GPL (GNU General Public License) Price:
1109 downloads
Gnomeradio 1.7

Gnomeradio 1.7


Gnomeradio is a FM radio tuner for the GNOME desktop (version 1 and 2). more>>
Gnomeradio is a FM radio tuner for the GNOME desktop (version 1 and 2).

Gnomeradio is an FM radio tuner application. It should work with every FM tuner card that is supported by video4linux. Remote controls are supported via (optional) lirc-support. Gnomeradio can also record radio as a Wave or MP3 file.

<<less
Download (0.58MB)
Added: 2006-12-02 License: GPL (GNU General Public License) Price:
1063 downloads
ego file manager 0.16.0

ego file manager 0.16.0


The ego file manager is a GTK+2 file manager. more>>
ego file manager is a GTK+2 file manager that uses libferris for its VFS and provides evas2, GTK tree, and optional Mozilla browser views.
Enhancements:
- This release adds the ability to drop files from f-spot onto a directory to initiate a copy.
<<less
Download (2.3MB)
Added: 2007-04-15 License: GPL (GNU General Public License) Price:
926 downloads
App::SimpleScan::Substitution::Line 2.02

App::SimpleScan::Substitution::Line 2.02


App::SimpleScan::Substitution::Line is a line with optional fixed variable values. more>>
App::SimpleScan::Substitution::Line is a line with optional fixed variable values.

SYNOPSIS

my $line =
App::SimpleScan::Substitution::Line->new(" this ");

# Use only this value when substituting " ".
$line->fix(substituite => change);

# what vars are fixed?
my @fixed_ones = $line->fixed();

# Forget about now.
$line->unfix(substitute);

# Forget all fixed variables.
$line->no_fixed

# Get the line back as a string.
print "$line";

App::SimpleScan::Substitution::Line allows us to associate fixed substitution values with a specific string. This allows us to re-substituted the same value if, during string substitution, we find the variable reappearing as the result of substituting some other variable. This eliminates the "cross-product" bug that appeared in some complex nest substitions.

<<less
Download (0.053MB)
Added: 2007-02-12 License: Perl Artistic License Price:
984 downloads
Cora 3.2

Cora 3.2


Cora is a line fitting tool designed for emission line spectra with low count numbers. more>>
Cora is a line fitting tool designed for emission line spectra with low count numbers.

Cora is an optional Gtk graphical user interface to the 7-part cora suite, which acts as a graphical front-end to cora_fit, and significantly facilitates the use of the latter.

It is a C-written program with graphical user interface. The program can also be run in IDL.

<<less
Download (1.8MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1214 downloads
Checkpoint Commander 6.1.0

Checkpoint Commander 6.1.0


Checkpoint Commander is a cross-platform file management, viewing, and archiving / security tool. more>>
Checkpoint Commander is a cross-platform file management, viewing, and archiving / security tool.
Checkpoint Commander project includes optional archive encryption using AES (AES-CBC-HMAC-SHA1).

<<less
Download (5.1MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
813 downloads
Puppet::Log 1.012

Puppet::Log 1.012


Puppet::Log provides a log facility with an optional Tk display. more>>
Puppet::Log provides a log facility with an optional Tk display.
This class implements a log facility with an optional Tk display.
I
.e once the class is created, you can log messages in it, but the Tk display does no need to be created at the same time. You may invoke later only when you need it.
When the Tk display is not invoked, the log can be either printed on STDOUT or warned on STDERR (or stay hidden). But in any case, the log message will be stored in the class so that all log messages can be retrieved later by the user or by the Tk display when invoked.
Once the Tk display is invoked, it will be updated by new logs.
Constructor parameters:
- title: Title of the Tk log display (optional)
- name: Name of the log used when printing on STDOUT or STDERR (optional)
- how: Specifies what to do when a log is sent to the object (either print on STDOUT, warn on STDERR). By default the logs will not be printed or warned. (optional)
- help The argument may be a string or a sub reference. When the help menu is invoked, either the help string will be displayed in a Tk::Dialog box or the sub will be run. In this case it is the users responsability to provide a readable help from the sub. (See "help" in Tk::Multi::Manager for further details)
Puppet classes are a set of utility classes which can be used by any object. If you use directly the Puppet::*Body class, you get the plain functionnality. And if you use the Puppet::* class, you can get the same functionnality and a Tk Gui to manage it.
The basic idea is when you construct a Puppet::* object, you have all the functionnality of the object without the GUI. Then, when the need arises, you may (or the class may decide to) open the GUI of the object. On the other hand, if the need does not arise, you may create a lot of objects without cluttering your display.
<<less
Download (0.005MB)
Added: 2007-03-29 License: Perl Artistic License Price:
939 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5