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

Str Wrs Ldys software
Filter: All | Freeware | Demo
 

Str Wrs Ldys

< 1 2 3 4 5 > 
Added: May 13, 2010 | Visits: 1.796

Newsd Newsd is a standalone local NNTP news server for private newsgroup serving on a single server. It is useful for serving private newsgroup(s) to an intranet or the Internet and can act as a simple mail gateway, however it does not interface with other news servers and cannot manage distributed...



Platforms: *nix

License: Freeware Size: 102.4 KB Download (102): Newsd Download

Added: April 22, 2010 | Visits: 1.004

Math::BigInt::Calc Math::BigInt::Calc is a pure Perl module to support Math::BigInt. SYNOPSIS Provides support for big integer calculations. Not intended to be used by other modules. Other modules which sport the same functions can also be used to support Math::BigInt, like Math::BigInt::GMP or...





Platforms: *nix

License: Freeware Size: 194.56 KB Download (102): Math::BigInt::Calc Download

Added: March 27, 2010 | Visits: 880

Lisp::Fmt Lisp::Fmt is a Perl module for Common Lisp like formatting. SYNOPSIS use Lisp::Fmt; $str = fmt("~{~a ~5,,,*a~}", $a,$b,$c,$d); # store result in $str pfmt("~{ ~a~5,,,*a~}", $a,$b,$c,$d); # print to stdout The Common Lisp "format" function provides an extremely rich set of formatting...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (100): Lisp::Fmt Download

Added: October 05, 2010 | Visits: 642

Jcode Jcode is a Japanese Charset Handler. SYNOPSIS use Jcode; # # traditional Jcode::convert($str, $ocode, $icode, "z"); # or OOP! print Jcode->new($str)->h2z->tr($from, $to)->utf8; < Japanese document is now available as Jcode::Nihongo. > Jcode.pm supports both object and traditional...


Platforms: *nix

License: Freeware Size: 348.16 KB Download (99): Jcode Download

Added: March 18, 2010 | Visits: 820

Math::Expr Math::Expr is a Perl module that parses mathematical expressions. SYNOPSIS require Math::Expr; $p=new Math::Expr; $e=$p->Parse("a+4*b-d/log(s)+f(d,e)"); Parses mathematical expressions into a tree structure. The expressions may contain integers, real numbers, alphanumeric variable names,...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (99): Math::Expr Download

Added: July 18, 2010 | Visits: 1.660

URI::Escape URI::Escape is a Perl module to escape and unescape unsafe characters. SYNOPSIS use URI::Escape; $safe = uri_escape("10% is enoughn"); $verysafe = uri_escape("foo", " -377"); $str = uri_unescape($safe); This module provides functions to escape and unescape URI strings as defined by RFC...


Platforms: *nix

License: Freeware Size: 96.26 KB Download (99): URI::Escape Download

Added: October 20, 2010 | Visits: 824

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: August 15, 2010 | Visits: 1.124

MIME::WordDecoder MIME::WordDecoder is a Perl module to decode RFC-1522 encoded words to a local representation. SYNOPSIS See MIME::Words for the basics of encoded words. See "DESCRIPTION" for how this class works. use MIME::WordDecoder; ### Get the default word-decoder (used by unmime()): $wd = default...


Platforms: *nix

License: Freeware Size: 378.88 KB Download (97): MIME::WordDecoder Download

Added: February 20, 2010 | Visits: 893

Simple Config Simple Config library supports configuration files consisting of simple name-value pairs, similar to the old Windows INI files. A config file can be loaded into memory, queried by item name, modified, and written back out to a file. Configuration items may also be "watched", which causes a...


Platforms: *nix

License: Freeware Size: 23.55 KB Download (97): Simple Config Download

Added: August 12, 2010 | Visits: 731

Scalar::Util Scalar::Util is a selection of general-utility scalar subroutines. SYNOPSIS use Scalar::Util qw(blessed dualvar isweak readonly refaddr reftype tainted weaken isvstring looks_like_number set_prototype); Scalar::Util contains a selection of subroutines that people have expressed would be...


Platforms: *nix

License: Freeware Size: 43.01 KB Download (97): Scalar::Util Download

Added: September 04, 2010 | Visits: 893

Data::Str2Num Data::Str2Num - int str to int; float str to float, else undef. SYNOPSIS ##### # Subroutine interface # use Data::Str2Num qw(config str2float str2int str2integer); $float = str2float($string, [@options]); (@strings, @floats) = str2float(@strings, [@options]); $integer =...


Platforms: *nix

License: Freeware Size: 56.32 KB Download (95): Data::Str2Num Download

Added: February 23, 2010 | Visits: 776

pytags pytags is a Python library capable of reading and writing MP3, FLAC and OGG file tags. Being tired of having to use a different API calls for the main 3 media files in my library I created this library class. It utilizes pyid3lib, python-vorbis and python-flac as backends. None are required,...


Platforms: *nix

License: Freeware Download (95): pytags Download

Added: January 13, 2010 | Visits: 699

Regexp::MatchContext Regexp::MatchContext is Perl module to replace (and improve) $MATCH, $PREMATCH, and $POSTMATCH SYNOPSIS use Regexp::MatchContext -vars; $str = m/(?p) d+ /; print "Before: $PREMATCHn"; print "Matched: $MATCHn"; print "After: $POSTMATCHn"; $MATCH = 2 * $MATCH; # substitute into original...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (94): Regexp::MatchContext Download

Added: March 22, 2010 | Visits: 619

Text::Kakasi::JP Text::Kakasi::JP is a Japanese Perl extension for Text::Kakasi. SYNOPSIS use Text::Kakasi; # functional $res = Text::Kakasi::getopt_argv(kakasi, -ieuc, -w); $str = Text::Kakasi::do_kakasi($japanese_text); # object-oriented $obj = Text::Kakasi->new(-ieuc,-w); $str =...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (94): Text::Kakasi::JP Download

Added: January 14, 2010 | Visits: 1.734

Sort::Key Sort::Key is the fastest way to sort anything in Perl. SYNOPSIS use Sort::Key qw(keysort nkeysort ikeysort); @by_name = keysort { "$_->{surname} $_->{name}" } @people; # sorting by a numeric key: @by_age = nkeysort { $_->{age} } @people; # sorting by a numeric integer key: @by_sons =...


Platforms: *nix

License: Freeware Size: 56.32 KB Download (94): Sort::Key Download

Added: March 17, 2010 | Visits: 672

Inline::Struct Inline::Struct is a Perl module that manipulate C structures directly from Perl. SYNOPSIS use Inline C => Config => Structs => [Foo]; my $obj = Inline::Struct::Foo->new; $obj->num(10); $obj->str("Hello"); myfunc($obj); __END__ __C__ struct Foo { int num; char *str; }; void...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): Inline::Struct Download

Added: April 02, 2010 | Visits: 1.141

Python rope rope is a Python IDE. Python ropes main goal is to provide features like auto-completion, refactorings, content assistance, and outlines. Refactoring: In recent years refactoring has become a basic task of everyday programing, specially in java community. In the agile programing methodologies,...


Platforms: *nix

License: Freeware Download (93): Python rope Download

Added: July 07, 2010 | Visits: 937

Inline::C Inline::C is a Perl module that can Write Perl Subroutines in C. Inline::C is a module that allows you to write Perl subroutines in C. Since version 0.30 the Inline module supports multiple programming languages and each language has its own support module. This document describes how to use...


Platforms: *nix

License: Freeware Size: 92.16 KB Download (93): Inline::C Download

Added: September 26, 2010 | Visits: 961

YAPE::Regex::Element YAPE::Regex::Element contains sub-classes for YAPE::Regex elements. SYNOPSIS use YAPE::Regex MyExt::Mod; # this sets up inheritence in MyExt::Mod # see YAPE::Regex documentation YAPE MODULES The YAPE hierarchy of modules is an attempt at a unified means of parsing and extracting...


Platforms: *nix

License: Freeware Size: 153.6 KB Download (93): YAPE::Regex::Element Download

Added: September 14, 2010 | Visits: 1.003

Template::Alloy::Parse Template::Alloy::Parse is a Perl module with common parsing role for creating AST from templates. The Template::Alloy::Parse role is reponsible for storing the majority of directive parsing code, as well as for delegating to the TT, HTE, Tmpl, and Velocity roles for finding variables and...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (93): Template::Alloy::Parse Download

< 1 2 3 4 5 >