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

Cyrillic Print Php Type N Aid freeware
Filter: All | Freeware | Demo
 

Cyrillic Print Php Type N Aid

< 1 2 3 4 5 > 
Added: November 22, 2010 | Visits: 1.033

Sys::Gamin Sys::Gamin is a Perl interface to Gamin (File Access Monitor implementation). SYNOPSIS use Sys::Gamin; my $fm=new Sys::Gamin; $fm->monitor(/foo); $fm->monitor(/foo/bar.txt); while (1) { my $event=$fm->next_event; # Blocks print "Pathname: ", $event->filename, " Event: ", $event->type,...



Platforms: *nix

License: Freeware Size: 7.17 KB Download (103): Sys::Gamin Download

Added: April 11, 2010 | Visits: 1.189

Mail::DKIM::Signature Mail::DKIM::Signature module encapsulates a DKIM signature header. CONSTRUCTORS new() - create a new signature from parameters my $signature = new Mail::DKIM::Signature( [ Algorithm => "rsa-sha1", ] [ Signature => $base64, ] [ Method => "relaxed", ] [ Domain => "example.org", ] [...





Platforms: *nix

License: Freeware Size: 47.1 KB Download (98): Mail::DKIM::Signature Download

Added: November 24, 2010 | Visits: 727

Sys::Lastlog Sys::Lastlog is a Perl module to provide a moderately Object Oreiented Interface to lastlog files on some Unix-like systems. SYNOPSIS use Sys::Lastlog; my $ll = Sys::Lastlog->new(); while(my $llent = $ll->getllent() ) { print $llent->ll_line(),"n"; } The lastlog file provided on most...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (95): Sys::Lastlog Download

Added: June 19, 2010 | Visits: 1.039

Games::GuessWord Games::GuessWord is a guess the letters in a word (ie Hangman). SYNOPSIS use Games::GuessWord; my $g = Games::GuessWord->new(file => "/path/to/wordlist"); print "Score: " . $g->score . "n"; print "Chances: " . $g->chances . "n"; print "Answer: " . $g->answer . "n"; my @guesses =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (108): Games::GuessWord Download

Added: January 05, 2010 | Visits: 1.148

Math::String Math::String module contains arbitrary sized integers having arbitrary charsets to calculate with key rooms. SYNOPSIS use Math::String; use Math::String::Charset; $a = new Math::String cafebabe; # default a-z $b = new Math::String deadbeef; # a-z print $a + $b; # Math::String "" $a =...


Platforms: *nix

License: Freeware Size: 61.44 KB Download (98): Math::String Download

Added: October 08, 2010 | Visits: 894

Mail::DKIM::DkSignature Mail::DKIM::DkSignature is a DomainKeys signature header. CONSTRUCTORS parse() - create a new signature from a DomainKey-Signature header my $sig = parse Mail::DKIM::DkSignature( "DomainKey-Signature: a=rsa-sha1; b=yluiJ7+0=; c=nofws" ); Constructs a signature by parsing the provided...


Platforms: *nix

License: Freeware Size: 51.2 KB Download (114): Mail::DKIM::DkSignature Download

Added: May 07, 2010 | Visits: 866

Text::Diff3::DiffHeckel Text::Diff3::DiffHeckel is a two-way diff plug-in. SYNOPSIS use Text::Diff3; my $f = Text::Diff3::Factory->new; my $p = $f->create_diff; my $mytext = $f->create_text([ map{chomp;$_} < F0 > ]); my $original = $f->create_text([ map{chomp;$_} < F1 > ]); my $diff2 = $p->diff( $origial,...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (101): Text::Diff3::DiffHeckel Download

Added: July 14, 2010 | Visits: 920

Data::Serializer 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 =...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (93): Data::Serializer Download

Added: October 13, 2010 | Visits: 890

AFS::FS AFS::FS is a Perl module to communicate with an AFS File Server. SYNOPSIS use AFS::FS qw( getquota isafs lsmount mkmount rmmount setquota whereis ); my $quota = getquota(.); my $ok = setquota(., $quota); $ok = isafs(.); my $vol = lsmount(/afs/mpa/home/nog); print "Vol = $vol n";...


Platforms: *nix

License: Freeware Size: 184.32 KB Download (106): AFS::FS Download

Added: September 07, 2010 | Visits: 767

AFS::PTS AFS::PTS is a Perl class to communicate with the AFS Protection Server. SYNOPSIS use AFS::PTS; my $num_flg = AFS::PTS->convert_numeric_names; my $bits = AFS::PTS->ascii2ptsaccess("S----"); my $flags = AFS::PTS->ptsaccess2ascii($bits); my $pts = AFS::PTS->new; my $id =...


Platforms: *nix

License: Freeware Size: 184.32 KB Download (96): AFS::PTS Download

Added: July 18, 2010 | Visits: 1.832

Net::Whois::RIPE Net::Whois::RIPE is an object-oriented Perl library module that provides methods to query, retrieve, and update RIPE-157 formatted objects from whois servers that support this format. In particular, both the Asian and European Internet Registries (whois.ripe.net and whois.apnic.net) support...


Platforms: *nix

License: Freeware Size: 32.77 KB Download (100): Net::Whois::RIPE Download

Added: June 02, 2010 | Visits: 788

LLg 1.07 LLg is a recursive descent parser generator. SYNOPSIS use LLg; @tokens = ( ADDOP => [-+], LEFTP => [(], RIGHTP => [)], INTEGER => 0|[1-9][0-9]*, ); $reader = Lex->new(@tokens); $ADDOP->debug; $expr = And->new(($factor, Any->new($ADDOP, $factor)), sub { shift(@_); my $result =...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (93): LLg 1.07 Download

Added: May 19, 2010 | Visits: 879

Whitespace Whitespace is a Perl module to cleanup various types of bogus whitespace in source files. SYNOPSIS use Whitespace; # Instantiate a whitespace object with # both input and output files specified $ws = new Whitespace($infile, $outfile); # Instantiate a whitespace object with # only the...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (92): Whitespace Download

Added: July 12, 2010 | Visits: 1.019

Data::Page::Viewport Data::Page::Viewport is a Perl module to scroll thru data a page, or just an item, at a time. Synopsis This is a complete, tested, runnable program. #!/usr/bin/perl use strict; use warnings; use Data::Page::Viewport; # ----------------------------------------------- my(@data) =...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): Data::Page::Viewport Download

Added: August 24, 2010 | Visits: 915

X500::DN X500::DN is a Perl module that can handle X.500 DNs (Distinguished Names), parse and format them. SYNOPSIS use X500::DN; my $dn = X500::DN->ParseRFC2253 (cn=John Doe, o=Acme, Inc., c=US) or die; print $dn->getRFC2253String(), "n"; $dn = new X500::DN (new X500::RDN (c=>US), new X500::RDN...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (91): X500::DN Download

Added: August 03, 2010 | Visits: 971

CGI::SpeedyCGI SpeedyCGI is a Perl module to speed up perl scripts by running them persistently. SYNOPSIS #!/usr/bin/speedy ### Your Script Here. For example: print "Content-type: text/htmlnnHello World!n"; ## ## Optionally, use the CGI::SpeedyCGI module for various things ## # Create a SpeedyCGI...


Platforms: *nix

License: Freeware Size: 153.6 KB Download (92): CGI::SpeedyCGI Download

Added: October 08, 2010 | Visits: 848

Peptide::Pubmed Peptide::Pubmed is a Perl module that can extract peptide sequences from MEDLINE article abstracts. SYNOPSIS use Peptide::Pubmed; $parser = Peptide::Pubmed->new; $in = { PMID => q[15527327], Author => q[Doe JJ, Smith Q], Journal => q[J Biological Foo. 2004;8(2):123-30.], Title => q[Foo,...


Platforms: *nix

License: Freeware Size: 358.4 KB Download (104): Peptide::Pubmed Download

Added: November 15, 2010 | Visits: 883

Snort::Rule Snort::Rule is a Perl extension for dynamically building snort rules. SYNOPSIS use Snort::Rule; $rule = Snort::Rule->new( -action => alert, -proto => tcp, -src => any, -sport => any, -dir => ->, -dst => 192.188.1.1, -dport => 44444, ); $rule->opts(msg,Test Rule");...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (157): Snort::Rule Download

Added: November 16, 2010 | Visits: 1.078

Statistics::ChisqIndep Statistics::ChisqIndep is a Perl module to perform chi-square test of independence (a.k.a. contingency tables). Synopsis #example for Statistics::ChisqIndep use strict; use Statistics::ChisqIndep; use POSIX; # input data in the form of the array of array references my @obs = ([15, 68,...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (119): Statistics::ChisqIndep Download

Released: October 15, 2012  |  Added: October 15, 2012 | Visits: 562

Potrace for Windows Potrace(TM) is a utility for tracing a bitmap, which means, transforming a bitmap into a smooth, scalable image. The input is a bitmap (PBM, PGM, PPM, or BMP format), and the default output is an encapsulated PostScript file (EPS). A typical use is to create EPS files from scanned data, such as...


Platforms: Windows

License: Freeware Download (66): Potrace for Windows Download

< 1 2 3 4 5 >