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

Numeric Module Use freeware
Filter: All | Freeware | Demo
 

Numeric Module Use

1 2 3 4 5 > 
Added: March 13, 2010 | Visits: 732

Devel::Modlist Devel::Modlist is a Perl extension to collect module use information. SYNOPSIS perl -d:Modlist script.pl The Devel::Modlist utility is provided as a means by which to get a quick run-down on which libraries and modules are being utilized by a given script. Just as compiler systems like gcc...



Platforms: *nix

License: Freeware Size: 8.19 KB Download (92): Devel::Modlist Download

Added: May 10, 2013 | Visits: 411

min/max "peaks" with Numeric Given a large one-dimensional array, this script breaks it into blocks of contstant length and compute min and max for each block, the so-called "peaks data".





Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (51): min/max "peaks" with Numeric Download

Added: June 24, 2013 | Visits: 566

Solace Search This module use the global Solace API filter form to enable site-wide search form using the filter UI. It's able of replacing the old legacy Search core module, even use its own forms if enabled.It does do a full usage of Solace API filter form, including the Quick search toolbar feature added...


Platforms: PHP

License: Freeware Size: 10 KB Download (42): Solace Search Download

Added: May 10, 2013 | Visits: 363

Halal Check-Up Base On HalalJakim.gov.my Module: use to inspect halal status for food and beverages within product barcode. Record base on Malaysian Islamic Development Department (JAKIM) databases.


Platforms: Windows, *nix, PHP,

License: Freeware Download (49): Halal Check-Up Base On HalalJakim.gov.my Download

Added: May 10, 2013 | Visits: 282

Parsing the command line The module optparse was a great addition to Python 2.3, since it is much more powerful and easier to use than getopt. Using optparse, writing command-line tools is a breeze. However, the power of optparse comes together with a certain verbosity. This script allows to use optparse with a minimum...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (50): Parsing the command line Download

Added: January 18, 2010 | Visits: 1.665

Chart::Graph::Xrt3d Chart::Graph::Xrt3d is a Perl module for creating 3D graph charts. SYNOPSIS #Include module use Chart::Graph::Xrt3d qw(xrt3d); # Function call xrt3d(%options, @data_set ); This module is unmaintained, it worked with Sitrakas XRT, and hasnt been tested against newer versions. Sitraka...


Platforms: *nix

License: Freeware Size: 245.76 KB Download (169): Chart::Graph::Xrt3d Download

Added: January 18, 2010 | Visits: 1.432

Chart::Graph::Xrt2d Chart::Graph::Xrt2d is a Perl module for creating graph charts. SYNOPSIS #Include module use Chart::Graph::Xrt2d qw(xrt2d); # Function call xrt2d(%options, [%data_options1, @data_set1], [%data_options2, @data_set2], . . ); This module is unmaintained, it worked with Sitrakas XRT,...


Platforms: *nix

License: Freeware Size: 245.76 KB Download (124): Chart::Graph::Xrt2d Download

Added: October 01, 2010 | Visits: 1.191

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: November 24, 2010 | Visits: 1.134

Config::FreeForm Config::FreeForm is a Perl module that provides in-memory configuration data. SYNOPSIS use Config::FreeForm %options; Config::FreeForm provides in-memory configuration data in a free-form manner. Many existing configuration modules attempt to provide some structure to your configuration...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (140): Config::FreeForm Download

Added: October 22, 2010 | Visits: 1.451

Games::Maze::SVG::Manual Games::Maze::SVG::Manual is a Perl module with manual for the Games::Maze::SVG modules. PURPOSE The Games::Maze::SVG module supports the creation of 2-dimensional mazes in an SVG format suitable for printing or playing interactively. This module use the Games::Maze module to perform the...


Platforms: *nix

License: Freeware Size: 35.84 KB Download (104): Games::Maze::SVG::Manual Download

Added: March 27, 2010 | Visits: 1.124

PerlPoint::Tags::Basic PerlPoint::Tags::Basic is a Perl module that declares basic PerlPoint tags. SYNOPSIS # declare basic tags use PerlPoint::Tags::Basic; This module declares several basic PerlPoint tags. Tag declarations are used by the parser to determine if a used tag is valid, if it needs options, if it...


Platforms: *nix

License: Freeware Size: 419.84 KB Download (97): PerlPoint::Tags::Basic Download

Added: July 03, 2010 | Visits: 781

PerlPoint::Parser PerlPoint::Parser Perl module is a PerlPoint Parser. SYNOPSIS # load the module: use PerlPoint::Parser; # build the parser and run it # to get intermediate data in @stream my ($parser)=new PerlPoint::Parser; $parser->run( stream => @stream, files => @files, ); The PerlPoint format,...


Platforms: *nix

License: Freeware Size: 419.84 KB Download (90): PerlPoint::Parser Download

Added: February 09, 2010 | Visits: 880

Pod::Template Pod::Template is a Perl module for building pod documentation from templates. SYNOPSIS ### As a module ### use Pod::Template; my $parser = new Pod::Template; $parser->parse( template => documentation.ptmpl ); print $parser->as_string ### As a script ### $ podtmpl -I dir1 -I dir2...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): Pod::Template Download

Added: January 23, 2010 | Visits: 800

NetAddr::IP NetAddr::IP is a Perl module that can manage IPv4 and IPv6 addresses and subnets. SYNOPSIS use NetAddr::IP qw( Compact Coalesce Zero Ones V4mask V4net :aton :old_storable :old_nth ); my $ip = new NetAddr::IP loopback; print "The address is ", $ip->addr, " with mask ", $ip->mask,...


Platforms: *nix

License: Freeware Size: 97.28 KB Download (98): NetAddr::IP Download

Added: October 22, 2010 | Visits: 753

Acme::JavaTrace Acme::JavaTrace is a Perl module for using Java-like stack traces. SYNOPSIS On the command-line: perl -wMAcme::JavaTrace program_with_strange_errors.pl Inside a module: use Acme::JavaTrace; warn "some kind of non-fatal exception occured"; die "some kind of fatal exception occured";...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (101): Acme::JavaTrace Download

Added: May 17, 2013 | Visits: 518

JS-Kit Echo #D7CX: I pledge that the JS-Kit Echo module will have a full Drupal 7 release on the day that Drupal 7 is released.Integrate the JS-Kit Echo service with your Drupal website. Comments can be displayed in the content area, in a separate block or both. With External Profile Binding authenticated...


Platforms: PHP

License: Freeware Size: 10 KB Download (45): JS-Kit Echo Download

Added: July 15, 2013 | Visits: 409

Solace API his module provides a full API to create SolR complex filters, using a nice AJAX (using AHAH) form. The UI was designed to be used by end-users quite easily, nothing such as views can do, but simple and quite efficient.This module only provides needed API for other modules. If you are an end...


Platforms: PHP

License: Freeware Size: 51.2 KB Download (43): Solace API Download

Added: August 07, 2013 | Visits: 313

FeedAPI Data Deprecated module. Use Feeds instead of FeedAPI + FeedAPI Data for aggregating into Data tables.FeedAPI Data is a FeedAPI processor plugin for storing feed items. You can use it as alternative to the default processor FeedAPI Node.It uses Data module for storing feed items, and Feed Element...


Platforms: PHP

License: Freeware Size: 20.48 KB Download (45): FeedAPI Data Download

Added: August 25, 2013 | Visits: 442

Country Icons This module provides a set of country icons and an API for retrieving and displaying them. It was originally designed for use with the ip2cc module, which stores it's own set of country icons. I wanted to extract these icons from the ip2cc module as it really is additional functionality to that...


Platforms: PHP

License: Freeware Size: 245.76 KB Download (42): Country Icons Download

Added: February 15, 2010 | Visits: 835

Text::Convert::ToImage Text::Convert::ToImage is a Perl module. SYNOPSIS use Text::Convert::ToImage; my $tti = Text::Convert::ToImage->new(); my $length = length($email); if ($length > 150) { $email = "Your text length of $length is too large:"; } my $config = { TEXT => $email ? $email : "y@hn.org",...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (98): Text::Convert::ToImage Download

1 2 3 4 5 >