Main > Free Download Search >

Free defined software for linux

defined

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1980
WebLaunch 1.0

WebLaunch 1.0


WebLaunch inserts tag data for the playing track in user-defined URLs and opens them in an external browser. more>>
WebLaunch inserts tag data for the playing track in user-defined URLs and opens them in an external browser.

It can be used to open the artists website, get information from Allmusic.com, search for videos on YouTube, perform Google searches, find guitar tabs, and so on.

<<less
Download (0.020MB)
Added: 2007-08-21 License: GPL (GNU General Public License) Price:
795 downloads
Chemistry::Mol 0.36

Chemistry::Mol 0.36


Chemistry::Mol is a molecule object toolkit. more>>
Chemistry::Mol is a molecule object toolkit.

SYNOPSIS

use Chemistry::Mol;

$mol = Chemistry::Mol->new(id => "mol_id", name => "my molecule");
$c = $mol->new_atom(symbol => "C", coords => [0,0,0]);
$o = $mol->new_atom(symbol => "O", coords => [0,0,1.23]);
$mol->new_bond(atoms => [$c, $o], order => 3);

print $mol->print;

This package, along with Chemistry::Atom and Chemistry::Bond, includes basic objects and methods to describe molecules.
The core methods try not to enforce a particular convention. This means that only a minimal set of attributes is provided by default, and some attributes have very loosely defined meaning.

This is because each program and file type has different idea of what each concept (such as bond and atom type) means. Bonds are defined as a list of atoms (typically two) with an arbitrary type. Atoms are defined by a symbol and a Z, and may have 3D and internal coordinates (2D coming soon).

<<less
Download (0.042MB)
Added: 2007-08-15 License: Perl Artistic License Price:
803 downloads
Evolution 2.11.90

Evolution 2.11.90


Evolution provides integrated mail, addressbook and calendaring functionality to users of the GNOME desktop. more>>
Evolution provides integrated mail, addressbook and calendaring functionality to users of the GNOME desktop.
Main features:
- No viruses or worms
- Junk filtering
- Desktop integration
- Developer Platform (EDS)
- Evolution#
- EPlugin
- Advanced email searching
- Web calendars
- vFolders
- User-defined filters
- Multiple accounts
- Palm device support
- Customized reminders
- Multiple calendar views
- iCalendar support
- To-Do list
- LDAP compatible
- Share vCards
- Security and encryption
- Open Source
<<less
Download (20MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
490 downloads
Dzen 0.8.0

Dzen 0.8.0


Dzen is a general purpose messaging and notification program for X11. more>>
Dzen is a general purpose messaging and notification program for X11. The project was desigend to be fully scriptable and integrate well with window managers like dwm and wmii.
Main features:
- Fully scriptable
- Language agnostic
- Supports user defined events and actions
- Hideable, Title area
- Autohiding multiline window (can be set sticky)
- tail -f functionality, updates the contents in real time
- Scrollable windows
<<less
Download (0.011MB)
Added: 2007-08-07 License: MIT/X Consortium License Price:
808 downloads
Argtable 2.7

Argtable 2.7


Argtable is an ANSI C library for parsing GNU style command line arguments. more>>
Argtable is an ANSI C library for parsing GNU style command line arguments, as in "foo -abc -o myfile --help --count=7".
Argtable library enables a programs command line syntax to be defined in the source code as an array of argtable structs. The command line is then parsed according to that specification, and the resulting values are returned in those same structs where they are accessible to the main program.
The default parsing, validation, and error reporting routines may be replaced by user-defined callbacks if desired, and new argtable data types may be created to parse user-defined argument types.
The parsing itself is done using GNU getopt and so is 100% GNU compatible.
Enhancements:
- This release adds some additional foolproofing in the arg_xxxn() constructor functions.
- It also fixes a bug in arg_parsearg() that is specific to TI DSP platforms, and a bug in the arg_dbl() constructor that is specific to Solaris platforms.
<<less
Download (2.9MB)
Added: 2007-07-22 License: LGPL (GNU Lesser General Public License) Price:
824 downloads
List::MoreUtils 0.22

List::MoreUtils 0.22


List::MoreUtils is a Perl module that can provide the stuff missing in List::Util. more>>
List::MoreUtils is a Perl module that can provide the stuff missing in List::Util.

SYNOPSIS

use List::MoreUtils qw(any all none notall true false firstidx first_index
lastidx last_index insert_after insert_after_string
apply after after_incl before before_incl indexes
firstval first_value lastval last_value each_array
each_arrayref pairwise natatime mesh zip uniq minmax);

List::MoreUtils provides some trivial but commonly needed functionality on lists which is not going to go into List::Util.

All of the below functions are implementable in only a couple of lines of Perl code. Using the functions from this module however should give slightly better performance as everything is implemented in C. The pure-Perl implementation of these functions only serves as a fallback in case the C portions of this module couldnt be compiled on this machine.

any BLOCK LIST

Returns a true value if any item in LIST meets the criterion given through BLOCK. Sets $_ for each item in LIST in turn:

print "At least one value undefined"
if any { !defined($_) } @list;

Returns false otherwise, or undef if LIST is empty.

all BLOCK LIST

Returns a true value if all items in LIST meet the criterion given through BLOCK. Sets $_ for each item in LIST in turn:

print "All items defined"
if all { defined($_) } @list;

Returns false otherwise, or undef if LIST is empty.

none BLOCK LIST

Logically the negation of any. Returns a true value if no item in LIST meets the criterion given through BLOCK. Sets $_ for each item in LIST in turn:

print "No value defined"
if none { defined($_) } @list;

Returns false otherwise, or undef if LIST is empty.

notall BLOCK LIST

Logically the negation of all. Returns a true value if not all items in LIST meet the criterion given through BLOCK. Sets $_ for each item in LIST in turn:

print "Not all values defined"
if notall { defined($_) } @list;

Returns false otherwise, or undef if LIST is empty.

true BLOCK LIST

Counts the number of elements in LIST for which the criterion in BLOCK is true. Sets $_ for each item in LIST in turn:

printf "%i item(s) are defined", true { defined($_) } @list;

false BLOCK LIST

Counts the number of elements in LIST for which the criterion in BLOCK is false. Sets $_ for each item in LIST in turn:

printf "%i item(s) are not defined", false { defined($_) } @list;

firstidx BLOCK LIST

first_index BLOCK LIST

Returns the index of the first element in LIST for which the criterion in BLOCK is true. Sets $_ for each item in LIST in turn:

my @list = (1, 4, 3, 2, 4, 6);
printf "item with index %i in list is 4", firstidx { $_ == 4 } @list;
__END__
item with index 1 in list is 4

Returns -1 if no such item could be found.

first_index is an alias for firstidx.

<<less
Download (0.022MB)
Added: 2007-07-04 License: Perl Artistic License Price:
846 downloads
htmlobserver 0.8a

htmlobserver 0.8a


htmlobserver project is a program that downloads a Web page at regular intervals, and searches it for regular expressions. more>>
htmlobserver project is a program that downloads a Web page at regular intervals, and searches it for regular expressions.

All HTML tags are removed, and the remaining text is searched for regular expressions, which can be defined in a list.

Matching rows are displayed in a panel, and different alarms may be triggered. The alarms are repeated when the result set changes.

<<less
Download (0.028MB)
Added: 2007-07-01 License: LGPL (GNU Lesser General Public License) Price:
845 downloads
Cancerbero 0.6

Cancerbero 0.6


Cancerbero is a portscan engine based in nmap. more>>
Cancerbero (the watchdog of the ports) is a portscan engine based in nmap. It will scan the hosts of a defined net once in every configured interval and it will store the results in a mysql database. It comes with a Web interface to access the scan info.
Main features:
- Graphical configuration.
- Multiple sensors scanning can be deployed.
- There is no limit in the number of ranges to scan.
- Discover the alive (not firewalled) hosts.
- Scans 1-65535 TCP ports of each host.
- Attempts to discover the REAL application and version behind each port.
- Attempts to discover the OS of each host.
- Store all the information in a MySQL database.
- Rescan each host at a defined interval.
- White-Lists with hosts or ranges that you dont like to scan can be defined.
- The information can be access through a graphical interface? (web based)
- You decide how many scans should be archived.
- Stats of all the data are provided.
Install instructions can be found in: http://cancerbero.sourceforge.net/wikka.php?wakka=Install
<<less
Download (0.12MB)
Added: 2007-06-20 License: GPL (GNU General Public License) Price:
857 downloads
BlogMax

BlogMax


BlogMax is an Emacs package that aids in the creation of a weblog. more>>
BlogMax project is an Emacs package that aids in the creation of a weblog.

You define templates and an FTP site for uploads. Most of your sites content is defined by text files. Saving a text file automatically wraps the template around it, expands macros and shortcuts, and saves the HTML file.

Other commands in "weblog" mode upload files via FTP, create an RSS file, yank links or blockquotes into the buffer, create shortcuts, etc. The BlogMax Web site was, of course, created with BlogMax.
<<less
Download (0.17MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
858 downloads
Streamnik Server 0.02

Streamnik Server 0.02


Streamnik Server project is an IPTV server based on the open codecs Ogg/Vorbis and Ogg/Theora. more>>
Streamnik Server project is an IPTV server based on the open codecs Ogg/Vorbis and Ogg/Theora. It can stream a number of different channels and is optimized to run on leased (virtual) servers. The program schedule is defined by an SQL database table and can be changed at runtime.

<<less
Download (0.12MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
872 downloads
Speegle Define 1.1

Speegle Define 1.1


Speegle Define is a Firefox extension that gives a spoken definition of a word using Speegle Speech Technology. more>>
Speegle Define is a Firefox extension that gives a spoken definition of a word using Speegle Speech Technology. You highlight the word you would like explained with highlight left click on any internet page you are reading.

Right click and choose "Audio Definition" from the pop up menu and its definition will be read back to you in English through your speakers or headphones.

<<less
Download (0.004MB)
Added: 2007-06-02 License: MPL (Mozilla Public License) Price:
874 downloads
ZebraTuner 0.9.0.0

ZebraTuner 0.9.0.0


ZebraTuner is a guitar tuner and generic instrument tuner. more>>
ZebraTuner is a guitar tuner and generic instrument tuner. The project compares frequencies detected in the signal coming from the microphone to standard or user-defined notes, displaying the results in both graphical and textual form.

The number of notes tested and their frequency is configurable, so it can be used for other instruments and other tunings besides those based on equal temperament (e.g. just intonation-based tunings).

<<less
Download (0.066MB)
Added: 2007-05-29 License: MIT/X Consortium License Price:
884 downloads
LanguageTool 0.9

LanguageTool 0.9


LanguageTool is an Open Source language checker for the English and German language. more>>
LanguageTool is an Open Source language checker for the English and German language. This is a rule-based language checker that will find errors for which a rule is defined in its XML configuration files. Rules for more complicated errors can be written in Java.

You can think of LanguageTool as a tool to detect errors that a simple spell checker cannot detect, e.g. mixing up there/their, no/now etc. It can also detect a limited amount of grammar mistakes. It does not include spell checking.

<<less
Download (10MB)
Added: 2007-05-21 License: LGPL (GNU Lesser General Public License) Price:
890 downloads
Hash::NoVivify 0.01

Hash::NoVivify 0.01


Hash::NoVivify is a Perl extension for non-vivifying exists and defined functions. more>>
Hash::NoVivify is a Perl extension for non-vivifying exists and defined functions.

SYNOPSIS

use Hash::NoVivify qw(Defined Exists);

...

if (Exists(%hash, qw(key1 key2 ... keyn ))) {
...
}

if (Defined(%hash, qw(key1 key2 ... keyn))) {
...
}

When used on a hash, the exists() and defined() functions will create entries in a hash in order to evaluate the function.

For instance, the code:

%a = (a => 1, b=> 2);
print "Doesnt existn" unless exists($a{c});
print "Also Doesnt existn" unless exists($a{c}->{d});
print "Oh, my, not goodn" if exists($a{c});

will print out:

Doesnt exist
Also Doesnt exist
Oh, my, not good

The Hash::NoVivify module provides two functions, Defined() and Exists(), which avoid this, at the cost of a slightly convoluted syntax. Both functions take a reference to a hash, followed by a list of descending keys defining the hash entry to be investigated.

<<less
Download (0.003MB)
Added: 2007-05-18 License: Perl Artistic License Price:
889 downloads
DirHandle 5.8.8

DirHandle 5.8.8


DirHandle is a Perl module created to supply object methods for directory handles. more>>
DirHandle is a Perl module created to supply object methods for directory handles.

SYNOPSIS

use DirHandle;
$d = new DirHandle ".";
if (defined $d) {
while (defined($_ = $d->read)) { something($_); }
$d->rewind;
while (defined($_ = $d->read)) { something_else($_); }
undef $d;
}

The DirHandle method provide an alternative interface to the opendir(), closedir(), readdir(), and rewinddir() functions.

The only objective benefit to using DirHandle is that it avoids namespace pollution by creating globs to hold directory handles.

NOTES

On Mac OS (Classic), the path separator is :, not /, and the current directory is denoted as :, not .. You should be careful about specifying relative pathnames. While a full path always begins with a volume name, a relative pathname should always begin with a :. If specifying a volume name only, a trailing : is required.

<<less
Download (12.2MB)
Added: 2007-05-15 License: Perl Artistic License Price:
895 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5