data organizer
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4913
DOG Data Organizer 0.4.2
DOG Data Organizer provides a bookmark organizer for various bookmark types. more>>
DOG Data Organizer provides a bookmark organizer for various bookmark types.
DOG is a personal knowledge manager based on topic maps. It currently specializes in managing bookmarks.
It imports and exports Netscape, Mozilla, and KDE2 (XBEL) bookmark files, and it imports KDE1 bookmarks and Windows IE Favorites.
<<lessDOG is a personal knowledge manager based on topic maps. It currently specializes in managing bookmarks.
It imports and exports Netscape, Mozilla, and KDE2 (XBEL) bookmark files, and it imports KDE1 bookmarks and Windows IE Favorites.
Download (0.42MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
960 downloads
Isaac Newton Organizer 0.2
Isaac Newton Organizer is a Time/Task Management software. more>>
Isaac Newton Organizer is a software that helps you organise your plans and work, and keep track of your progress. Isaac Newton Organizer allows you to add tasks for any date in a visually appealing interface, and helps you mark these tasks according to their status.
It also allows you to add "recurrent tasks" which are tasks that have a frequency associated with them. For example, you could add tasks representing your loved ones birthday, and make it recurrent for every year, so that you never forget the birthday any longer!
There are hosts of other features in Isaac Newton Organizer, so please look at the Features section to find out more.
<<lessIt also allows you to add "recurrent tasks" which are tasks that have a frequency associated with them. For example, you could add tasks representing your loved ones birthday, and make it recurrent for every year, so that you never forget the birthday any longer!
There are hosts of other features in Isaac Newton Organizer, so please look at the Features section to find out more.
Download (0.035MB)
Added: 2006-04-14 License: Freeware Price:
1290 downloads
KOrganizer 3.4.2
KOrganizer is the KDE PIM/Calendar/Scheduling tool. more>>
Organizer is the calendar and scheduling application of the popular K Desktop Environment. KDE is a powerful Open Source graphical desktop environment for Unix workstations.
It combines ease of use, contemporary functionality, and outstanding graphical design with the technological superiority of the Unix operating system.
KOrganizer provides management of events and tasks, alarm notification, web export, network transparent handling of data, group scheduling, import and export of calendar files and more.
KOrganizer is fully customizable to your needs and is an integral part of the KDE PIM suite, which aims to be a complete solution for organizing your personal data.
KOrganizer supports the two dominant standards for storing and exchanging calendar data, vCalendar and iCalendar. ftp://ftp.kde.org/pub/kde/stable/3.4.2/src/kdepim-3.4.2.tar.bz2
<<lessIt combines ease of use, contemporary functionality, and outstanding graphical design with the technological superiority of the Unix operating system.
KOrganizer provides management of events and tasks, alarm notification, web export, network transparent handling of data, group scheduling, import and export of calendar files and more.
KOrganizer is fully customizable to your needs and is an integral part of the KDE PIM suite, which aims to be a complete solution for organizing your personal data.
KOrganizer supports the two dominant standards for storing and exchanging calendar data, vCalendar and iCalendar. ftp://ftp.kde.org/pub/kde/stable/3.4.2/src/kdepim-3.4.2.tar.bz2
Download (11MB)
Added: 2005-09-13 License: GPL (GNU General Public License) Price:
900 downloads
Data::Serializer 0.41
Data::Serializer package contains modules that serialize data structures. more>>
Data::Serializer package contains modules that serialize data structures.
SYNOPSIS
use Data::Serializer;
$obj = Data::Serializer->new();
$obj = Data::Serializer->new(
serializer => Storable,
digester => MD5,
cipher => DES,
secret => my secret,
compress => 1,
);
$serialized = $obj->serialize({a => [1,2,3],b => 5});
$deserialized = $obj->deserialize($serialized);
print "$deserialized->{b}n";
Provides a unified interface to the various serializing modules currently available. Adds the functionality of both compression and encryption.
EXAMPLES
Please see Data::Serializer::Cookbook(3)
METHODS
new - constructor
$obj = Data::Serializer->new();
$obj = Data::Serializer->new(
serializer => Data::Dumper,
digester => SHA-256,
cipher => Blowfish,
secret => undef,
portable => 1,
compress => 0,
serializer_token => 1,
options => {},
);
new is the constructor object for Data::Serializer objects.
The default serializer is Data::Dumper
The default digester is SHA-256
The default cipher is Blowfish
The default secret is undef
The default portable is 1
The default encoding is hex
The default compress is 0
The default compressor is Compress::Zlib
The default serializer_token is 1
The default options is {} (pass nothing on to serializer)
serialize - serialize reference
$serialized = $obj->serialize({a => [1,2,3],b => 5});
Serializes the reference specified.
Will compress if compress is a true value.
Will encrypt if secret is defined.
deserialize - deserialize reference
$deserialized = $obj->deserialize($serialized);
Reverses the process of serialization and returns a copy of the original serialized reference.
freeze - synonym for serialize
$serialized = $obj->freeze({a => [1,2,3],b => 5});
thaw - synonym for deserialize
$deserialized = $obj->thaw($serialized);
raw_serialize - serialize reference in raw form
$serialized = $obj->raw_serialize({a => [1,2,3],b => 5});
This is a straight pass through to the underlying serializer, nothing else is done. (no encoding, encryption, compression, etc)
raw_deserialize - deserialize reference in raw form
$deserialized = $obj->raw_deserialize($serialized);
This is a straight pass through to the underlying serializer, nothing else is done. (no encoding, encryption, compression, etc)
secret - specify secret for use with encryption
$obj->secret(mysecret);
Changes setting of secret for the Data::Serializer object. Can also be set in the constructor. If specified than the object will utilize encryption.
portable - encodes/decodes serialized data
Uses encoding method to ascii armor serialized data
Aids in the portability of serialized data.
compress - compression of data
Compresses serialized data. Default is not to use it. Will compress if set to a true value $obj->compress(1);
serializer - change the serializer
Currently have 8 supported serializers: Storable, FreezeThaw, Data::Denter, Config::General, YAML, PHP::Serialization, XML::Dumper, and Data::Dumper.
Default is to use Data::Dumper.
Each serializer has its own caveats about usage especially when dealing with cyclical data structures or CODE references. Please see the appropriate documentation in those modules for further information.
cipher - change the cipher method
Utilizes Crypt::CBC and can support any cipher method that it supports.
digester - change digesting method
Uses Digest so can support any digesting method that it supports. Digesting function is used internally by the encryption routine as part of data verification.
compressor - changes compresing module
This method is included for possible future inclusion of alternate compression method Currently Compress::Zlib is the only supported compressor.
encoding - change encoding method
Encodes data structure in ascii friendly manner. Currently the only valid options are hex, or b64.
The b64 option uses Base64 encoding provided by MIME::Base64, but strips out newlines.
serializer_token - add usage hint to data
Data::Serializer prepends a token that identifies what was used to process its data. This is used internally to allow runtime determination of how to extract Serialized data. Disabling this feature is not recommended.
options - pass options through to underlying serializer
Currently is only supported by Config::General, and XML::Dumper.
my $obj = Data::Serializer->new(serializer => Config::General,
options => {
-LowerCaseNames => 1,
-UseApacheInclude => 1,
-MergeDuplicateBlocks => 1,
-AutoTrue => 1,
-InterPolateVars => 1
},
) or die "$!n";
or
my $obj = Data::Serializer->new(serializer => XML::Dumper,
options => { dtd => 1, }
) or die "$!n";
store - serialize data and write it to a file (or file handle)
$obj->store({a => [1,2,3],b => 5},$file, [$mode, $perm]);
or
$obj->store({a => [1,2,3],b => 5},$fh);
Serializes the reference specified using the serialize method and writes it out to the specified file or filehandle.
If a file path is specified you may specify an optional mode and permission as the next two arguments. See IO::File for examples.
Trips an exception if it is unable to write to the specified file.
retrieve - read data from file (or file handle) and return it after deserialization
my $ref = $obj->retrieve($file);
or
my $ref = $obj->retrieve($fh);
Reads first line of supplied file or filehandle and returns it deserialized.
<<lessSYNOPSIS
use Data::Serializer;
$obj = Data::Serializer->new();
$obj = Data::Serializer->new(
serializer => Storable,
digester => MD5,
cipher => DES,
secret => my secret,
compress => 1,
);
$serialized = $obj->serialize({a => [1,2,3],b => 5});
$deserialized = $obj->deserialize($serialized);
print "$deserialized->{b}n";
Provides a unified interface to the various serializing modules currently available. Adds the functionality of both compression and encryption.
EXAMPLES
Please see Data::Serializer::Cookbook(3)
METHODS
new - constructor
$obj = Data::Serializer->new();
$obj = Data::Serializer->new(
serializer => Data::Dumper,
digester => SHA-256,
cipher => Blowfish,
secret => undef,
portable => 1,
compress => 0,
serializer_token => 1,
options => {},
);
new is the constructor object for Data::Serializer objects.
The default serializer is Data::Dumper
The default digester is SHA-256
The default cipher is Blowfish
The default secret is undef
The default portable is 1
The default encoding is hex
The default compress is 0
The default compressor is Compress::Zlib
The default serializer_token is 1
The default options is {} (pass nothing on to serializer)
serialize - serialize reference
$serialized = $obj->serialize({a => [1,2,3],b => 5});
Serializes the reference specified.
Will compress if compress is a true value.
Will encrypt if secret is defined.
deserialize - deserialize reference
$deserialized = $obj->deserialize($serialized);
Reverses the process of serialization and returns a copy of the original serialized reference.
freeze - synonym for serialize
$serialized = $obj->freeze({a => [1,2,3],b => 5});
thaw - synonym for deserialize
$deserialized = $obj->thaw($serialized);
raw_serialize - serialize reference in raw form
$serialized = $obj->raw_serialize({a => [1,2,3],b => 5});
This is a straight pass through to the underlying serializer, nothing else is done. (no encoding, encryption, compression, etc)
raw_deserialize - deserialize reference in raw form
$deserialized = $obj->raw_deserialize($serialized);
This is a straight pass through to the underlying serializer, nothing else is done. (no encoding, encryption, compression, etc)
secret - specify secret for use with encryption
$obj->secret(mysecret);
Changes setting of secret for the Data::Serializer object. Can also be set in the constructor. If specified than the object will utilize encryption.
portable - encodes/decodes serialized data
Uses encoding method to ascii armor serialized data
Aids in the portability of serialized data.
compress - compression of data
Compresses serialized data. Default is not to use it. Will compress if set to a true value $obj->compress(1);
serializer - change the serializer
Currently have 8 supported serializers: Storable, FreezeThaw, Data::Denter, Config::General, YAML, PHP::Serialization, XML::Dumper, and Data::Dumper.
Default is to use Data::Dumper.
Each serializer has its own caveats about usage especially when dealing with cyclical data structures or CODE references. Please see the appropriate documentation in those modules for further information.
cipher - change the cipher method
Utilizes Crypt::CBC and can support any cipher method that it supports.
digester - change digesting method
Uses Digest so can support any digesting method that it supports. Digesting function is used internally by the encryption routine as part of data verification.
compressor - changes compresing module
This method is included for possible future inclusion of alternate compression method Currently Compress::Zlib is the only supported compressor.
encoding - change encoding method
Encodes data structure in ascii friendly manner. Currently the only valid options are hex, or b64.
The b64 option uses Base64 encoding provided by MIME::Base64, but strips out newlines.
serializer_token - add usage hint to data
Data::Serializer prepends a token that identifies what was used to process its data. This is used internally to allow runtime determination of how to extract Serialized data. Disabling this feature is not recommended.
options - pass options through to underlying serializer
Currently is only supported by Config::General, and XML::Dumper.
my $obj = Data::Serializer->new(serializer => Config::General,
options => {
-LowerCaseNames => 1,
-UseApacheInclude => 1,
-MergeDuplicateBlocks => 1,
-AutoTrue => 1,
-InterPolateVars => 1
},
) or die "$!n";
or
my $obj = Data::Serializer->new(serializer => XML::Dumper,
options => { dtd => 1, }
) or die "$!n";
store - serialize data and write it to a file (or file handle)
$obj->store({a => [1,2,3],b => 5},$file, [$mode, $perm]);
or
$obj->store({a => [1,2,3],b => 5},$fh);
Serializes the reference specified using the serialize method and writes it out to the specified file or filehandle.
If a file path is specified you may specify an optional mode and permission as the next two arguments. See IO::File for examples.
Trips an exception if it is unable to write to the specified file.
retrieve - read data from file (or file handle) and return it after deserialization
my $ref = $obj->retrieve($file);
or
my $ref = $obj->retrieve($fh);
Reads first line of supplied file or filehandle and returns it deserialized.
Download (0.025MB)
Added: 2007-07-12 License: Perl Artistic License Price:
834 downloads
Fast Data Transfer 0.8.0
Fast Data Transfer is an application for efficient data transfers that is capable of reading and writing at disk speed. more>>
Fast Data Transfer is an application for efficient data transfers that is capable of reading and writing at disk speed over wide area networks (with standard TCP).
It can be used to stream a large set of files across the network, so a large dataset composed of thousands of files can be sent or received at full speed, without the network transfer restarting between files.
The project is written in Java, runs an all major platforms, and is easy to use.
Main features:
- Streams a dataset (list of files) continuously, using a managed pool of buffers through one or more TCP sockets.
- Uses independent threads to read and write on each physical device
- Transfers data in parallel on multiple TCP streams, when necessary
- Uses appropriate-sized buffers for disk I/O and for the network
- Restores the files from buffers asynchronously
- Resumes a file transfer session without loss, when needed
<<lessIt can be used to stream a large set of files across the network, so a large dataset composed of thousands of files can be sent or received at full speed, without the network transfer restarting between files.
The project is written in Java, runs an all major platforms, and is easy to use.
Main features:
- Streams a dataset (list of files) continuously, using a managed pool of buffers through one or more TCP sockets.
- Uses independent threads to read and write on each physical device
- Transfers data in parallel on multiple TCP streams, when necessary
- Uses appropriate-sized buffers for disk I/O and for the network
- Restores the files from buffers asynchronously
- Resumes a file transfer session without loss, when needed
Download (0.35MB)
Added: 2007-08-21 License: Other/Proprietary License Price:
797 downloads
Blue Smiley Organizer 5.24
Blue Smiley Organizer is Web-based script to manage your bookmarks, diary, reminders, to-do lists, contacts, knowledge. more>>
Blue Smiley Organizer is Web-based script to manage your bookmarks, diary, reminders, to-do lists, contacts, knowledge, and images in a multi-user environment.
Blue Smiley Organizer also includes its own live support help system, blogs, themes, and a discussion forum.
Main features:
- Prioritize your bookmarks: Tell BlueSmiley how important a website is to you and how often you want to visit the link (e.g. once a month) and a list of bookmarks will be generated with the most urgent bookmarks at the top of the list.
- You can also keep a diary, manage your To-Do List and save email addresses and telephone numbers with the Contact Management. Add important vocabulary, snippets of code, etc to the categorized knowledge list.
- BlueSmiley reminds you of birthdays, TV shows, appointments, etc.
- Want to offer Live Support for your website without forking out money every month? BlueSmiley offers it for free.
- Social Bookmarking: Share your bookmarks on your personal webpage.
- You can also show RSS Feeds within this Online Organize
<<lessBlue Smiley Organizer also includes its own live support help system, blogs, themes, and a discussion forum.
Main features:
- Prioritize your bookmarks: Tell BlueSmiley how important a website is to you and how often you want to visit the link (e.g. once a month) and a list of bookmarks will be generated with the most urgent bookmarks at the top of the list.
- You can also keep a diary, manage your To-Do List and save email addresses and telephone numbers with the Contact Management. Add important vocabulary, snippets of code, etc to the categorized knowledge list.
- BlueSmiley reminds you of birthdays, TV shows, appointments, etc.
- Want to offer Live Support for your website without forking out money every month? BlueSmiley offers it for free.
- Social Bookmarking: Share your bookmarks on your personal webpage.
- You can also show RSS Feeds within this Online Organize
Download (0.51MB)
Added: 2007-08-09 License: Free To Use But Restricted Price:
818 downloads
Data.FormValidator 0.04
Data.FormValidators aim is to bring all the benefits of the perl module Data::FormValidator over to javascript. more>>
Data.FormValidators aim is to bring all the benefits of the perl module Data::FormValidator over to javascript, using the same input profiles (they can be dumped into javascript objects using the perl module Data::JavaScript.
Data.FormValidator library lets you define profiles which declare the required and optional fields and any constraints they might have.
The results are provided as an object which makes it easy to handle missing and invalid results, return error messages about which constraints failed, or process the resulting valid data.
IMPORTANT NOTE: JavaScript form validation is NOT a replacement for data validation in your backend scripts. This is the primary reason this module was written... so that it would be easy to share the same validation profile for both the frontend (via Data.FormValidator.js) and backend (via Data::FormValidator.pm).
Enhancements:
- A problem where some functions were not terminated by a semi-colon, so JavaScript compactors would end up creating broken code was fixed.
<<lessData.FormValidator library lets you define profiles which declare the required and optional fields and any constraints they might have.
The results are provided as an object which makes it easy to handle missing and invalid results, return error messages about which constraints failed, or process the resulting valid data.
IMPORTANT NOTE: JavaScript form validation is NOT a replacement for data validation in your backend scripts. This is the primary reason this module was written... so that it would be easy to share the same validation profile for both the frontend (via Data.FormValidator.js) and backend (via Data::FormValidator.pm).
Enhancements:
- A problem where some functions were not terminated by a semi-colon, so JavaScript compactors would end up creating broken code was fixed.
Download (0.047MB)
Added: 2006-01-20 License: GPL (GNU General Public License) Price:
1372 downloads
Data::Generate 0.01
Data::Generate allows you to create various types of synthetic data by parsing regex-like data creation rules. more>>
Data::Generate allows you to create various types of synthetic data by parsing "regex-like" data creation rules.
This module generates data by parsing given text statements (data creation rules). These statements are flexible and powerful regex-like way to control the production of synthetic data. Think about a program that instead of selecting data which matches a regex filter expression, produces it. For example, from the rule [a-c], the generator would produce the array a,b,c. The module works as following:
Specify data creation rules.
my $generator= Data::Generate::parse(VC(24) [0-9][2-3]);
At this step first you define one kind of output datatype (for ex. VC(24)= "output is a string with max length 24") and then with the rest of the expression define what it should look like. If parsing is successful a Data Generator object is instantiated.
Get data
my $Data= $generator->get_unique_data(10);
To really get the data, users must call the get_unique_data method by indicating the desired number of output values. The generator returns the values contained in an array reference. Please remark that output format is fixed according to the data type.
<<lessThis module generates data by parsing given text statements (data creation rules). These statements are flexible and powerful regex-like way to control the production of synthetic data. Think about a program that instead of selecting data which matches a regex filter expression, produces it. For example, from the rule [a-c], the generator would produce the array a,b,c. The module works as following:
Specify data creation rules.
my $generator= Data::Generate::parse(VC(24) [0-9][2-3]);
At this step first you define one kind of output datatype (for ex. VC(24)= "output is a string with max length 24") and then with the rest of the expression define what it should look like. If parsing is successful a Data Generator object is instantiated.
Get data
my $Data= $generator->get_unique_data(10);
To really get the data, users must call the get_unique_data method by indicating the desired number of output values. The generator returns the values contained in an array reference. Please remark that output format is fixed according to the data type.
Download (0.025MB)
Added: 2007-03-31 License: Perl Artistic License Price:
937 downloads
Photo Organizer 2.33e / 2.34 RC4
Photo Organizer is a PostgreSQL Backed Web Based Photo Manager. more>>
Photo Organizer is multi-user photo management tool that was designed for professional photographers.
It offers a searchable photo database that supports photo version control, client management, photo submission history, EXIF, IPTC, XML, and XMP, user quotas, a datebook, and printing labels and color brochures in PDF and PS formats.
Photo Organizer project uses PostgreSQL, features a Web interface, and uses DCRAW and ImageMagick to handle over a hundred image formats including several RAW formats.
Main features:
- Photo management: Naturally the main feature of the software is photo management. The system will allow you to store and retrieve photos in three sizes (original, midsize and thumbnail) For each photo detailed information is stored such as: Title, Caption, Keywords, Shooting location, Exposure Date, Equipment used, Equipment settings, Storage location and more. The system supports, photo version control, duplicates, and submission history, so tracking where the photo was submitted has been never easier. Photos can be ranked so that they can be displayed in the order of their relevance. Photos can be organized into folders and albums - kind of virtual folders.
Image files are stored in an image repository with automatic volume manager which makes Photo Organizer more secure (as access to the image files is permitted only via PO) and to ease the upload porcedure, a bulk upload mechanism was added with XML, XMP, IPTC and EXIF metadata import. Shooting data converters from NKN, TXT and SDF into XML provides compatibility with your exisiting database.
Thanks to Dave Coffins RAW image decoder Photo Organizer supports most RAW digital camera formats, enabling users to store original RAW files in the systems database.
- Client Management, Shop Module and Date book: The system has Client Management interface with onlineclient registration. Photos can be shared with Clients and non registered visitors. Access rights on Folder, Album or Photo level provides control over the visibility of each photo. Clients will be able to access protected photos, not visible for non registered visitors.
- Printing: Printing is one of the key features of Photo Organizer. You can create color brochures, including your photos in PDF and PS formats. Additionally you can print labelscontaining the shooting data and the bar coded photo identifier, which enables mass processing, easy data input and quick search of your photos. All this online from your browser.
- Search: A simple but powerful search engine is built into Photo Organizer. Supports basic logic operators (AND, OR and NOT) and allows the query of photos, folders & albums or users. It also implements stemming, to include related variations of your keywords.
Whats New in 2.34 RC4 Development Release:
- This release adds many minor bugfixes since -rc3, mostly relating to the localization framework and non-core features.
- This will hopefully be the final release candidate.
Whats New in 2.33e Stable Release:
- This bugfix release will be the final release of the old stable branch.
- Several import-related bugs have been fixed, and a problem deleting users via the admin interface has also been resolved.
<<lessIt offers a searchable photo database that supports photo version control, client management, photo submission history, EXIF, IPTC, XML, and XMP, user quotas, a datebook, and printing labels and color brochures in PDF and PS formats.
Photo Organizer project uses PostgreSQL, features a Web interface, and uses DCRAW and ImageMagick to handle over a hundred image formats including several RAW formats.
Main features:
- Photo management: Naturally the main feature of the software is photo management. The system will allow you to store and retrieve photos in three sizes (original, midsize and thumbnail) For each photo detailed information is stored such as: Title, Caption, Keywords, Shooting location, Exposure Date, Equipment used, Equipment settings, Storage location and more. The system supports, photo version control, duplicates, and submission history, so tracking where the photo was submitted has been never easier. Photos can be ranked so that they can be displayed in the order of their relevance. Photos can be organized into folders and albums - kind of virtual folders.
Image files are stored in an image repository with automatic volume manager which makes Photo Organizer more secure (as access to the image files is permitted only via PO) and to ease the upload porcedure, a bulk upload mechanism was added with XML, XMP, IPTC and EXIF metadata import. Shooting data converters from NKN, TXT and SDF into XML provides compatibility with your exisiting database.
Thanks to Dave Coffins RAW image decoder Photo Organizer supports most RAW digital camera formats, enabling users to store original RAW files in the systems database.
- Client Management, Shop Module and Date book: The system has Client Management interface with onlineclient registration. Photos can be shared with Clients and non registered visitors. Access rights on Folder, Album or Photo level provides control over the visibility of each photo. Clients will be able to access protected photos, not visible for non registered visitors.
- Printing: Printing is one of the key features of Photo Organizer. You can create color brochures, including your photos in PDF and PS formats. Additionally you can print labelscontaining the shooting data and the bar coded photo identifier, which enables mass processing, easy data input and quick search of your photos. All this online from your browser.
- Search: A simple but powerful search engine is built into Photo Organizer. Supports basic logic operators (AND, OR and NOT) and allows the query of photos, folders & albums or users. It also implements stemming, to include related variations of your keywords.
Whats New in 2.34 RC4 Development Release:
- This release adds many minor bugfixes since -rc3, mostly relating to the localization framework and non-core features.
- This will hopefully be the final release candidate.
Whats New in 2.33e Stable Release:
- This bugfix release will be the final release of the old stable branch.
- Several import-related bugs have been fixed, and a problem deleting users via the admin interface has also been resolved.
Download (0.82MB)
Added: 2007-08-22 License: GPL (GNU General Public License) Price:
804 downloads
Gnome Comics Organizer 0.5.1
Gnome Comics Organizer is a program to help keep track of your comic book collection. more>>
GNOME Comics Organizer (GCO for short) is a program to help keep track of your comic book collection.
The project has been written in Python using GTK+ and GNOME.
Requires python 2.3.x, gnome-python2 2.0.x, pygtk2 2.3.96 (or greater), libxml2-python 2.6.x.
Versions older than 0.5.0 use GNOME 1.4.x and was written in C. Not all features of the old C version of GNOME Comics Organizer are implemented, but the most important ones are.
<<lessThe project has been written in Python using GTK+ and GNOME.
Requires python 2.3.x, gnome-python2 2.0.x, pygtk2 2.3.96 (or greater), libxml2-python 2.6.x.
Versions older than 0.5.0 use GNOME 1.4.x and was written in C. Not all features of the old C version of GNOME Comics Organizer are implemented, but the most important ones are.
Download (0.088MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
924 downloads
Data::Password::Manager 0.02
Data::Password::Manager is a Perl module to generate, check, manage crypt - des passwords. more>>
Data::Password::Manager is a Perl module to generate, check, manage crypt - des passwords.
SYNOPSIS
use Data::Password::Manager qw(
pw_gen
pw_valid
pw_obscure
pw_clean
pw_get
);
$password = pw_gen($cleartext);
$ok = pw_valid($cleartxt,$password);
$clean_text = pw_clean($dirty_text);
($code,$text) = $pw_obscure($newpass,$oldpass,$min_len);
$passwd = pw_get($user,$passwd_file,$error);
$password = pw_gen($cleartext);
Generate a 13 character DES password string from clear text
input: string<<less
SYNOPSIS
use Data::Password::Manager qw(
pw_gen
pw_valid
pw_obscure
pw_clean
pw_get
);
$password = pw_gen($cleartext);
$ok = pw_valid($cleartxt,$password);
$clean_text = pw_clean($dirty_text);
($code,$text) = $pw_obscure($newpass,$oldpass,$min_len);
$passwd = pw_get($user,$passwd_file,$error);
$password = pw_gen($cleartext);
Generate a 13 character DES password string from clear text
input: string<<less
Download (0.013MB)
Added: 2007-02-20 License: Perl Artistic License Price:
978 downloads
Local Data Manager 6.6.5
Local Data Manager is a collection of cooperating programs that select, capture, manage, and distribute arbitrary data products. more>>
Local Data Manager (LDM) is a collection of cooperating programs that select, capture, manage, and distribute arbitrary data products.
The system is designed for event-driven data distribution, and is currently used in the Unidata Internet Data Distribution (IDD) project. The LDM system includes network client and server programs and their shared protocols.
An important characteristic of the LDM is its support for flexible, site-specific configuration.
Enhancements:
- Fixes for timestamp bugs.
<<lessThe system is designed for event-driven data distribution, and is currently used in the Unidata Internet Data Distribution (IDD) project. The LDM system includes network client and server programs and their shared protocols.
An important characteristic of the LDM is its support for flexible, site-specific configuration.
Enhancements:
- Fixes for timestamp bugs.
Download (0.61MB)
Added: 2007-08-09 License: BSD License Price:
809 downloads
Secure Data Manager 2.1.0
Secure Data Manager is a manager for passwords and other private data. more>>
Secure Data Manager project is a manager for passwords and other private data.
Secure Data Manager (SDM) is a full-featured password manager application written entirely in Java (so it can run on Unix or Windows). It encrypts logins and other private information for Web sites, computers, credit cards, etc.
Main features:
- Many great features and more coming each month based on user feedback!
- No limit to how you use the product or how often!
- Trusted since you and everyone else can see the code that protects your passwords -- keeping the application clear of any trojans or bad business practices.
- Open source -- so if you know how to write code, you can add any feature you want!
- Free.
<<lessSecure Data Manager (SDM) is a full-featured password manager application written entirely in Java (so it can run on Unix or Windows). It encrypts logins and other private information for Web sites, computers, credit cards, etc.
Main features:
- Many great features and more coming each month based on user feedback!
- No limit to how you use the product or how often!
- Trusted since you and everyone else can see the code that protects your passwords -- keeping the application clear of any trojans or bad business practices.
- Open source -- so if you know how to write code, you can add any feature you want!
- Free.
Download (1.9MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1012 downloads
Data::Walker 1.05
Data::Walker is a tool for navigating through Perl data structures. more>>
Data::Walker is a tool for navigating through Perl data structures.
SYNOPSIS
Without any explicit objects:
use Data::Walker;
Data::Walker->cli( $data_structure );
Object-style invocation:
use Data::Walker;
my $w = new Data::Walker;
$w->walk( $data_structure );
$w->ls("-al");
$w->pwd;
$w->cli;
Importing methods into the current package:
use Data::Walker qw(:direct);
walk $data_structure;
ls "-al";
pwd;
cli;
This module allows you to "walk" an arbitrary Perl data structure in the same way that you can walk a directory tree from a UNIX command line. It reuses familiar unix commands (such as "ls", "cd", "pwd") and applies these to data structures.
It has a command-line interface which behaves like a UNIX shell. You can also use object-style sytax to invoke the CLI commands from outside the CLI. Data::Walker objects are encapsulated, so that you can hop into and out of a CLI without losing state, and you can have several Data::Walker objects pointing at different structures.
The main functions can also be imported and used directly from within the Perl debuggers CLI.
<<lessSYNOPSIS
Without any explicit objects:
use Data::Walker;
Data::Walker->cli( $data_structure );
Object-style invocation:
use Data::Walker;
my $w = new Data::Walker;
$w->walk( $data_structure );
$w->ls("-al");
$w->pwd;
$w->cli;
Importing methods into the current package:
use Data::Walker qw(:direct);
walk $data_structure;
ls "-al";
pwd;
cli;
This module allows you to "walk" an arbitrary Perl data structure in the same way that you can walk a directory tree from a UNIX command line. It reuses familiar unix commands (such as "ls", "cd", "pwd") and applies these to data structures.
It has a command-line interface which behaves like a UNIX shell. You can also use object-style sytax to invoke the CLI commands from outside the CLI. Data::Walker objects are encapsulated, so that you can hop into and out of a CLI without losing state, and you can have several Data::Walker objects pointing at different structures.
The main functions can also be imported and used directly from within the Perl debuggers CLI.
Download (0.020MB)
Added: 2007-06-30 License: Perl Artistic License Price:
846 downloads
Cowbell Music Organizer 0.2.7.1
Cowbell is an elegant music organizer intended to make keeping your collection tidy both fun and easy. more>>
Cowbell Music Organizer is an elegant music organizer intended to make keeping your collection tidy both fun and easy.
Do you ever pull your hair out trying to hand-edit all your tags with some arcane editor? Tell your inner OCD to take a hike because Cowbell is coming into town.
Cowbell is an elegant music organizer intended to make keeping your collection tidy both fun and easy.
Infused with Amazon Web Services SOAP-fu, Cowbell can whip your music platoon into shape without even getting your boots muddy. And, if that isnt enough to make you want to rush to the Download link, Cowbell can also snatch album art and rename your music files like a pro.
<<lessDo you ever pull your hair out trying to hand-edit all your tags with some arcane editor? Tell your inner OCD to take a hike because Cowbell is coming into town.
Cowbell is an elegant music organizer intended to make keeping your collection tidy both fun and easy.
Infused with Amazon Web Services SOAP-fu, Cowbell can whip your music platoon into shape without even getting your boots muddy. And, if that isnt enough to make you want to rush to the Download link, Cowbell can also snatch album art and rename your music files like a pro.
Download (0.23MB)
Added: 2006-05-09 License: GPL (GNU General Public License) Price:
1266 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above data organizer search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed