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

Fh freeware
Filter: All | Freeware | Demo
 

Fh

< 1 2 3 4 > 
Added: July 14, 2010 | Visits: 922

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: April 19, 2010 | Visits: 1.084

Net::TCP::PtyServer Net::TCP::PtyServer is a Perl module that serves pseudo-terminals. Opens a listening connection on a port, waits for network connections on that port, and serves each one in a seperate PTY. Coping with terminal size changes To set the size of a terminal, you need to call ioctl(), and pass... Platforms: *nix

License: Freeware Size: 8.19 KB Download (95): Net::TCP::PtyServer Download

Added: April 11, 2010 | Visits: 946

Audio::Data Audio::Data is a module for representing audio data to perl. SYNOPSIS use Audio::Data; my $audio = Audio::Data->new(rate => , ...); $audio->method(...) $audio OP ... Audio::Data represents audio data to perl in a fairly compact and efficient manner using C via XS to hold data as a C... Platforms: *nix

License: Freeware Size: 88.06 KB Download (100): Audio::Data Download

Added: November 12, 2010 | Visits: 1.024

File::NFSLock File::NFSLock is a Perl module to do NFS (or not) locking. SYNOPSIS use File::NFSLock qw(uncache); use Fcntl qw(LOCK_EX LOCK_NB); my $file = "somefile"; ### set up a lock - lasts until object looses scope if (my $lock = new File::NFSLock { file => $file, lock_type => LOCK_EX|LOCK_NB,... Platforms: *nix

License: Freeware Size: 18.43 KB Download (94): File::NFSLock Download

Added: January 21, 2010 | Visits: 853

Encode::PerlIO Encode::PerlIO is a detailed document on Encode and PerlIO. Overview It is very common to want to do encoding transformations when reading or writing files, network connections, pipes etc. If Perl is configured to use the new perlio IO system then Encode provides a "layer" (see PerlIO) which... Platforms: *nix

License: Freeware Size: 11.3 MB Download (87): Encode::PerlIO Download

Added: April 20, 2010 | Visits: 1.048

XML::LibXML::Parser XML::LibXML::Parser is a Perl module to parse XML Data with XML::LibXML. SYNOPSIS $parser = XML::LibXML->new(); $doc = $parser->parse_file( $xmlfilename ); $doc = $parser->parse_fh( $io_fh ); $doc = $parser->parse_string( $xmlstring); $doc = $parser->parse_html_file( $htmlfile, %opts );... Platforms: *nix

License: Freeware Size: 256 KB Download (106): XML::LibXML::Parser Download

Added: February 02, 2010 | Visits: 1.190

Text::LooseCSV Text::LooseCSV is a highly forgiving variable length record text parser; compare to MS Excel. SYNOPSIS use Text::LooseCSV; use IO::File; $fh = new IO::File $fname; $f = new Text::LooseCSV($fh); # Some optional settings $f->word_delimiter("t"); $f->line_delimiter("n");... Platforms: *nix

License: Freeware Size: 6.14 KB Download (105): Text::LooseCSV Download

Added: September 09, 2010 | Visits: 2.514

Geo::Gpx Geo::Gpx is a Perl module to create and parse GPX files. SYNOPSIS # Version 0.10 compatibility use Geo::Gpx; my $gpx = Geo::Gpx->new( @waypoints ); my $xml = $gpx->xml; # New API, generate GPX my $gpx = Geo::Gpx->new(); $gpx->waypoints(@wpt); my $xml = $gpx->xml(1.0); # Parse GPX... Platforms: *nix

License: Freeware Size: 12.29 KB Download (214): Geo::Gpx Download

Released: December 25, 2012  |  Added: December 25, 2012 | Visits: 1.882

Module::MakefilePL::Parse Module::MakefilePL::Parse is a Perl module to parse required modules from Makefile.PL. SYNOPSIS use Module::MakefilePL::Parse; open $fh, Makefile.PL; $parser = Module::MakefilePL::Parse->new( join("", <$fh>) ); $info = $parser->required; The purpose of this module is to determine the... Platforms: *nix

License: Freeware Size: 8.19 KB Download (100): Module::MakefilePL::Parse Download

Added: March 03, 2010 | Visits: 1.317

IO::Pipe::Producer IO::Pipe::Producer is a Perl module that provides two modules getSubroutineProducer and getSystemProducer. SYNOPSIS # Module which provides 2 methods: getSubroutineProducer # and getSystemProducer. They take a subroutine reference # (with associated arguments) and a system call #... Platforms: *nix

License: Freeware Size: 6.14 KB Download (101): IO::Pipe::Producer Download

Added: April 19, 2010 | Visits: 1.270

RTF::Writer RTF::Writer is a Perl module for generating documents in Rich Text Format. SYNOPSIS use RTF::Writer; my $rtf = RTF::Writer->new_to_file("greetings.rtf"); $rtf->prolog( title => "Greetings, hyoomon" ); $rtf->number_pages; $rtf->paragraph( fs40bi, # 20pt, bold, italic "Hi there!" );... Platforms: *nix

License: Freeware Size: 57.34 KB Download (118): RTF::Writer Download

Added: February 13, 2010 | Visits: 898

Apache::TestUtil Apache::TestUtil Perl module contains utility functions for writing tests. SYNOPSIS use Apache::Test; use Apache::TestUtil; ok t_cmp("foo", "foo", "sanity check"); t_write_file("filename", @content); my $fh = t_open_file($filename); t_mkdir("/foo/bar"); t_rmtree("/foo/bar");... Platforms: *nix

License: Freeware Size: 153.6 KB Download (90): Apache::TestUtil Download

Added: April 01, 2010 | Visits: 764

Net::Chat::Daemon Net::Chat::Daemon is a Perl module to run a daemon that is controlled via instant messaging. ABSTRACT This package is intended to serve as a superclass for objects that want to communicate via IM messages within a distributed network of client nodes and a coordinator, without dealing with the... Platforms: *nix

License: Freeware Size: 13.31 KB Download (94): Net::Chat::Daemon Download

Added: September 26, 2010 | Visits: 964

XML::RSS::Parser XML::RSS::Parser is a liberal object-oriented parser for RSS feeds. SYNOPSIS #!/usr/bin/perl -w use strict; use XML::RSS::Parser; use FileHandle; my $p = XML::RSS::Parser->new; my $fh = FileHandle->new(/path/to/some/rss/file); my $feed = $p->parse_file($fh); # output some values my... Platforms: *nix

License: Freeware Size: 12.29 KB Download (93): XML::RSS::Parser Download

Added: February 24, 2010 | Visits: 1.074

InfoSys::FreeDB InfoSys::FreeDB is a Perl module for FreeDB connection factory. SYNOPSIS require InfoSys::FreeDB; require InfoSys::FreeDB::Entry; # Read entry from the default CD device my $entry = InfoSys::FreeDB::Entry->new_from_cdparanoia(); # Create a HTTP connection my $fact =... Platforms: *nix

License: Freeware Size: 61.44 KB Download (100): InfoSys::FreeDB Download

Added: August 11, 2010 | Visits: 968

File::Basename::Object File::Basename::Object is a Perl module with object-oriented syntax sugar for File::Basename. SYNOPSIS my $file = File::Basename::Object->new("/path/to/a/file.html", ".htm", ".html"); if(open(my $fh, <, $file)) { print "Now reading ", $file->basename, "n"; ... } if($file ==... Platforms: *nix

License: Freeware Size: 4.1 KB Download (96): File::Basename::Object Download

Added: May 14, 2010 | Visits: 1.517

Text::PORE Text::PORE is a Perl Object Rendering Engine. pore intr.v. 1. To read or study carefully and attentively The American Heritage® Dictionary of the English Language, Fourth Edition SYNOPSIS How to use PORE to render Perl objects. use Text::PORE::Template; use Text::PORE::Object; The... Platforms: *nix

License: Freeware Size: 32.77 KB Download (103): Text::PORE Download

Released: June 21, 2012  |  Added: June 21, 2012 | Visits: 292

FlexMT With FlexMT each flex program can be easily equipped with multi-touch operation. FlexMT supports symbolic and direct gestures like dragging, rotating or scaling and uses TUIO for touch detection. FlexMT is part of a Tabletop-Project at the FH-Trier. Platforms: Windows, Mac, Linux

License: Freeware Size: 516.73 KB Download (44): FlexMT Download

Added: May 10, 2013 | Visits: 274

pipemore pipemore.pl is intended to be used as the last of a series of piped commands. It captures the data on the pipe (STDOUT) and displays it in a scrolled text window where you may search or save it. This has the advantage over more because when you close the window, the data disappears and does not... Platforms: *nix, Perl, BSD

License: Freeware Download (60): pipemore Download

Added: August 28, 2013 | Visits: 585

MATLAB for Digital Communication CHAPTER 1: FOURIER ANALYSIS1.1 CONTINUOUS-TIME FOURIER SERIES (CTFS)1.2 PROPERTIES OF CTFS 1.2.1 Time-Shifting Property 1.2.2 Frequency-Shifting Property 1.2.3 Modulation Property1.3 CONTINUOUS-TIME FOURIER TRANSFORM (CTFT)1.4 PROPERTIES OF CTFT 1.4.1 Linearity 1.4.2 Conjugate Symmetry 1.4.3 Real... Platforms: Matlab

License: Freeware Size: 143.36 KB Download (50): MATLAB for Digital Communication Download

< 1 2 3 4 >