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.476.248 Times

Subroutine Redefined software
Filter: All | Freeware | Demo
 

Subroutine Redefined

< 1 2 3 4 5 > 
Added: April 04, 2010 | Visits: 1.144

ex::override ex::override is a Perl pragma to override core functions. SYNOPSIS use ex::override ucfirst => sub { # make sure only the first # letter is uppercased ucfirst( lc( shift ) ); }; ucfirst( MAKE THIS RIGHT ); # Make this right no ex::override ucfirst; ucfirst( MAKE THIS RIGHT ); #... Platforms: *nix

License: Freeware Size: 4.1 KB Download (121): ex::override Download

Added: August 06, 2010 | Visits: 1.516

CGI::WeT::Modules::Calendar CGI::WeT::Modules::Calendar are Perl extensions to engine to allow calendar management. SYNOPSIS use CGI::WeT::Modules::Calendar (); This module provides rendering constructs to allow navigation through a set of calendars. Support is provided for multiple types of events in multiple... Platforms: *nix

License: Freeware Size: 40.96 KB Download (99): CGI::WeT::Modules::Calendar Download

Added: November 06, 2010 | Visits: 1.621

CGI::WeT::Modules::News CGI::WeT::Modules::News are Perl extensions to engine to allow article management. SYNOPSIS use CGI::WeT::Modules::News (); This module provides rendering constructs to allow navigation through a set of articles. Support is provided for multiple types of articles in multiple groupings (or... Platforms: *nix

License: Freeware Size: 40.96 KB Download (104): CGI::WeT::Modules::News Download

Added: May 23, 2010 | Visits: 910

chilli_control chilli_control is a script that takes a command-line argument telling it what to do with your smoothwall, ie connect, disconnect, or get the status. This version is designed for smoothwall version 2.0 beta. You will need to edit the script to set it up for your smoothwall. If you use the same... Platforms: *nix

License: Freeware Size: 3.07 KB Download (98): chilli_control Download

Added: January 13, 2010 | Visits: 938

Class::Observable Class::Observable is a Perl module that allows other classes and objects to respond to events in yours. SYNOPSIS # Define an observable class package My::Object; use base qw( Class::Observable ); # Tell all classes/objects observing this object that a state-change # has occurred sub... Platforms: *nix

License: Freeware Size: 10.24 KB Download (102): Class::Observable Download

Added: May 23, 2010 | Visits: 815

Test::Unit::Procedural Test::Unit::Procedural Perl module contains a procedural style unit testing interface. SYNOPSIS use Test::Unit::Procedural; # your code to be tested goes here sub foo { return 23 }; sub bar { return 42 }; # define tests sub test_foo { assert(foo() == 23, "Your message here"); } sub... Platforms: *nix

License: Freeware Size: 75.78 KB Download (95): Test::Unit::Procedural Download

Added: January 18, 2010 | Visits: 830

Tk::PerlMethodList Tk::PerlMethodList is a Perl module to query the Symbol-table for methods (subroutines) defined in a class (package) and its parents. SYNOPSIS require Tk::PerlMethodList; my $instance = $main_window->PerlMethodList(); Tk::PerlMethodList is a Tk::Toplevel-derived widget. The window... Platforms: *nix

License: Freeware Size: 6.14 KB Download (87): Tk::PerlMethodList Download

Added: August 07, 2010 | Visits: 1.357

AppleII::Disk AppleII::Disk is a Perl module for block-level access to Apple II disk image files. SYNOPSIS use AppleII::Disk; my $disk = AppleII::Disk->new(image.dsk); my $data = $disk->read_block(1); # Read block 1 $disk->write_block(1, $data); # And write it back :-) AppleII::Disk provides... Platforms: *nix

License: Freeware Size: 37.89 KB Download (103): AppleII::Disk Download

Added: March 16, 2010 | Visits: 747

B::XPath B::XPath class can search Perl optrees with XPath syntax. SYNOPSIS Perl represents programs internally as a tree of opcodes. To execute a program, it walks this tree, performing each operation as it encounters it. The B family of modules allows you to examine (and in some cases, manipulate)... Platforms: *nix

License: Freeware Size: 7.17 KB Download (88): B::XPath Download

Added: August 17, 2010 | Visits: 931

Lingua::ZH::Currency::UpperCase Lingua::ZH::Currency::UpperCase is a Perl module to convert Currency Numbers to Chinese UpperCase Format. SYNOPSIS use Lingua::ZH::Currency::UpperCase; print chinese_currency_uc( 2504.39 ); The main subroutine get a number and give a chinese string which has been converted as currency... Platforms: *nix

License: Freeware Size: 3.07 KB Download (88): Lingua::ZH::Currency::UpperCase Download

Added: September 24, 2010 | Visits: 1.283

Alarm::Concurrent Alarm::Concurrent is a Perl module that allows multiple, concurrent alarms. This module is an attempt to enhance Perls built-in alarm/$SIG{ALRM} functionality. This function, and its associated signal handler, allow you to arrange for your program to receive a SIGALRM signal, which you can... Platforms: *nix

License: Freeware Size: 7.17 KB Download (90): Alarm::Concurrent Download

Added: May 01, 2010 | Visits: 916

Text::Reform Text::Reform is a Perl module for manual text wrapping and reformatting. SYNOPSIS use Text::Reform; print form $template, $data, $to, $fill, $it, $with; use Text::Reform qw( tag ); print tag B, $enboldened_text; The form sub The form() subroutine may be exported from the module.... Platforms: *nix

License: Freeware Size: 20.48 KB Download (102): Text::Reform Download

Added: April 27, 2010 | Visits: 1.261

Class::Contract Class::Contract - Design-by-Contract OO in Perl. SYNOPSIS package ClassName use Class::Contract; contract { inherits BaseClass; invar { ... }; attr data1; attr data2 => HASH; class attr shared => SCALAR; ctor new; method methodname; pre { ... }; failmsg Error message; post... Platforms: *nix

License: Freeware Size: 26.62 KB Download (114): Class::Contract Download

Added: March 07, 2010 | Visits: 889

Perl6::Export::Attrs Perl6::Export::Attrs - the Perl 6 is export(...) trait as a Perl 5 attribute. SYNOPSIS package Some::Module; use Perl6::Export::Attrs; # Export &foo by default, when explicitly requested, # or when the :ALL export set is requested... sub foo :Export(:DEFAULT) { print "phooo!"; } #... Platforms: *nix

License: Freeware Size: 5.12 KB Download (90): Perl6::Export::Attrs Download

Added: October 20, 2010 | Visits: 827

Contextual::Return Contextual::Return is a Perl module to create context-senstive return values. SYNOPSIS use Contextual::Return; use Carp; sub foo { return SCALAR { thirty-twelve } BOOL { 1 } NUM { 7*6 } STR { forty-two } LIST { 1,2,3 } HASHREF { {name => foo, value => 99} } ARRAYREF { [3,2,1] }... Platforms: *nix

License: Freeware Size: 22.53 KB Download (97): Contextual::Return Download

Added: February 14, 2010 | Visits: 1.163

IO::Interactive IO::Interactive is a Perl module with utilities for interactive I/O. SYNOPSIS use IO::Interactive qw(is_interactive interactive busy); if ( is_interactive() ) { print "Running interactivelyn"; } # or... print {interactive} "Running interactivelyn"; $fh = busy {... Platforms: *nix

License: Freeware Size: 5.12 KB Download (88): IO::Interactive Download

Added: April 11, 2010 | Visits: 867

IO::Busy IO::Busy is a Perl module to intercept terminal input while something else is happening. SYNOPSIS use IO::Busy; my $fh = busy { non_interactive_stuff(); }; This module exports a single subroutine, named busy. That subroutine takes a single argument, which must be a block of code. busy... Platforms: *nix

License: Freeware Size: 4.1 KB Download (93): IO::Busy Download

Added: October 08, 2010 | Visits: 1.682

IO::InSitu IO::InSitu is a Perl module to avoid clobbering files opened for both input and output. SYNOPSIS use IO::InSitu; my ($in, $out) = open_rw($infile_name, $outfile_name); for my $line (<$in>) { $line =~ s/foo/bar/g; print {$out} $line; } When users want to do in-situ processing on a... Platforms: *nix

License: Freeware Size: 6.14 KB Download (87): IO::InSitu Download

Added: June 25, 2010 | Visits: 809

Carp::Datum Carp::Datum is a Perl module used for debugging and tracing. SYNOPSIS # In modules use Carp::Datum; # Programming by contract sub routine { DFEATURE my $f_, "optional message"; # $f_ is a lexical lvalue here my ($a, $b) = @_; DREQUIRE $a > $b, "a > b"; $a += 1; $b += 1; DASSERT $a >... Platforms: *nix

License: Freeware Size: 38.91 KB Download (91): Carp::Datum Download

Added: November 13, 2010 | Visits: 928

Exception::Class Exception::Class is a Perl module that allows you to declare real exception classes in Perl. SYNOPSIS use Exception::Class ( MyException, AnotherException => { isa => MyException }, YetAnotherException => { isa => AnotherException, description => These exceptions are related to IPC },... Platforms: *nix

License: Freeware Size: 16.38 KB Download (91): Exception::Class Download

< 1 2 3 4 5 >