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

Lexical Ambiguity software
Filter: All | Freeware | Demo
 

Lexical Ambiguity

< 1 2 3 4 5 > 
Added: June 20, 2010 | Visits: 1.137

XML::Descent XML::Descent is a Perl module for recursive descent XML parsing. SYNOPSIS use XML::Descent; # Create parser my $p = XML::Descent->new({ Input => $xml }); # Setup handlers $p->on(folder => sub { my ($elem, $attr) = @_; $p->on(url => sub { my ($elem, $attr) = @_; my $link = { name...



Platforms: *nix

License: Freeware Size: 9.22 KB Download (93): XML::Descent Download

Added: June 11, 2010 | Visits: 885

Closure::Loop Closure::Loop is a Perl module with redo, last, next for closure based loops. SYNOPSIS package MyIterator; use Closure::Loop; # mixin sub new { my $class = shift; return bless { }, $class; } sub forAll { my $self = shift; my $cb = pop || die "No callback"; for my $i (@_) { eval {...





Platforms: *nix

License: Freeware Size: 6.14 KB Download (97): Closure::Loop Download

Added: January 01, 2010 | Visits: 1.062

Nasal Nasal is a language that I wrote for use in a personal project. Ostensibly it was because I was frustrated with the dearth of small-but-complete embeddable scripting languages, but of course I really wrote it because it was fun. It is still young and incomplete in a few places, but is under...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (95): Nasal Download

Added: October 08, 2010 | Visits: 848

Devel::Hints Devel::Hints is a Perl module created to access compile-time hints at runtime. SYNOPSIS use Devel::Hints :all; LABEL: print cop_label(); # LABEL cop_label(0 => FOO); # "goto FOO;" is valid after this point! print cop_file(); # same as __FILE__ print cop_filegv(); # same as $::{_< ....


Platforms: *nix

License: Freeware Size: 44.03 KB Download (88): Devel::Hints Download

Added: October 01, 2010 | Visits: 1.187

Filter::Macro Filter::Macro is a Perl module to make macro modules that are expanded inline. SYNOPSIS In MyHandyModules.pm: package MyHandyModules; use Filter::Macro; # lines below will be expanded into callers code use strict; use warnings; use Switch; use IO::All; use Quantum::Superpositions;...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (104): Filter::Macro Download

Added: May 27, 2010 | Visits: 901

Variable::Alias Variable::Alias is a Perl module created to alias any variable to any other variable. SYNOPSIS use Variable::Alias alias; my $src; my $a; our $b; my @c; our @d; alias $src => $a; alias $a => $b; alias $b => $c[0]; alias @c => @d; $src=src; # All the other variables now have the...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (90): Variable::Alias Download

Added: October 25, 2010 | Visits: 714

Devel::FindGlobals Devel::FindGlobals is a Perl module to find global variables and their size. SYNOPSIS use Devel::FindGlobals; print print_globals_sizes(); This module just runs around and over the symbol table, finds global variables, gets their sizes with Devel::Size, and then prints them out....


Platforms: *nix

License: Freeware Size: 3.07 KB Download (88): Devel::FindGlobals Download

Added: February 25, 2010 | Visits: 764

Object::LocalVars Object::LocalVars is a Perl module with outside-in objects with local aliasing of $self and object variables. SYNOPSIS package My::Object; use strict; use Object::LocalVars; give_methods our $self; # this exact line is required our $field1 : Prop; our $field2 : Prop; sub as_string :...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (94): Object::LocalVars Download

Added: August 27, 2010 | Visits: 1.010

File::pushd File::pushd is a Perl module to change directory temporarily for a limited scope. SYNOPSIS use File::pushd; chdir $ENV{HOME}; # change directory again for a limited scope { my $dir = pushd( /tmp ); # working directory changed to /tmp } # working directory has reverted to $ENV{HOME}...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (100): File::pushd Download

Added: October 08, 2010 | Visits: 881

Perl6::Currying Perl6::Currying is a Perl 6 subroutine currying for Perl 5. SYNOPSIS use Perl6::Currying; sub add ($a,$b) { $a + $b } # Define a sub with named params print add(1,2); # Call it my $incr = &add.prebind(a=>1); # Bind the $a argument to 1 # to create an increment subroutine print...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (89): Perl6::Currying Download

Added: March 26, 2010 | Visits: 1.487

String::RexxParse String::RexxParse is a Perl implementation of REXX parse command. SYNOPSIS use String::RexxParse qw(parse); parse $source, q! $var1 $var2 ( $var3 ) $var4 ($var5) $var6 !; or use String::PexxParse; $parse = String::RexxParse->new(q! $var1 $var2 ( $var3 ) $var4 ($var5) $var6 !);...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (109): String::RexxParse Download

Added: November 06, 2010 | Visits: 873

Math::FresnelZone SYNOPSIS use Math::FresnelZone; use Math::FresnelZone qw(fresnel fresnelMi fresnelKm); The arguments are: 0 - distance in kilometers or miles (default is 1), 1 - frequency in GHz (defualt 2.4), 2 - set to true to specify that the distance you are inputting is in miles and that the...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (101): Math::FresnelZone Download

Added: June 25, 2010 | Visits: 801

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: September 23, 2010 | Visits: 1.296

Class::InsideOut::Manual::About Class::InsideOut::Manual::About is a guide to this and other implementations of the inside-out technique. This manual provides an overview of the inside-out technique and its application within Class::InsideOut and other modules. It also provides a list of references for further study....


Platforms: *nix

License: Freeware Size: 48.13 KB Download (109): Class::InsideOut::Manual::About Download

Added: March 12, 2010 | Visits: 931

PyBison PyBison is a Python binding to the Bison (yacc) and Flex (lex) parser-generator utilities. It allows parsers to be quickly and easily developed as Python class declarations, and for these parsers to take advantage of the fast and powerful C-based Bison/Flex. Users write a subclass of a basic...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (125): PyBison Download

Added: April 04, 2010 | Visits: 1.279

Time::Format Time::Format is a Perl module for easy-to-use date/time formatting. SYNOPSIS use Time::Format qw(%time %strftime %manip); $time{$format} $time{$format, $unixtime} print "Today is $time{yyyy/mm/dd}n"; print "Yesterday was $time{yyyy/mm/dd, time-24*60*60}n"; print "The time is...


Platforms: *nix

License: Freeware Size: 38.91 KB Download (94): Time::Format Download

Added: August 24, 2010 | Visits: 1.104

File::Basename File::Basename is a Perl module to parse file paths into directory, filename and suffix. SYNOPSIS use File::Basename; ($name,$path,$suffix) = fileparse($fullname,@suffixlist); $name = fileparse($fullname,@suffixlist); $basename = basename($fullname,@suffixlist); $dirname =...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (107): File::Basename Download

Added: October 06, 2010 | Visits: 685

PasTmon PasTmon project measure the transaction response times of your web and application servers. Perform continuous passive monitoring of network traffic. Record historical data of measurements in a backend database and present via a PHP based web front-end. PasTmon is a passive network traffic...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (91): PasTmon Download

Added: October 03, 2010 | Visits: 998

Parse::Nibbler Parse::Nibbler is Perl module to parse huge files using grammars written in pure perl. Create a parser object using the ->new method. This method is provided by the Parse::Nibbler module and should not be overridden. The main functionality of the Parse::Nibbler module is the Register...


Platforms: *nix

License: Freeware Size: 33.79 KB Download (91): Parse::Nibbler Download

Added: October 17, 2010 | Visits: 1.180

Bio::Tools::CodonTable Bio::Tools::CodonTable is a bioperl codon table object. SYNOPSIS # This is a read-only class for all known codon tables. The IDs are # the ones used by nucleotide sequence databases. All common IUPAC # ambiguity codes for DNA, RNA and animo acids are recognized. # to use use...


Platforms: *nix

License: Freeware Size: 4.7 MB Download (127): Bio::Tools::CodonTable Download

< 1 2 3 4 5 >