Main > Free Download Search >

Free features found software for linux

features found

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2905
Gimp::Feature 1.211

Gimp::Feature 1.211


Gimp::Feature is a Perl module that can check for specific features to be present before registering the script. more>>
Gimp::Feature is a Perl module that can check for specific features to be present before registering the script.

SYNOPSIS

use Gimp::Feature;
or
use Gimp::Feature qw(feature1 feature2 ...);

This module can be used to check for specific features to be present. This can be used to deny running the script when neccessary features are not present. While some features can be checked for at any time, the Gimp::Fu module offers a nicer way to check for them.

gtk

checks for the presence of the gtk interface module.

gtk-1.1, gtk-1.2

checks for the presence of gtk-1.1 (1.2) or higher.

perl-5.005

checks for perl version 5.005 or higher.

pdl

checks for the presence of a suitable version of PDL (>=1.9906).

gnome

checks for the presence of the Gnome-Perl module.

gtkxmhtl

checks for the presence of the Gtk::XmHTML module.

unix

checks wether the script runs on a unix-like operating system. At the moment, this is every system except windows, macos, os2 and vms.

persistency

checks wether the Gimp::Data module (Gimp::Data) can handle complex persistent data structures, i.e. perl references in addition to plain strings.

The following features can only be checked after Gimp-main> has been called (usually found in the form exit main). See Gimp::Fu on how to check for these.
gimp-1.1, gimp-1.2

checks for the presense of gimp in at least version 1.1 (1.2).

FUNCTIONS

present(feature)

Checks for the presense of the single feature given as the argument. Returns true if the feature is present, false otherwise.

need(feature,[function-name])

Require a specific feature. If the required feature is not present the program will exit gracefully, logging an appropriate message. You can optionally supply a function name to further specify the place where this feature was missing.

This is the function used when importing symbols from the module.

missing(feature-description,[function-name])

Indicates that a generic feature (described by the first argument) is missing. A function name can further be specified. This function will log the given message and exit gracefully.

describe(feature)

Returns a string describing the given feature in more detail, or undef if there is no description for this feature.

list()

Returns a list of features that can be checked for. This list might not be complete.

<<less
Download (0.26MB)
Added: 2006-07-13 License: Perl Artistic License Price:
1201 downloads
Revo Forum 1.8.0

Revo Forum 1.8.0


Revo Forum aims to be one of the most powerful forum systems available. more>>
Revo Forum aims to be one of the most powerful forum systems available. Revo Forum aims to be both powerful and easy to install and use.
Revo is not a clone of any forum. It combines the features found in other forum systems into a unique package. Site creators can use or modify a predefined theme or create their own with the easy templating system.
Using a new theme is as easy as uploading a single archive and running the Web-based installer.
Enhancements:
- miscellaneous optimisations and fixes.
- [+] RSS 1.0 and 2.0 module
- [+] advertising module (supports ANY advertising program, including Google AdSense, Y! Ads, Clicksor and more).
- [+] e-mail obfuscation (anti spamming)
- [+] themes and files editor
- [+] user can choose to enable or disable some modules (invitations, e-mail digests).
- [+] URL rewrite (with mod_rewrite)
- [+] mathematical function generator
- [+] multi-page support
- [+] new downloadable module : Weathercast
- [+] meta tags optimisations
- [+] WYSIWYG editor integrated
- [+] better RSS feed generation
- [+] OPML feed generation
<<less
Download (1.6MB)
Added: 2006-02-28 License: GPL (GNU General Public License) Price:
1339 downloads
Lingua::Phonology::Features 0.32

Lingua::Phonology::Features 0.32


Lingua::Phonology::Features is a module to handle a set of hierarchical features. more>>
Lingua::Phonology::Features is a module to handle a set of hierarchical features.

SYNOPSIS

use Lingua::Phonology;

my $phono = new Lingua::Phonology;
my $features = $phono->features;

# Add features programmatically
$features->add_feature(
Node => { type => privative, children => [Scalar, Binary, Privative] },
Scalar => { type => scalar },
Binary => { type => binary },
Privative => { type => privative }
);

# Drop features
$features->drop_feature(Privative);

# Load feature definitions from a file
$features->loadfile(phono.xml);

# Load default features
$features->loadfile;

Lingua::Phonology::Features allows you to create a hierarchy of features of various types, and includes methods for adding and deleting features and changing the relationships between them.

By "heirarchical features" we mean that some features dominate some other features, as in a tree. By having heirarchical features, it becomes possible to set multiple features at once by assigning to a node, and to indicate conceptually related features that are combined under the same node. This module, however, does not instantiate values of features, but only establishes the relationships between features.

Lingua::Phonology::Features recognizes multiple types of features. Features may be privative (which means that their legal values are either true or undef), binary (which means they may be true, false, or undef), or scalar (which means that their legal value may be anything). You can freely mix different kinds of features into the same set of features.

Finally, while this module provides a full set of methods to add and delete features programmatically, it also provides the option of reading feature definitions from a file. This is usually faster and more convenient. The method to do this is "loadfile". Lingua::Phonology::Features also comes with an extensive default feature set.

<<less
Download (0.098MB)
Added: 2006-06-13 License: Perl Artistic License Price:
1228 downloads
Tag Guesser 0.1

Tag Guesser 0.1


Tag Guesser script implements a tag guesser, such as the one found in JuK, for amaroK. more>>
Tag Guesser script implements a tag guesser, such as the one found in JuK, for amaroK. Tag Guesser can guess what mp3s tags are based on user supplied formats of the filenames.

This script is not needed for amarok >= 1.4 because the feature is now builtin.

This is the first release, so please send any bug reports or patches to me.

This script probably will work on other versions of software. If you have a patch to make it work on another version, please send it to me.

<<less
Download (0.003MB)
Added: 2006-10-11 License: GPL (GNU General Public License) Price:
1108 downloads
Email::Find 0.10

Email::Find 0.10


Email::Find allows you to find RFC 822 email addresses in plain text. more>>
Email::Find allows you to find RFC 822 email addresses in plain text.

Email::Find is a module for finding a subset of RFC 822 email addresses in arbitrary text (see "CAVEATS"). The addresses it finds are not guaranteed to exist or even actually be email addresses at all (see "CAVEATS"), but they will be valid RFC 822 syntax.

Email::Find will perform some heuristics to avoid some of the more obvious red herrings and false addresses, but theres only so much which can be done without a human.

Finds email addresses in the text and executes callback registered.

The callback is given two arguments. The first is a Mail::Address object representing the address found. The second is the actual original email as found in the text. Whatever the callback returns will replace the original text.

<<less
Download (0.039MB)
Added: 2007-03-31 License: Perl Artistic License Price:
943 downloads
File::Find 5.8.8

File::Find 5.8.8


File::Find is a Perl module to traverse a directory tree. more>>
File::Find is a Perl module to traverse a directory tree.

SYNOPSIS

use File::Find;
find(&wanted, @directories_to_search);
sub wanted { ... }

use File::Find;
finddepth(&wanted, @directories_to_search);
sub wanted { ... }

use File::Find;
find({ wanted => &process, follow => 1 }, .);

These are functions for searching through directory trees doing work on each file found similar to the Unix find command. File::Find exports two functions, find and finddepth. They work similarly but have subtle differences.

find

find(&wanted, @directories);
find(%options, @directories);

find() does a depth-first search over the given @directories in the order they are given. For each file or directory found, it calls the &wanted subroutine. (See below for details on how to use the &wanted function). Additionally, for each directory found, it will chdir() into that directory and continue the search, invoking the &wanted function on each file or subdirectory in the directory.

finddepth

finddepth(&wanted, @directories);
finddepth(%options, @directories);

finddepth() works just like find() except that is invokes the &wanted function for a directory after invoking it for the directorys contents. It does a postorder traversal instead of a preorder traversal, working from the bottom of the directory tree up where find() works from the top of the tree down.

<<less
Download (12.2MB)
Added: 2007-04-26 License: Perl Artistic License Price:
913 downloads
NetAddr::IP::Find 0.03

NetAddr::IP::Find 0.03


NetAddr::IP::Find is a Perl module to find IP addresses in plain text. more>>
NetAddr::IP::Find is a Perl module to find IP addresses in plain text.

SYNOPSIS

use NetAddr::IP::Find;
$num_found = find_ipaddrs($text, &callback);

This is a module for finding IP addresses in plain text.

Functions

NetAddr::IP::Find exports one function, find_ipaddrs(). It works very similar to URI::Finds find_uris() or Email::Finds find_emails().

$num_ipaddrs_found = find_ipaddrs($text, &callback);

The first argument is a text to search through and manipulate. Second is a callback routine which defines what to do with each IP address as theyre found. It returns the total number of IP addresses found.

The callback is given two arguments. The first is a NetAddr::IP instance representing the IP address found. The second is the actual IP address as found in the text. Whatever the callback returns will replace the original text.

EXAMPLES

# For each IP address found, ping its host to see if its alive.
use Net::Ping;
my $pinger = Net::Ping->new;
my %pinged;
find_ipaddrs($text, sub {
my($ipaddr, $orig) = @_;
my $host = $ipaddr->to_string;
next if exists $pinged{$host};
$pinged{$host} = $pinger->ping($host);
});

while (my($host, $up) == each %pinged) {
print "$host is " . $up ? up : down . "n";
}


# Resolve IP address to FQDN
find_ipaddrs($text, sub {
my($ipaddr, $orig) = @_;
resolve_ip($ipaddr->to_string);
});

sub resolve_ip {
use Net::DNS;
# see perldoc Net::DNS for details
}

<<less
Download (0.003MB)
Added: 2007-04-17 License: Perl Artistic License Price:
923 downloads
create Image 1.0

create Image 1.0


create Image is an amarok script that can create an image of the current playlist and save the files to an iso image. more>>
create Image is an amarok script that can create an image of the current playlist and save the files to an iso image.

The iso image is found in the respective home folders.

<<less
Download (0.010MB)
Added: 2007-01-11 License: GPL (GNU General Public License) Price:
1023 downloads
Phonetic for Linux 1.0

Phonetic for Linux 1.0


A program that translates text to the phonetic alphabet. more>> It is freeware with the source code avaliable. You can run it in Linux or Windows.
Phoneic finds words within telephone numbers. Phonetic also converts phonetic telephone numbers into numeric digits.
All words found within the given telephone number will be listed. If you click on a word, every combination in which that word is included will be displayed.
<<less
Download (809.72MB)
Added: 2009-04-22 License: Freeware Price: Free
187 downloads
CurlyAnkles 0.1.7

CurlyAnkles 0.1.7


CurlyAnkles is a versatile library written in C on GNU/Linux. more>>
CurlyAnkles is a versatile library written in C on GNU/Linux. CurlyAnkles has been written for GTK/GNOME and features a number of advanced features not found in the base GTK library. These include docking widgets and customisable toolbars and menus.

<<less
Download (2.3MB)
Added: 2007-07-28 License: GPL (GNU General Public License) Price:
818 downloads
TunesBrowser 0.3.0

TunesBrowser 0.3.0


TunesBrowser project is a simple music player, capable of playing music found on iTunes shares. more>>
TunesBrowser project is a simple music player, capable of playing music found on iTunes shares.
TunesBrowser can connect to the latest iTunes applications (as of April 29 2004) and is implemented on top of libopendaap.
TunesBrowsers interface is quite similar to that of iTunes. TunesBrowser was written with the purpose of being a prototype front-end for libopendaap. I intend to integrate libopendaap with other, more mature, players.
Main features:
- Play mp3s off other computers running iTunes
- Discovery of hosts over Rendezvous.
<<less
Download (0.21MB)
Added: 2006-07-19 License: MIT/X Consortium License Price:
1193 downloads
Lapsus 0.0.5

Lapsus 0.0.5


Lapsus is a set of programs created to help manage additional laptop features found on Asus laptops. more>>
Lapsus is a set of programs created to help manage additional laptop features found on Asus laptops and supported by asus-laptop kernel module from ACPI4Asus project, such as additional LEDs, hotkeys, backlight control etc. The project consist of a daemon program monitoring ACPI events, reading/writing /sys/ files created by asus-laptop module and run commands that need privileged access.

The daemon can be controlled over DBus using the client program, or any other programs which has support for that, or can be customized to do so. It can also be controlled with dbus-send utility.

Client program is a KDE Panel Applet (standalone client is planned). It gives easy access to daemons functions, as well as (in the future) providing additional features, such as ACPI hotkeys bindings or power status monitoring.

<<less
Download (0.78MB)
Added: 2007-06-21 License: GPL (GNU General Public License) Price:
861 downloads
Phonetic for mac 1.0

Phonetic for mac 1.0


A program that translates text to the phonetic alphabet. more>> It is freeware with the source code avaliable. You can run it in Linux or Windows.
Phoneic finds words within telephone numbers. Phonetic also converts phonetic telephone numbers into numeric digits.
All words found within the given telephone number will be listed. If you click on a word, every combination in which that word is included will be displayed.
<<less
Download (809.72MB)
Added: 2009-04-21 License: Freeware Price: Free
198 downloads
File::Find::Rule 0.30

File::Find::Rule 0.30


File::Find::Rule is an alternative Perl interface to File::Find. more>>


SYNOPSIS

use File::Find::Rule;
# find all the subdirectories of a given directory
my @subdirs = File::Find::Rule->directory->in( $directory );

# find all the .pm files in @INC
my @files = File::Find::Rule->file()
->name( *.pm )
->in( @INC );

# as above, but without method chaining
my $rule = File::Find::Rule->new;
$rule->file;
$rule->name( *.pm );
my @files = $rule->in( @INC );

<<less
Download (0.014MB)
Added: 2007-04-26 License: Perl Artistic License Price:
911 downloads
htb-stats 1.25

htb-stats 1.25


htb-stats.sh is a useful script for htb class summarization. more>>
htb-stats.sh is a useful script for htb class summarization. htb-stats is designed to allow simple, non-root usage, e.g. "./htb-stats.sh eth0".
If an htb.init, tcng.init, or htb-gen configuration is found, it will label traffic output with information taken from respective configuration files.
Enhancements:
- support label-less , adapt to newer tcs backlog output
<<less
Download (0.008MB)
Added: 2006-04-13 License: GPL (GNU General Public License) Price:
1294 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5