Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.174.759 Times

Excel Card Sort Application freeware
Filter: All | Freeware | Demo
 

Excel Card Sort Application

< 1 2 3 4 5 > 
Added: May 09, 2010 | Visits: 1.992

CGI::Application::Plugin::Authentication::Store::Cookie CGI::Application::Plugin::Authentication::Store::Cookie is a Cookie based Store. SYNOPSIS use base qw(CGI::Application); use CGI::Application::Plugin::Session; use CGI::Application::Plugin::Authentication; __PACKAGE__->authen->config( STORE => [Cookie, SECRET => "Shhh, dont tell anyone",...



Platforms: *nix

License: Freeware Size: 48.13 KB Download (115): CGI::Application::Plugin::Authentication::Store::Cookie Download

Added: April 14, 2010 | Visits: 2.824

CGI::Application::Plugin::Authentication::Store::Session CGI::Application::Plugin::Authentication::Store::Session is a session based store. SYNOPSIS use base qw(CGI::Application); use CGI::Application::Plugin::Session; use CGI::Application::Plugin::Authentication; __PACKAGE__->authen->config( STORE => Session, ); This module uses a session...





Platforms: *nix

License: Freeware Size: 48.13 KB Download (89): CGI::Application::Plugin::Authentication::Store::Session Download

Added: February 23, 2010 | Visits: 7.253

CGI::Application::Plugin::Authorization CGI::Application::Plugin::Authorization is an authorization framework for CGI::Application. SYNOPSIS use base qw(CGI::Application); use CGI::Application::Plugin::Authentication; use CGI::Application::Plugin::Authorization; # default config for runmode authorization...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (93): CGI::Application::Plugin::Authorization Download

Added: October 18, 2010 | Visits: 1.846

CGI::Application::Plugin::Authentication::Driver CGI::Application::Plugin::Authentication::Driver is a Perl base module for building driver clasees for CGI::Application::Plugin::Authentication. SYNOPSIS package CGI::Application::Plugin::Authentication::Driver::MyDriver; use base qw(CGI::Application::Plugin::Authentication::Driver); sub...


Platforms: *nix

License: Freeware Size: 47.1 KB Download (92): CGI::Application::Plugin::Authentication::Driver Download

Added: September 23, 2010 | Visits: 2.359

CGI::Application::Plugin::Authentication::Store CGI::Application::Plugin::Authentication::Store is a base module for building storage classes for the CGI::Application::Plugin::Authentication plugin. SYNOPSIS package CGI::Application::Plugin::Authentication::Store::MyStore; use base qw(CGI::Application::Plugin::Authentication::Store);...


Platforms: *nix

License: Freeware Size: 47.1 KB Download (100): CGI::Application::Plugin::Authentication::Store Download

Added: June 16, 2010 | Visits: 1.088

Chatbot::Alpha::Sort Chatbot::Alpha::Sort is a Perl module for alphabetic sorting of Chatbot::Alpha documents. SYNOPSIS use Chatbot::Alpha::Sort; # Create a new sorter. my $sort = new Chatbot::Alpha::Sort(); # Sort your files. $sort->start ( dir => ./before, out => ./after, ext => cba, );...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (99): Chatbot::Alpha::Sort Download

Added: January 11, 2010 | Visits: 1.385

Calyxo Web Application Framework Calyxo Web Application Framework encourages in MVC model 2 based web application development. It offers support for true modular applications, i18n, a flexible view manager, a powerful validation engine, and more! Calyxo is entirely written in Java and builds on the latest Servlet and JSP...


Platforms: *nix

License: Freeware Size: 2.3 MB Download (95): Calyxo Web Application Framework Download

Added: August 09, 2010 | Visits: 1.070

CGI::Application::Plugin::PageBuilder CGI::Application::Plugin::PageBuilder is a Perl module that simplifies building pages with multiple templates. SYNOPSIS This module simplifies building complex web pages with many small piecemeal templates. Instead of sub run_mode { my $self = shift; my $header = $self->load_tmpl(...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (90): CGI::Application::Plugin::PageBuilder Download

Added: January 23, 2010 | Visits: 1.537

SME Web Application Framework SME Web Application Framework provides a Web application framework for small and medium-sized organizations. SMEWebApp is a framework for constructing Web applications for SMEs (small and medium-sized enterprises, companies, institutions, and organizations). It is built on phpWebApp, and it is...


Platforms: *nix

License: Freeware Size: 849.92 KB Download (111): SME Web Application Framework Download

Added: May 08, 2010 | Visits: 1.477

Download Sort Download Sort is a Firefox extension that automatically saves downloaded files to different directories when using "Save Link As..." or "Save Image as...".


Platforms: *nix

License: Freeware Size: 25.6 KB Download (98): Download Sort

Added: June 14, 2010 | Visits: 1.115

CGI::Application::Magic CGI::Application::Magic is a template based framework for CGI applications. SYNOPSIS package WebApp ; use base CGI::Application::Magic ; # optional runmethod sub RM_myRunMmode { ... do_something_useful ... ... no_need_to_set_page ... ... returned_value_will_be_ignored ... } #...


Platforms: *nix

License: Freeware Size: 34.82 KB Download (97): CGI::Application::Magic Download

Added: February 25, 2010 | Visits: 1.449

Bundle::Application::Magic Bundle::Application::Magic is a a bundle to install CGI::Application::Magic plus all related prerequisites. SYNOPSIS perl -MCPAN -e install Bundle::Application::Magic CONTENTS HTML::Tagset - used by HTML::Parser HTML::Parser - used by HTML::FillInForm and HTML::TableTiler...


Platforms: *nix

License: Freeware Size: 34.82 KB Download (99): Bundle::Application::Magic Download

Added: March 23, 2010 | Visits: 1.030

Sort::Versions Sort::Versions is a Perl 5 module for sorting of revision-like numbers. SYNOPSIS use Sort::Versions; @l = sort { versioncmp($a, $b) } qw( 1.2 1.2.0 1.2a.0 1.2.a 1.a 02.a ); ... use Sort::Versions; print lower if versioncmp(1.2, 1.2a) == -1; ... use Sort::Versions; %h = (1 => d, 2...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (97): Sort::Versions Download

Added: June 22, 2010 | Visits: 766

Sort::Radix Sort::Radix is a Perl module with multiple passes distribution sort algorithm. SYNOPSIS use Sort::Radix; @array = qw(flow loop pool Wolf root sort tour); radix_sort(@array); print "@arrayn"; This is an implementation based on Jarkkos Wolf book (Mastering Algorithms with Perl, pp....


Platforms: *nix

License: Freeware Size: 3.07 KB Download (98): Sort::Radix Download

Added: October 23, 2010 | Visits: 1.186

OpenPlugin::Application OpenPlugin::Application is a subclass of CGI::Application, meant to help you create reusable web applications. SYNOPSIS # Example from OpenThoughts Demo.pm package Demo; use base "OpenPlugin::Application"; sub setup { my $self = shift; $self->run_modes( mode1 => init_demo, mode2 =>...


Platforms: *nix

License: Freeware Size: 78.85 KB Download (93): OpenPlugin::Application Download

Added: July 15, 2010 | Visits: 2.029

bibEC Process Card bibEC Process Card is a multiple gateway credit card payment processor. This class is meant to process credit card payments via one of multiple payment gateways that are supported. Currently the class supports the following payment gateways: Plug and Pay, Authorize.net, ViaKlix, and paynet ....


Platforms: *nix

License: Freeware Download (295): bibEC Process Card Download

Added: June 11, 2010 | Visits: 902

XML::Filter::Sort::BufferMgr XML::Filter::Sort::BufferMgr is a Perl implementation class used by XML::Filter::Sort. The documentation is targetted at developers wishing to extend or replace this class. For user documentation, see XML::Filter::Sort. Two classes are used to implement buffering records and spooling them...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (94): XML::Filter::Sort::BufferMgr Download

Added: October 01, 2010 | Visits: 824

XML::Filter::Sort::Buffer XML::Filter::Sort::Buffer is an implementation class used by XML::Filter::Sort. The documentation is targetted at developers wishing to extend or replace this class. For user documentation, see XML::Filter::Sort. For an overview of the classes and methods used for buffering, see...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (98): XML::Filter::Sort::Buffer Download

Added: July 01, 2010 | Visits: 986

XML::Filter::Sort XML::Filter::Sort is a SAX filter for sorting elements in XML. SYNOPSIS use XML::Filter::Sort; use XML::SAX::Machines qw( :all ); my $sorter = XML::Filter::Sort->new( Record => person, Keys => [ [ lastname, alpha, asc ], [ firstname, alpha, asc ], [ @age, num, desc] ], ); my...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (109): XML::Filter::Sort Download

Added: July 22, 2010 | Visits: 1.664

DateTime::Format::Excel DateTime::Format::Excel is a Perl module that can convert between DateTime and Excel dates. SYNOPSIS use DateTime::Format::Excel; # From Excel via class method: my $datetime = DateTime::Format::Excel->parse_datetime( 37680 ); print $datetime->ymd(.); # 2003.02.28 # or via an object...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (198): DateTime::Format::Excel Download

< 1 2 3 4 5 >