Main > Free Download Search >

Free bedding collections software for linux

bedding collections

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1014
Audio collection script 1.0

Audio collection script 1.0


Audio collection script is a script which can help you manage collections of audio files. more>>
Audio collection script is a script which can help you manage collections of audio files. For example, I have a directory with all my audio files in it, sorted by band/album. I also have an audio collections directory. Within that directory I have a few list files which contain patterns for songs that should be part of that collection. The script generates or updates a subdirectory for each list file present and creates links within those directories to all music files from my main audio directory that match the patterns in the list file.

An example:

Your music files are in /audio
Your collections are in /audio-collections
The file /audio-collections/funny.list has the following lines:

/audio-collections/funny/
#the next line matches all songs within a tripod directory
tripod/
monty*python
kevin*bloody*wilson
bill*clinton*miss*lewinsky*and*i

When run, it will process each .list file in the current directory. So for this example, when run from /audio-collections, it will create or clean out the directory /audio-collections/funny and create links inside it for any files found within /audio which match the specified patterns.

The first line in each list file specifies the directory to create and use for the links. The patterns in the file will match on the full path of a song.

Note: I am pretty sure it would not be a good path to put your collections inside your main audio directory.
<<less
Download (0.002MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
970 downloads
PerlBean::Collection 1.0

PerlBean::Collection 1.0


PerlBean::Collection is a Perl module that contains a collection of PerlBean objects. more>>
PerlBean::Collection is a Perl module that contains a collection of PerlBean objects.

SYNOPSIS

use strict;
use PerlBean;
use PerlBean::Collection;
use PerlBean::Attribute::Factory;

my $bean = PerlBean->new( {
package => Athlete,
} );
my $factory = PerlBean::Attribute::Factory->new();
my $attr = $factory->create_attribute( {
method_factory_name => name,
short_description => the name of the athlete,
} );
$bean->add_method_factory($attr);

my $bean2 = PerlBean->new( {
package => Cyclist,
base => [ qw(Athlete)],
} );
my $factory = PerlBean::Attribute::Factory->new();
my $attr2 = $factory->create_attribute( {
method_factory_name => cycle,
short_description => the cyclists cycle,
} );
$bean2->add_method_factory($attr2);

my $collection = PerlBean::Collection->new();
$collection->add_perl_bean($bean);
$collection->add_perl_bean($bean2);
$collection->write(tmp);

ABSTRACT

Code hierarchy generation for bean like Perl modules

PerlBean::Collection contains a collection of PerlBean objects in order to generate an hierarchy of Perl modules.

<<less
Download (0.089MB)
Added: 2007-02-22 License: Perl Artistic License Price:
977 downloads
C Comic Collection 0.04

C Comic Collection 0.04


C Comic Collection project is a GTK application for downloading, cataloging, and viewing Web comics. more>>
C Comic Collection project is a GTK application for downloading, cataloging, and viewing Web comics. It uses a MySQL database.
To compile this software, just type "make".
It requires development libraries for gtk, gtk_imlib, cURL, mysql and pthreads. If youre on Linux these should come with your distrobution; I dunno for other OS. If you only have the runtimes and are using a 386 derivative (Pentium et al) you can get a binary from http://c-comiccollect.sourceforge.net.
Compilation will produce a binary called "gtk-cc"; copy this to your /usr/bin (youll need root privileges, copy to your ~/bin (you wont) or just run it from where it is (./gtk-cc &).
You can populate the database by running the included "comiccollection.sql" against an empty database. (mysql -u < username > < dbname > < comiccollection.sql). It even includes some comics to get you started!
Enhancements:
- Minor improvements - only really relevant if you view KeenSpace comics.
- Fixed file non-deletion problem
- Fixed KeenSpace file download problem
<<less
Download (0.018MB)
Added: 2006-11-14 License: GPL (GNU General Public License) Price:
1081 downloads
UDF collection for MySQL 0.3

UDF collection for MySQL 0.3


UDF collection for MySQL project contains utility UDFs that are supposed to be built and loaded as shared objects. more>>
UDF collection for MySQL project contains utility UDFs that are supposed to be built and loaded as shared objects.
Its available functions are HUMANAGE() (which returns the age in years relative to a custom date or NOW()), URLENCODE() and URLDECODE().
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Enhancements:
- A bug in HUMANAGE() regarding a last adjustment of mon/mday in sll2tm() was fixed.
- A bug in HUMANAGE() in which day() just looped over the first year was fixed.
<<less
Download (0.29MB)
Added: 2007-02-22 License: BSD License Price:
977 downloads
Bio::AnnotationCollectionI 1.4

Bio::AnnotationCollectionI 1.4


Bio::AnnotationCollectionI is a Perl interface for annotation collections. more>>
Bio::AnnotationCollectionI is a Perl interface for annotation collections.
SYNOPSIS
# get an AnnotationCollectionI somehow, eg
$ac = $seq->annotation();
foreach $key ( $ac->get_all_annotation_keys() ) {
@values = $ac->get_Annotations($key);
foreach $value ( @values ) {
# value is an Bio::AnnotationI, and defines a "as_text" method
print "Annotation ",$key," stringified value ",$value->as_text,"n";
# also defined hash_tree method, which allows data orientated
# access into this object
$hash = $value->hash_tree();
}
}
Annotation Collections are a way of storing a series of "interesting facts" about something. We call an "interesting fact" in Bioperl an Annotation (this differs from a Sequence Feature, which is called a Sequence Feature and may or may not have an Annotation Collection).
The trouble about this is we are not that sure what "interesting facts" someone might want to store: the possibility is endless.
Bioperls approach is that the "interesting facts" are represented by Bio::AnnotationI objects. The interface Bio::AnnotationI guarentees two methods
$obj->as_text(); # string formated to display to users
and
$obj->hash_tree(); # hash with defined rules for data-orientated discovery
The hash_tree method is designed to play well with XML output and other "nested-tag-of-data-values" think BoulderIO and/or Ace stuff. For more info read Bio::AnnotationI docs
Annotations are stored in AnnotationCollections, each Annotation under a different "tag". The tags allow simple discovery of the available annotations, and in some cases (like the tag "gene_name") indicate how to interpret the data underneath the tag. The tag is only one tag deep and each tag can have an array of values.
In addition, AnnotationCollectionIs are guarentee to maintain a consistent set object values under each tag - at least that each object complies to one interface. The "standard" AnnotationCollection insists the following rules are set up
Tag Object
--- ------
comment Bio::Annotation::Comment
dblink Bio::Annotation::DBLink
description Bio::Annotation::SimpleValue
gene_name Bio::Annotation::SimpleValue
ontology_term Bio::Annotation::OntologyTerm
reference Bio::Annotation::Reference
These tags are the implict tags that the SeqIO system needs to round-trip GenBank/EMBL/Swissprot.
However, you as a user and us collectively as a community can grow the "standard" tag mapping over time and specifically for a particular area.
Enhancements:
- Perl
<<less
Download (4.7MB)
Added: 2006-10-10 License: Perl Artistic License Price:
1109 downloads
comisat Games Collection 0.5.2

comisat Games Collection 0.5.2


comisat Games Collection is an all-in-one free collection of games written in gambas for unix-like system. more>>
comisat Games Collection is an all-in-one free collection of games written in gambas for unix-like system. They are available in italian and (not completely) in english.

comisat Games Collection is FREE SOFTWARE, released under the terms of the GNU General Public License Version 2 as published by Free Software Fundation. You can help the development of comisat Games Collection testing the software, mailing bugs, translating the project in different languages, correcting and improving the code.

<<less
Download (7.9MB)
Added: 2006-10-12 License: GPL (GNU General Public License) Price:
1110 downloads
The RA SPP Plugin collection 0.2.2

The RA SPP Plugin collection 0.2.2


The RA SPP Plugin collection package provides several plugins meant to be used with a qmail patched using qmail-spp. more>>
The RA SPP Plugin collection package provides several plugins meant to be used with a qmail patched using qmail-spp.
They cover diverse areas, and are meant to be written according to the following principles:
- Good performance
They are written whenever possible in C, and try to be short and direct.
- Good logging
They should inform the user of what they do. No email should ever be rejected without logging something. Also, all plugins logs include the PID of the qmail-smtpd process, so you can easily group all events of a connection.
- Security
Since writing in C exposes oneself to the dangers of memory corruption, I have tried to use, whenever it makes sense, the Better String Library, to avoid problems. While this makes the plugins larger, it also makes me feel more comfortable.
Also, for most plugins, it should be possible to run them as a very unprivileged user or in a chroot jail. This is not yet implemented, but it is worth thinking about.
Enhancements:
- Fixes a stupid bug in the ipthrottle plugin (it was sending a debug message to the client).
<<less
Download (0.073MB)
Added: 2006-05-12 License: GPL (GNU General Public License) Price:
1262 downloads
JavaDoc Taglets Collection 2.0.0

JavaDoc Taglets Collection 2.0.0


JavaDoc Taglets Collection is set of general purpose taglets for use with the JavaDoc tool. more>>
JavaDoc Taglets Collection is set of general purpose taglets for use with the JavaDoc tool. It provides a standard set of new tags, and allows you to create new ones by configuration or using simple Java interfaces. The project has been tested with J2SE 1.4 and 1.5 and JavaSE 1.6.
Enhancements:
- First public release of the Taglets Collection.
- Completed documentation for release 2.
- Added demos to userguide and distribution.
- Added to do list and known bugs information.
<<less
Download (6.4MB)
Added: 2007-05-11 License: BSD License Price:
898 downloads
MaCollec Collections Manager 0.1.2

MaCollec Collections Manager 0.1.2


MaCollec is a Web-based Collections Manager written in PHP/Javascript. more>>
MaCollec is a Web-based Collections Manager written in PHP/Javascript. MaCollec Collections Manager is based on the AJAX technology to produce a nice-looking and pleasant interface. It doesnt require a database.
Items informations (including covers pictures) are retrieved from online libraries.
MaCollec works correctly only with a modern browser (like Mozilla Firefox, Opera, ...) which supports all major Web standards currently in use, including CSS 2.1, HTML 4.01, ECMAScript, DOM 2 ...
Main features:
- Easy install
- No database
- Fetches items (Books, Films, Albums) informations from online libraries.
- Multi-users (each user has his own folder)
- 2 different views to display folders (list and icons)
- Unlimited number of folders/subfolders
- Allows items properties to be updated
- Allows saving additional properties: loaning (date, person), purchase (date, price), notes and rating
- Wikipedia links
<<less
Download (0.084MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1166 downloads
My cOLLection manager 0.6.0

My cOLLection manager 0.6.0


My cOLLection manager is a manager program for your collections. more>>
My cOLLection manager is a manager program for your collections. My cOLLection manager is a fast and easy to use frontend for gdbm with an ncurses interface.

The program was originally designed to organize a large music CD collection, but it is has no restrictions on the entry of any other large range of items. Its main goal is flexibillity.

<<less
Download (0.097MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
1165 downloads
Dispositionator 0.2

Dispositionator 0.2


Dispositionator is a Web application to make it easy to embed collections of papers and slides of talks into Web pages. more>>
Dispositionator is a Web application to make it easy to embed collections of papers and slides of talks into Web pages, using templates.
Talk material, related files, and information about events and associated topics are handled and can be sorted and filtered.
The data is kept in a simple XML file and thus no database is required.
Enhancements:
- With DispoDesktop, an SDL full-screen frontend can now be used in addition to the Web-based default frontend.
- Support for talk locations, filtering by speaker, and abstracts was introduced.
<<less
Download (0.45MB)
Added: 2006-01-16 License: Free To Use But Restricted Price:
1376 downloads
DarwinPorts 1.2

DarwinPorts 1.2


DarwinPorts makes the world of open source software available to your Mac. more>>
DarwinPorts makes the world of open source software available to your Mac. There are over 3000 software titles ("ports"), each one installable with a single command.
This is probably the biggest, most up to date open source software collection for Mac OS X. DarwinPorts works much like the ports collections of the major BSD operating systems.
Enhancements:
- The syntax of port(1) was enhanced.
- Space is now saved by compressing all man pages automatically.
- It is now possible to install multiple ports with one command.
- New meta-groups for executing commands on were implemented.
- launchd is now used on 10.4 (SystemStarter on 10.3).
- Help is now more easily available.
- Portfiles can now be edited directly via port(1).
- Disk images are available for 10.3 and 10.4.
<<less
Download (0.76MB)
Added: 2005-12-15 License: BSD License Price:
1409 downloads
digest 0.9

digest 0.9


digest provides a tool to generate HTML index pages and image previews. more>>
digest provides a tool to generate HTML index pages and image previews.

Digest generates HTML index pages and image previews for collections of images. It is fast and simple, and it creates HTML that is compact, quick-rendering, and does not rely on JavaScript or CSS.

<<less
Download (0.005MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
984 downloads
Web-Based Adult Content Server 0.7.0

Web-Based Adult Content Server 0.7.0


Web-Based Adult Content Server is a suite of programs which manage photo sets and video clips of an adult nature. more>>
Web-Based Adult Content Server is a suite of programs which manage photo sets and video clips of an adult nature.
It runs on a home Linux/Unix server and creates a personalized adult Web server in which to store, preuse, and catalogue a personal collection of adult material.
Web-Based Adult Content Server has many features, like model catalogs, attribute-based searching, randomized highlights, new addition lists, and a flexible bookmark mechanism.
Enhancements:
- This release has new features and many bugfixes.
- It includes a new Web-based Model Manager application, locations-based filtering (e.g. Bathroom), and a new connections infrastructure for galleries and ad-hoc collections.
<<less
Download (0.52MB)
Added: 2007-07-09 License: GPL (GNU General Public License) Price:
848 downloads
Media Exchange 001

Media Exchange 001


Media Exchange is an MP3 Jukebox appliance. more>>
Media Exchange is an MP3 Jukebox appliance. It allows you to:
- merge music collections
- Play music and control the player with a browser
- Organize your music
- Automatically tag music
- Remove double tracks automatically
- Download music directly from the artists
- Share music with your friends safely and easily
And Artists to:
- Distribute music to their fans directly
<<less
Download (258.9MB)
Added: 2007-03-13 License: GPL (GNU General Public License) Price:
960 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5