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

Pi freeware
Filter: All | Freeware | Demo
 

Pi

< 1 2 3 4 5 > 
Added: February 12, 2010 | Visits: 1.125

XML::Parser::Style::Stream XML::Parser::Style::Stream is a Stream style for XML::Parser. SYNOPSIS use XML::Parser; my $p = XML::Parser->new(Style => Stream, Pkg => MySubs); $p->parsefile(foo.xml); { package MySubs; sub StartTag { my ($e, $name) = @_; # do something with start tags } sub EndTag { my ($e,... Platforms: *nix

License: Freeware Size: 225.28 KB Download (105): XML::Parser::Style::Stream Download

Added: May 23, 2010 | Visits: 1.098

Class::Meta::Declare Class::Meta::Declare is a Perl module deprecated in favor of Class::Meta::Express. SYNOPSIS This was a first attempt at making a saner interface for Class::Meta. It is nicer, but Class::Meta::Express is nicer still. Go use that one. package MyApp::Thingy; use Class::Meta::Declare :all;... Platforms: *nix

License: Freeware Size: 15.36 KB Download (88): Class::Meta::Declare Download

Added: June 03, 2010 | Visits: 703

SGMLS SGMLS is a Perl class for postprocessing the output from the sgmls and nsgmls parsers. SYNOPSIS use SGMLS; my $parse = new SGMLS(STDIN); my $event = $parse->next_event; while ($event) { SWITCH: { ($event->type eq start_element) && do { my $element = $event->data; # An object of... Platforms: *nix

License: Freeware Size: 93.18 KB Download (92): SGMLS Download

Added: January 25, 2010 | Visits: 976

XML::Parser::EasyTree XML::Parser::EasyTree is an easier tree style for XML::Parser. SYNOPSIS use XML::Parser; use XML::Parser::EasyTree; $XML::Parser::Easytree::Noempty=1; my $p=new XML::Parser(Style=>EasyTree); my $tree=$p->parsefile(something.xml); XML::Parser::EasyTree adds a new "built-in" style called... Platforms: *nix

License: Freeware Size: 3.07 KB Download (96): XML::Parser::EasyTree Download

Added: January 22, 2010 | Visits: 875

Scalar::Properties Scalar::Properties is a Perl module package that contains run-time properties on scalar variables. SYNOPSIS use Scalar::Properties; my $val = 0->true; if ($val && $val == 0) { print "yup, its true alright...n"; } my @text = ( hello world->greeting(1), forget it, hi... Platforms: *nix

License: Freeware Size: 10.24 KB Download (94): Scalar::Properties Download

Added: September 03, 2010 | Visits: 2.276

Spreadsheet::WriteExcelXML Spreadsheet::WriteExcelXML is a Perl module that can create an Excel file in XML format. SYNOPSIS To write a string, a formatted string, a number and a formula to the first worksheet in an Excel XML spreadsheet called perl.xls: use Spreadsheet::WriteExcelXML; # Create a new Excel workbook... Platforms: *nix

License: Freeware Size: 143.36 KB Download (147): Spreadsheet::WriteExcelXML Download

Added: January 23, 2010 | Visits: 850

RasmusDSP 0.1 RasmusDSP is an embeddable Audio/MIDI processor. Has a script interpreter which is used to describe instruments, route Audio/MIDI signal between processor units. List of available units: Math Operators (audio and number domain) +, -, *, /, %, >, <, >=, <=, !=, =, ? Math Functions (audio... Platforms: *nix

License: Freeware Size: 901.12 KB Download (91): RasmusDSP 0.1 Download

Added: September 02, 2010 | Visits: 1.040

Math::NumberCruncher Math::NumberCruncher Perl module contains a collection of useful math-related functions. SYNOPSIS It should be noted that as of v4.0, there is now an OO interface to Math::NumberCruncher. For backwards compatibility, however, the previous, functional style will always be supported. # OO... Platforms: *nix

License: Freeware Size: 81.92 KB Download (101): Math::NumberCruncher Download

Added: September 23, 2010 | Visits: 785

Variable::Strongly::Typed Variable::Strongly::Typed is a Perl module to let some variables be strongly typed. SYNOPSIS use Variable::Strongly::Typed; my $int :TYPE(int); # must have an int value my $float :TYPE(float); # must have a float value my $string :TYPE(string); # must not be a reference my $file... Platforms: *nix

License: Freeware Size: 10.24 KB Download (94): Variable::Strongly::Typed Download

Added: May 07, 2010 | Visits: 1.202

Teamspeak::Telnet Teamspeak::Telnet is a Telnet-Interface to administrate Teamspeak-Voice-Server. COMMAND OVERVIEW banadd : add ip ban banclear : clear banlist bandel : del ip ban banlist : show banlist banplayer : bans a player checkserverok : checks if server hangs ci : display channel info cl :... Platforms: *nix

License: Freeware Size: 26.62 KB Download (116): Teamspeak::Telnet Download

Added: September 13, 2010 | Visits: 903

Geo::Ellipsoids Geo::Ellipsoids is a package for standard Geo:: ellipsoid a, b, f and 1/f values. SYNOPSIS use Geo::Ellipsoids; my $obj = Geo::Ellipsoids->new(); $obj->set(WGS84); #default print "a=", $obj->a, "n"; print "b=", $obj->b, "n"; print "f=", $obj->f, "n"; print "i=", $obj->i, "n"; print... Platforms: *nix

License: Freeware Size: 7.17 KB Download (109): Geo::Ellipsoids Download

Added: April 11, 2010 | Visits: 947

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: October 15, 2010 | Visits: 1.625

Formulas Rendering Plug-In for the Gimp 2 Formulas Rendering Plug-In for the Gimp 2 is a simple plugin that allows you to change the values of each color channel of each pixel of a layer by using mathematical expressions. It is able to handle RGB* and Gray* images. Available operators are: +, -, *, /, ^, and %. There are many functions... Platforms: *nix

License: Freeware Size: 163.84 KB Download (127): Formulas Rendering Plug-In for the Gimp 2 Download

Added: January 08, 2010 | Visits: 1.031

Inline::Java::PerlInterpreter Inline::Java::PerlInterpreter is a Perl module used to call Perl directly from Java using Inline::Java. SYNOPSIS import org.perl.inline.java.* ; class HelpMePerl { static private InlineJavaPerlInterpreter pi = null ; public HelpMePerl() throws InlineJavaException { } static private... Platforms: *nix

License: Freeware Size: 94.21 KB Download (105): Inline::Java::PerlInterpreter Download

Added: January 17, 2010 | Visits: 845

Pod::Dsr Pod::Dsr is a Perl module Convert POD data to formatted DSR input SYNOPSIS use Pod::Dsr; my $parser = Pod::Dsr->new (release => $VERSION, section => 8); # Read POD from STDIN and write to STDOUT. $parser->parse_from_filehandle; # Read POD from file.pod and write to file.1.... Platforms: *nix

License: Freeware Size: 102.4 KB Download (98): Pod::Dsr Download

Added: May 22, 2010 | Visits: 1.057

Math::BigInt Math::BigInt is an arbitrary size integer/float math package. SYNOPSIS use Math::BigInt; # or make it faster: install (optional) Math::BigInt::GMP # and always use (it will fall back to pure Perl if the # GMP library is not installed): # will warn if Math::BigInt::GMP cannot be found... Platforms: *nix

License: Freeware Size: 194.56 KB Download (90): Math::BigInt Download

Added: May 24, 2010 | Visits: 842

Fuzzball MUCK Fuzzball MUCK project is an advanced MUD server originally based on tinyMuck. Fuzzball Muck is a networked multi-user MUD chat server. It is user-extensible, and newer versions support advanced features such as GUI dialogs, through close client-server cooperation with Trebuchet or other clients... Platforms: *nix

License: Freeware Size: 1.6 MB Download (100): Fuzzball MUCK Download

Added: January 15, 2010 | Visits: 763

rpnKalc rpnKalc is a very simple rpn (reverse polish notation) calculator. Be warned I know very little about math and programming. Do not use for anything important such as money. I am posting this in hope that i can get feedback on usability (things like keyboard commands) and if it functions proper.... Platforms: *nix

License: Freeware Size: 12.29 KB Download (100): rpnKalc Download

Added: March 15, 2010 | Visits: 1.205

Sequence Analysis Sequence Analysis project is a collage of coding projects which I have written over the past several years for various clients in my work as a bioinformatics consultant. These clients have graciously allowed me to release these works into the public domain as freeware for Macintosh OS X in... Platforms: *nix

License: Freeware Size: 2.3 MB Download (122): Sequence Analysis Download

Added: January 25, 2010 | Visits: 1.122

ClassicStumbler ClassicStumbler is a wireless AirPort network utility that allows you to:At-a-glance network condition cuesOptional automatic data refreshDetailed network informationToggle merging of unique base station SSIDsJoin networks from within the applicationText-only mode for increased speed and utility Platforms: Mac

License: Freeware Download (116): ClassicStumbler Download

< 1 2 3 4 5 >