limited clothing store
Wholesale Clothing 1
We wholesale clothing and apparel, offering wholesale clothes, tops, and blouses that cater to junior fashions. We are wholesalers of junior apparel a... more>> <<less
Really Simple CalDAV Store 0.8.0
Really Simple CalDAV Store project is a server implementation of the CalDAV protocol for storing calendaring resources. more>>
An increasing number of calendar clients support the maintenance of shared remote calendars through CalDAV including Mozilla Calendar (Sunbird/Lightning), Evolution, Mulberry, and soon Apples iCal.
The Really Simple CalDAV Store supports basic delegation of read/write access among calendar users and multiple users or clients reading and writing the same calendar entries over time.
Enhancements:
- Lots of improvements were made to CalDAV specification compliance, especially around privacy of tasks and events.
- Two new translations of the administration interface were added (Polish and Hungarian).
- Support for authentication against an LDAP backend was added along with a number of performance, security, and bugfixes.
Class::DataStore 0.07
Class::DataStore is a Perl module for generic OO data storage/retrieval. more>>
SYNOPSIS
my %values = ( one => 1, two => 2 );
my $store = Class::DataStore->new( %values );
# using get/set methods
$store->set( three, 3 );
my $three = $store->get( three );
# using AUTOLOAD method
$store->four( 4 );
my $four = $store->four;
my @four = $store->four; # returns a list
my $exists = $store->exists( three ); # $exists = 1
my $data_hashref = $store->dump;
$store->clear;
Class::DataStore implements a simple storage system for object data. This data can be accessed via get/set methods and AUTOLOAD. AUTOLOAD calls are not added to the symbol table, so using get/set will be faster. Using AUTOLOAD also means that you will not be able to store data with a key that is already used by a instance method, such as "get" or "exists".
This module was written originally as part of a website framework that was used for the Democratic National Committee website in 2004. Some of the implementations here, such as get() optionally returning a list if called in array context, reflect the way this module was originally used for building web applications.
Class::DataStore is most useful when subclassed. To preserve the AUTOLOAD functionality, be sure to add the following when setting up the subclass:
use base Class::DataStore;
*AUTOLOAD = &Class::DataStore::AUTOLOAD;
This module is also a useful add-on for modules that need quick and simple data storage, e.g. to store configuration data:
$self->{_config} = Class::Datastore->new( $config_data );
sub config { return $_[0]->{_config}; }
my $server = $self->config->server;
my $sender = $self->config->get( sender );
Email::Store 0.24
Email::Store is a framework for database-backed email storage. more>>
SYNOPSIS
use Email::Store dbi:mysql:mailstore;
Email::Store->setup; # Do this once
Email::Store::Mail->store( $rfc822 );
Email::Store::Mail->retrieve( $msgid );
...
Email::Store is the ideal basis for any application which needs to deal with databases of email: archiving, searching, or even storing mail for implementing IMAP or POP3 servers.
Email::Store itself is a very lightweight framework, meaning it does not provide very much functionality itself; in effect, it is merely a Class::DBI interface to a database schema which is designed for storing email. Incidentally, if you dont know much about Class::DBI, youre going to need to in order to get much out of this.
Despite its minimalist nature, Email::Store is incredibly powerful. Its power comes from its extensibility, through plugin modules and hooks which allow you to add new database tables and concepts to the system, and so access the mail store from a "different direction". In a sense, Email::Store is a blank canvas, onto which you can pick and choose (or even write!) the plugins which you want for your application.
For instance, the core Email::Store::Entity plugin module addresses the idea of "people" in the email universe, allowing you to search for mails to or from particular people; (despite their changing names or email addresses) Email::Store::Thread interfaces Email::Store to Mail::Thread allowing you to navigate mails by their position in a mail thread; the planned non-core Email::Store::Plucene module plugs into the indexing process and stores information about emails in a Plucene search index for quick retrieval later, and so on.
Talend Open Studio 2.1.1 / 2.2.0M1
Talend project has the most open and powerful data management solutions available. more>>
Talends fundamental technology breaks with the markets leading proprietary solutions, associated with the open source model, significantly modifying the rules of the game in the data integration market.
As of today, the ETL market is no longer the exclusive domain of a limited group of proprietary software vendors, taking advantage of their market position to maintain the high price of licenses for products with limited functionality.
Whats New in 2.2.0M1 Development Release:
- AS400 connector, Oracle/MS SQL stored procedure support, MySQL/Oracle/Ingres SCD, infinite loop, file rows counter, file creation were added for Java generation.Flow data metering, file touching, recursivity in file listing were added in Perl generation. Performance were strongly improved for complex jobs in Perl generation.
Whats New in 2.1.1 Stable Release:
- The XML input wizard was fixed.
- Other minor bugs were fixed.
DB based NetFlow Collector 1.0
DB based NetFLow Collector aims to collect Cisco NetFlow data and store it to a database. more>>
DB based NetFlow Collector has a plugin interface, which makes it flexible for fitting in particular tasks.
Enhancements:
- First release. post your comments/bug reports.
Apache-Storage 1.00
Apache::Storage is Perl module containing simple functions to store and retrieve information from within the Apache process. more>>
Class::Std::Storable 0.0.1
Class::Std::Storable is a Perl module to support for creating serializable inside-out classes. more>>
SYNOPSIS
In general, use this class exactly as you would Class::Std.
package Ice::Cream;
use Class::Std::Storable;
{
my %name_of :ATTR( :get :set );
my %flavor_of :ATTR( :get :set );
}
package main;
my $object = Ice::Cream->new;
$object->set_name("Vanilla Bean");
$object->set_flavor("vanilla");
But now, you may also serialize the object with Storable.
use Storable;
my $serialized = Storable::freeze($object);
#store to a file, database, or wherever, and retrieve later.
my $clone = Storable::thaw($serialized);
Class::Std introduced the "inside-out" model for classes (perldoc Class::Std for details). Among its salient features is complete encapsulation; that is, an objects data may only be accessed via its methods, unlike the usual hashref model that permits direct access by any code whatsoever. However, the drawback of complete encapsulation is that normal mechanisms for serialization wont work, as they rely on direct access to an objects attributes.
This class provides the class-building functionality from Class::Std, and in addition provides an interface to allow Storable to freeze and thaw any declared attributes of this class and any superclasses that were built via Class::Std::Storable.
However, in order to let Storable save attributes and construct the object, it is necessary to expose the attributes of the class to the world. Thus, any code could use the same interface that Storable does to get a copy of object attributes and create new objects with arbitrary attributes without going through the constructor. While the interface CANT be used to replace the existing attributes of an object, it COULD be used to create an arbitrarily mutated clone of an object without going through its methods. Also, if attributes are themselves references, then the objects to which they refer can be obtained and modified.
As true encapsulation is one of the major features of Class::Std, this would be a good reason NOT to use this class. But this sacrifice is required to provide serialization. You must choose which is more important for your purposes, serialization or complete encapsulation. Consider also that while bypassing the class methods is possible to a limited degree with Class::Std::Storable, doing so is much more complicated than just using the methods, so use of this class still discourages casual violations of encapsulation.
Mandriva Linux Limited Edition 2005
Mandriva Linux (formerly Mandrake Linux) is the operating system of choice for users keen on all things advanced more>>
Mandriva LinuxTM , formerly known as Mandrakelinux, is a friendly Linux Operating System which specializes in ease-of-use for both servers and the home/office. It is freely available in many languages throughout the world. Mandriva Linux is the operating system of choice for users keen on all things advanced. Limited Edition 2005 is no exception; it includes all the things youve come to expect from Mandriva Linux.
Limited Edition 2005 is the only Linux system so far to include such a broad range of up-to-date leading-edge software, as well as seamlessly running 32-bit applications on 64-bit platforms. Linux power users will welcome the advanced web experience, enhanced hardware compatibility and expanded development options brought by Limited Edition 2005, along with significant performance gains.
The latest versions of key Linux applications:
- Linux kernel 2.6.11.6
- KDE 3.3.2 (with some backports from version 3.4, including Kpdf)
- GNOME 2.8.3
- Firefox 1.0.2
- GCC 3.4.3
- The GIMP 2.2
- cdrecord 2.01.01a21 (with DVD+R dual-layer support)
- OpenOffice.org 1.1.4
- MySQL 4.1.11
Email::Store::DBI 0.254
Email::Store::DBI is a Perl module for database backend to Email::Store. more>>
SYNOPSIS
use Email::Store dbi:...;
This class is a subclass of Class::DBI and contains means for Email::Store-based programs to register what DSN they wish to use. It also provides for building database tables from schemas embedded in the DATA section of plug-in modules, using Class::DBI::DATA::Schema.
"Email::Store" is the ideal basis for any application which needs to deal with databases of email: archiving, searching, or even storing mail for implementing IMAP or POP3 servers.
"Email::Store" itself is a very lightweight framework, meaning it does not provide very much functionality itself; in effect, it is merely a Class::DBI interface to a database schema which is designed for storing email. Incidentally, if you dont know much about "Class::DBI", youre going to need to in order to get much out of this.
Despite its minimalist nature, "Email::Store" is incredibly powerful. Its power comes from its extensibility, through plugin modules and hooks which allow you to add new database tables and concepts to the system, and so access the mail store from a "different direction". In a sense, "Email::Store" is a blank canvas, onto which you can pick and choose (or even write!) the plugins which you want for your application.
For instance, the core "Email::Store::Entity" plugin module addresses the idea of "people" in the email universe, allowing you to search for mails to or from particular people; (despite their changing names or email addresses) "Email::Store::Thread" interfaces "Email::Store" to "Mail::Thread" allowing you to navigate mails by their position in a mail thread; the planned non-core "Email::Store::Plucene" module plugs into the indexing process and stores information about emails in a Plucene search index for quick retrieval later, and so on.
CGI::Application::Plugin::Authentication::Store 0.11
CGI::Application::Plugin::Authentication::Store is a base module for building storage classes. more>>
SYNOPSIS
package CGI::Application::Plugin::Authentication::Store::MyStore;
use base qw(CGI::Application::Plugin::Authentication::Store);
sub fetch {
my $self = shift;
my @params = @_;
...
}
sub save {
my $self = shift;
my %params = @_;
...
}
sub delete {
my $self = shift;
my @params = @_;
...
}
This module is a base class for all storage classes for the CGI::Application::Plugin::Authentication plugin. Each storage class is required to provide three methods that fetch, save and delete data from the store. The information that is saved will be text based, so there is no need to flatten any of the data that is to be stored.
Mp3dings 1.0 / 2.0 Beta 1
Mp3dings is a small, powerful and easy-to-use program allowing you to change the names and edit the meta-information of mp3s. more>>
Main features:
- transfer information from filenames to ID3 tags and vice versa
- consistently name and/or tag your mp3 files
- reorganize the directory structure of your mp3 collection
Programs with similar scope usually lack the ability to process a large number of ID3 tags at the same time. Mp3dings is written in Java and can thus be used on every platform for which there is a Java Runtime Environment.
ID3 is a standard to store meta-information (author, title etc.) inside an audio file. An ID3v1 tag takes up a fixed number of bytes at the end of the file. This makes ID3v1 easy to implement but also severely limits the kind and amount of data such a tag can contain.
ID3v2 tags on the other hand can be arbitrarily large and can be used to store just about any kind of data. Naturally, this makes it quite hard to implement routines that read and write these tags. Mp3dings fully supports ID3v1 tags and a core set of ID3v2 frames (which will be extended gradually).
Mandriva Linux 10.2 Limited Edition 2005
Mandriva Linux is the operating system of choice for users keen on all things advanced. more>>
Linux power users will welcome the advanced Web experience, enhanced hardware compatibility and expanded development options brought by Limited Edition 2005, along with significant performance gains. Firefox 1.0.2 offers the most advanced Web browsing experience, with multi-tabbed navigation, pop-up blocking, increased speed, and unmatched security.
Limited Edition also offers the RSS reader Akregator. RSS is a format used to simplify the aggregation and syndication of Web content. RSS feeds contain news and updates from websites and blogs, providing personalized access to information.
Limited Edition 2005 is built to optimize and increase performance. It has been developed with x86-64 technology in mind, which allows for the use of more powerful applications. Support for dual-core technology adds to potential performance, allowing the use of advanced new processors.
Developers and power users running demanding multimedia configurations will appreciate the additional power those features provide. Some special optimizations enhance the overall speed delivered by the system. For instance, KDE 3.3 is 10% faster, thanks to special tuning by Mandriva.
Addressing both the x86 and x86-64 architectures, Limited Edition 2005 is the only Linux system to allow the seamless installation and running of 32-bit applications on 64-bit platforms. This will allow users to benefit from all the power and performance of 64-bit technology while continuing to use vital 32-bit applications.
Developers will welcome the ability to develop 32-bit and 64-bit versions of the same application on the same machine, without the need to use chroot. Finally, Limited Edition allows you to copy the contents of the DVD to the hard disk during installation, removing the need to use the DVD for subsequent software installation, and so saving even more time.
Limited Edition 2005 provides better support for removable devices such as digital cameras, CD-ROM drives and USB keys through immediate detection of devices as they are plugged in, and by allowing you to boot the installation from a USB key.
Also available is DKMS which allows kernel modules to be dynamically built for each kernel on your system in a simplified and organized fashion.
A special feature that will certainly appeal to gamers and enthusiasts is that the new release from Mandriva has support for the Xbox console, empowering users to bridge the divide between gaming and other computer activities.
Additional hardware enhancements include full support for Adaptec Host RAID controllers (RAID, SCSI, SATA) and extended recognition for the most recent flat screen monitors, including widescreen resolutions.
Main features:
The latest versions of key Linux applications
- Linux kernel 2.6.11.6
- KDE 3.3.2 (with some backports from version 3.4, including Kpdf)
- GNOME 2.8.3
- Firefox 1.0.2
- GCC 3.4.3
- The GIMP 2.2
- cdrecord 2.01.01a21 (with DVD+R dual-layer support)
- OpenOffice.org 1.1.4
- MySQL 4.1.11
Enhanced Hardware support
- Unequalled x86-64 support, including seamless installation of a 32-bit environment on the 64-bit platform, allowing developers to build 32-bit and 64-bit applications on the same system
- Full support for Adaptec Host RAID controllers (RAID, SCSI, SATA)
- Improved recognition of removable devices, such as digital cameras, CD-ROM drives and USB keys
- Improved support for the most recent flat screen monitors, including widescreen resolutions
- Simplified handling of drivers thanks to the integration of Dynamic Kernel Module Support (DKMS), enabling the changing of drivers without the need to reinstall the Kernel, and the ability to use the same driver on multiple different kernel revisions
- Support for multimedia keyboards
Faster
- Up to 10% greater KDE performance thanks to compilation with the fvisibility option
- The option to copy all software packages onto the hard disk during the installation, making it unnecessary to use the DVD for subsequent software installation
Advanced Web experience
- Firefox 1.0.2 offers the most advanced Web browsing experience, with multi-tabbed navigation, pop-up blocking, increased speed, and unmatched security.
- RSS reader Akregator to get personalized access to the content of websites from all around the globe.
Enhanced mutimedia capabilities
- ndiswrapper allows for easier wireless networking configuration, thanks to the utilization of installed Windows drivers
- Mandrivas new ALSA (Advanced Linux Sound Architecture) version includes multiplexing, allowing you to listen to sound from several applications at once, even if your sound card does not perform multiplexing in hardware.
Monodiary 0.1
Monodiary project is a simple an effective way to work with an user diary. more>>
Monodiary use xml to store the information, organized by dates, In the future,
implementing the NoteManagers interface methods, the information can be stored over other format or database, like mysql, postgresql, sqlite, ...
The apps configuration is stored using gconf.
Free Coogee (Java) for Motorola A1200 1.1
Free unlimited cellphone storage,Build-in MSN to exchange mobile stuff.Free use. more>> Description:
1.Free use. Downloading & Using Coogee is absolutely free. The related mobile data traffic is charged by your local mobile carriers
2.Free sign-up. Free register Coogee space allows you to store cell phone contents without limit.
3.Free downloads. There are tons of cell phone stuff shared by Coogee members that wait for you to explore and enjoy, such as photos, audios, videos, applications, articles, etc.
4.Access on the go Access your cell phone contents on the go.
5.Store & Display. Upload & store to your Coogee cell phone space, and display instantly to Coogee community.
6.Share instantly with your friends through Instant Messages (i.e. MSN messenger), email (i.e. Hotmail), and short messages (i.e. phone books)
7.Subscribe to Coogee spaces A RSS feed is automatically assigned to each Coogee space, which can be subscribed by any Coogee members. Any updates will be notified to its subscribers.
8.Connect to popular instant messages (Coogee HIER) such as MSN that allows the most convenient way for free chat and sharing directly from your cell phones.
For more compatible devices, please go to http://www.mycoogee.com or http://wap.mycoogee.com from mobile browser.<<less