Main > Free Download Search >

Free containing software for linux

containing

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2962
songanizer 0.8

songanizer 0.8


Songanizer is a shell script to organize a directory containing a collection of MP3 files. more>>
Songanizer is a shell script to organize a directory containing a collection of MP3 files. The goal is to create virtual directory structures, which give different view of the data, but without having redundant copies of the files themselves.

The files are organized according to information gathered from the tags of files stored in subdirectories located under the base directory, which bear the prefix _data in their name. Parallel virtual directory structures containing symbolic links to the actual files are created, which give different views of the same data. Each virtual directory stucture gives a view based on a particular attribute specified by the user. The _data directories themselves can be symbolic links to directories on other devices, and can have multiple levels of sub-directories within them holding the actual song files.

After songanization, the BASE directory will contain the following directories:
(i) _data* --> All directories starting with _data contain the real data.
(ii) _artist --> Contains the link structure on the basis of the artist tag.
(iii) _genre --> Contains the link structure on the basis of the genre tag.
(iv) _initial --> Contains the link structure on the basis of the initial.
... and more, depending on the switches passed to the script

Since Songanizer is a shell script, a running shell is the first and foremost requirement. Preferably it should be a Bourne Again SHell. You may report problems encountered on any shell to the project maintainer.

Getopt (enhanced) is needed to extract the options from the command line arguments. Alongwith that you should have gettext for internationalization support.

The mp3info tool should be installed in the system to process the file tags. It can be downloaded from http://ibiblio.org/mp3info/.
<<less
Download (0.013MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1193 downloads
Convert::Transcribe 0.02

Convert::Transcribe 0.02


Convert::Transcribe is a Perl extension for transcribing natural languages. more>>
Convert::Transcribe is a Perl extension for transcribing natural languages.

SYNOPSIS

use Convert::Transcribe;

$t = new Convert::Transcribe();
$t->fromfile(filename);
# or
$t = new Convert::Transcribe();
$t->fromstring("transcription def. containing newlines");
# or
$t = new Convert::Transcribe(filename);
# or
$t = new Convert::Transcribe("transcription def. containing newlines");

$t->transcribe("text");

$t->generated_code(); # for debugging

<<less
Download (0.004MB)
Added: 2007-07-27 License: Perl Artistic License Price:
820 downloads
Class::Accessor::Fast::Contained 0.05

Class::Accessor::Fast::Contained 0.05


Class::Accessor::Fast::Contained is a Perl module for fast accessors with data containment. more>>
Class::Accessor::Fast::Contained is a Perl module for fast accessors with data containment.

SYNOPSIS

package Foo;
use base qw(Class::Accessor::Fast::Contained);

# The rest is the same as Class::Accessor::Fast

This module does two things differently to the venerable Class::Accessor::Fast :

Fields are stored at arms-length within a single hash value of $self, rather than directly in the $self blessed referent.
new() allows mixin into an existing object, rather than creating and returning a new blessed hashref. To do this, just call something like:

my $self = Some::Other::Class->new;
$self = $self->Class::Accessor::Fast::Contained::new;

Note that the mixin code only supports objects which use a blessed hash reference or a blessed typeglob reference.
An alias setup() is available which does the same as new() but might make more sense if being used in this way.

<<less
Download (0.005MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
953 downloads
TxSig 1.05

TxSig 1.05


TxSig is a small signature rotator. more>>
TxSig project is a small signature rotator.
It can randomly pick from a directory of files containing fortunes or quotes. It offers a variety of features such as compatibility with files from fortune. Users can generate their own quote files.
Main features:
- Quotes chosen based on length
- Quotes chosen based on rating
- Multiple configuration files
- Multiple quote/fortune files
- 100% Compatability with standard fortune files
- Drop-in compatability with pine V 4.44
- Optional apending of .signature (or any other file)
- Uses only standard perl modules
- Tastes Good
- Possibly Sexy
Enhancements:
- fixed a problem with creating and updating the data.cnt file
<<less
Download (0.028MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1046 downloads
MetaTrans::Languages 1.04

MetaTrans::Languages 1.04


MetaTrans::Languages Perl module contains a simple database of most of the known languages. more>>
MetaTrans::Languages Perl module contains a simple "database" of most of the known languages. Extracted from MARC codes for languages, http://www.loc.gov/marc/languages/.

SYNOPSIS

use MetaTrans::Languages qw(get_lang_by_code get_code_by_lang);

print get_lang_by_code(afr); # prints Afrikaans
print get_code_by_lang(Afrikaans); # prints afr

FUNCTIONS

get_lang_by_code($code)

Returns the name of the language with $code or undef if no language with such a $code is known.

get_code_by_lang($language)

Returns the code of the $language or undef if the language is unknown.

is_known_lang($code)

Returns true if the language with $code exists in the "database", false otherwise.

get_langs_hash

Returns the {code_1 => language_1, code_2 => language_2, ...} hash containing all known languages and their codes.

get_langs_hash_rev

Returns the {language_1 => code_1, language_2 => code_2, ...} hash containing all known languages and their codes.

<<less
Download (0.032MB)
Added: 2007-06-01 License: Perl Artistic License Price:
875 downloads
Class::IntrospectionMethods::Catalog 1.003

Class::IntrospectionMethods::Catalog 1.003


Class::IntrospectionMethods::Catalog can manage catalogs from IntrospectionMethods. more>>
Class::IntrospectionMethods::Catalog can manage catalogs from IntrospectionMethods.

Exported functions

set_method_info( target_class, method_name, info_ref )

Store construction info for method method_name of class target_class.

set_global_catalog (target_class, ...)

Store catalog informations. The first parameter is the class featuring the methods declared in the global catalog.

Following paramaters is a set of named paramaters (e.g. key => value):

name

Mandatory name for the global catalog

list

array ref containing the list of slot and catalog. E.g.:

list => [
[qw/foo bar baz/] => foo_catalog,
[qw/a b z/] => alpha_catalog,
my_object => my_catalog
],
isa

Optional hash ref declaring a containment for catalog. E.g:

list => [ foo => USER ,
admin => ROOT ],
isa => { USER => ROOT }

Then the ROOT catalog will return foo, and the USER catalog will return foo and admin.

help

Optional hash ref (slot_name => help). Store some help information for each slot.

set_global_catalog will construct:

A ClassCatalog object containing the global catalog informations.

A sub_ref containing the ClassCatalog object in a closure.

Returns ( slot_name, sub_ref ). The sub_ref is to be installed in the target class.

When called as a class method, the subref will return the ClassCatalog object. When called as a target class method, the subref will return an ObjectCatalog object associated to the ClassCatalog object stored in the closure.

These 2 object have the same API. ObjectCatalog is used to contain catalog changes that may occur at run-time. ClassCatalog informations will not change.

<<less
Download (0.031MB)
Added: 2007-07-18 License: Perl Artistic License Price:
829 downloads
mboxstats 3.0

mboxstats 3.0


mboxstats creates several top-10 lists from a file containing message in mbox-format. more>>
mboxstats project creates several top-10 lists from a file containing message in mbox-format.
List of top10 lists:
- Top writes
- Top receivers
- Top subjects
- Top ccers
- Top top-level-domain
- Top timezones
- Top organisations
- Top useragents (mailprograms)
- Top month/day-of-month/day-of-week/hour
- Average number of lines per message
- All kinds of per-user statistics
- And much more!
It outputs a formatted text-file or XML output.
Enhancements:
- Added nummer of messages per year
<<less
Download (0.020MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1009 downloads
loonix-live 2.0 beta2

loonix-live 2.0 beta2


loonix-live is a bootable CD containing the Linux operating system. more>>
loonix-live is a bootable CD containing the Linux operating system. loonix-live runs Linux directly from the CD (or USB) without installing.


The Live CD described here is based on the gentoo Linux distribution and uses the Unification File System (also known as unionfs), allowing a read-only filesystem to behave as a writable one, saving all changes to memory.

loonix-live was created with the help of Tomas Matejiceks Linux live scripts. Tomas is also the developer of slax a slackware based live cd.
<<less
Download (483.3MB)
Added: 2005-11-10 License: GPL (GNU General Public License) Price:
1444 downloads
Tamil Converters 2.7.1

Tamil Converters 2.7.1


Tamil Converters is a package containing five programs that convert Tamil text from ISCII to Unicode. more>>
Tamil Converters is a package containing five programs that convert Tamil text from ISCII to Unicode, Unicode to ISCII, ITRANS to ISCII, ITRANS to ISCII, and TSCII to Unicode.
All five programs provide fairly extensive checking of their input for errors and untranslatable codes. The ITRANS used is, by default, extended to include codes for the Tamil digits and to include HZ escapes (as defined in RFC 1843) that delimit the Tamil portion.
This allows processing of mixed Tamil and ASCII text. The extensions and use of HZ escapes can be disabled by command-line switches.
Enhancements:
- Several programs inadvertently omitted from the previous version of the package are now included.
- Several errors in the Makefile have been fixed.
<<less
Download (0.096MB)
Added: 2007-05-28 License: GPL (GNU General Public License) Price:
902 downloads
Mail::Addressbook::Convert::Mailrc 1.1

Mail::Addressbook::Convert::Mailrc 1.1


Mail::Addressbook::Convert::Mailrc is a Perl module from Unix Mailrc Addressbook. more>>
Mail::Addressbook::Convert::Mailrc is a Perl module from Unix Mailrc Addressbook.

SYNOPSIS

use strict;

use Mail::Addressbook::Convert::Mailrc;

my $Mailrc = new Mail::Addressbook::Convert::Mailrc();

my $MailrcInFile ="mailrc"; # name of the file containing the Spry data # it is found in the Spry folder

# Convert Mailrc to Standard Intermediate format

# see documentation for details on format.

my $raIntermediate = $Mailrc->scan($MailrcInFile);

# This will also work

#my @MailrcInArray = @arrayContainingTheMailrcData;

#my $raIntermediate = $Mailrc->scan(@MailrcInArray);

print join "", @$raIntermediate;

<<less
Download (0.030MB)
Added: 2006-08-08 License: GPL (GNU General Public License) Price:
1172 downloads
Mirro 1.0 Beta

Mirro 1.0 Beta


Mirro is an application used to find the closest mirror to your connection. more>>
Mirro is an application used to find the closest mirror to your connection.

Mirro will find the closest mirror to your connection, given a file containing addresses. It pings every site extremely quickly, and sorts the reponses based on the number of hops and the round-trip time.

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

<<less
Download (0.020MB)
Added: 2007-04-24 License: GPL (GNU General Public License) Price:
913 downloads
POV-Ray for Linux 3.6.1

POV-Ray for Linux 3.6.1


a high-quality, totally free tool for creating stunning 3D graphics. more>> The Persistence of Vision Ray-Tracer creates three-dimensional, photo-realistic images using a rendering technique called ray-tracing. It reads in a text file containing information describing the objects and lighting in a scene and generates an image of that scene from the view point of a camera also described in the text file. Ray-tracing is not a fast process by any means, but it produces very high quality images with realistic reflections, shading, perspective and other effects.<<less
Download (6.73MB)
Added: 2009-04-19 License: Freeware Price: Free
195 downloads
PyKanjiCard 1.3

PyKanjiCard 1.3


PyKanjiCard is a flashcard program for learning Japanese words in Hiragana, Katakana, and Kanji. more>>
PyKanjiCard is a flash card program to aid learning japanese written words, in hiragana, katakana and kanji.
You can select words composed only by characters you already known. PyKanjiCard project is written in Python, using Pygtk.
Enhancements:
- A new restricted mode that loads only entries containing either Hiragana or Katakana and at least one character from known_chars was added.
- It can be accessed using the -r or --restrict optoin.
- A search bar was added.
<<less
Download (2.0MB)
Added: 2006-01-15 License: GPL (GNU General Public License) Price:
1377 downloads
QComicBook 0.3.4

QComicBook 0.3.4


QComicBook is a viewer for comic book archives containing jpeg/png images. more>>
QComicBook is a viewer for comic book archives containing jpeg/png images, which aims at convenience and simplicity.
Main features:
- automatic handling of archives
- full-screen mode
- two-pages mode and japanese mode
- thumbnails view
- page scaling (fit to window witdth/height, whole page)
- mouse or keyboard navigation, whatever you prefer
- bookmarks
- and more...
Enhancements:
- fixed drawing/scaling/rotation bugs in two-pages mode when 1st page is smaller than 2nd page
- fixed problem with opening files with non-ascii characters in file name via command line
- *.bmp file pattern added to the list of supported formats
<<less
Download (0.39MB)
Added: 2006-11-29 License: GPL (GNU General Public License) Price:
1063 downloads
Date::Hijri 0.02

Date::Hijri 0.02


Date::Hijri is a Perl extension to convert islamic (hijri) and gregorian dates. more>>
Date::Hijri is a Perl extension to convert islamic (hijri) and gregorian dates.

SYNOPSIS

use Date::Hijri;

# convert gregorian to hijri date
my ($hd, $hm, $hy) = g2h($gd, $gm, $gy);

# convert hijri to gregorian date
my ($gd, $gm, $gy) = h2g($hd, $hm, $hy);

This simple module converts gregorian dates to islamic (hijri) and vice versa.
The dates must be given as an array containing the day, month and year, and return the corresponding date as a list with the same elements.

<<less
Download (0.004MB)
Added: 2006-08-09 License: Perl Artistic License Price:
1181 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5