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

Synopsis Inc software
Filter: All | Freeware | Demo
 

Synopsis Inc

< 1 2 3 4 5 
Added: October 07, 2010 | Visits: 1.264

PDL::Tips PDL::Tips is a Perl module with small tidbits of useful arcana. Programming tidbits and such. SYNOPSIS use PDL; # Whatever happens here. This page documents useful idioms, helpful hints and tips for using Perl Data Language v2.0. Help Use help help within perldl or the pdldoc program...



Platforms: *nix

License: Freeware Size: 2.1 MB Download (97): PDL::Tips Download

Added: October 19, 2010 | Visits: 831

UNIVERSAL::derived_classes SYNOPSIS require UNIVERSAL::derived_classes; package A; package B; @ISA = qw( A ); package C; @ISA = qw( B ); package main; my @derived_classes = A->derived_classes; # B, C my @derived_classes_reversed = A->derived_classes_reversed; # C, B UNIVERSAL::derived_classes provides the...





Platforms: *nix

License: Freeware Size: 3.07 KB Download (97): UNIVERSAL::derived_classes Download

Added: June 15, 2010 | Visits: 987

Tk::NumEntry Tk::NumEntry is a numeric Entry widget with inc. & dec. Buttons. SYNOPSIS use Tk::NumEntry; $parent->NumEntry(?-option=>value, ...?); Tk::NumEntry defines a widget for entering integer numbers. The widget also contains buttons for increment and decrement. Tk::NumEntry supports all the...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (96): Tk::NumEntry Download

Added: May 05, 2010 | Visits: 870

HyperWave::CSP SYNOPSIS use HyperWave::CSP; $server = HyperWave::CSP->New("my.hyperwave.server"); $server->quit; HyperWave is a class implementing a simple HyperWave client in Perl. CONSTRUCTOR new ( [ HOST [, PORT [, USERNAME [, PASSWORD [, ENCRYPT [, LANGUAGE ] ] ] ] ] ] ) This is the constructor...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (96): HyperWave::CSP Download

Added: February 27, 2010 | Visits: 969

Config::Fast Config::Fast is an extremely fast configuration file parser. SYNOPSIS # default config format is a space-separated file company "Supercool, Inc." support nobody@nowhere.com # and then in Perl use Config::Fast; %cf = fastconfig; print "Thanks for visiting $cf{company}!n"; print...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (96): Config::Fast Download

Added: November 13, 2010 | Visits: 1.095

Module::Install Module::Install is a standalone, extensible Perl module installer. SYNOPSIS In your Makefile.PL: (Recommended Usage) # Load the Module::Install bundled in ./inc/ use inc::Module::Install; # Define metadata name Your-Module; all_from lib/Your/Module.pm; # Specific dependencies...


Platforms: *nix

License: Freeware Size: 79.87 KB Download (95): Module::Install Download

Added: August 18, 2010 | Visits: 792

File::RsyncP::Digest File::RsyncP::Digest is a Perl interface to rsync message digest algorithms. SYNOPSIS use File::RsyncP::Digest; $rsDigest = new File::RsyncP::Digest; # specify rsync protocol version (default is <= 26 -> buggy digests). $rsDigest->protocol(version); # file MD4 digests...


Platforms: *nix

License: Freeware Size: 153.6 KB Download (95): File::RsyncP::Digest Download

Added: February 14, 2010 | Visits: 998

Jabber::Connection SYNOPSIS # client connection: my $c = new Jabber::Connection( server => jabber.org, log => 1, ); # component connection: # my $c = new Jabber::Connection( # server => localhost:5700, # localname => comp.localhost, # ns => jabber:component:accept, # log => 1, # debug => 1, # );...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (95): Jabber::Connection Download

Added: January 03, 2010 | Visits: 955

XML::TiePYX XML::TiePYX is a Perl module to read or write XML data in PYX format via tied filehandle SYNOPSIS use XML::TiePYX; tie *XML,XML::TiePYX,file.xml open IN,file.xml or die $!; tie *XML,XML::TiePYX,*IN,Condense=>0; my $text=< tag xmlns="http://www.omsdev.com" >text< /tag >; tie...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (95): XML::TiePYX Download

Added: August 20, 2008 | Visits: 786

UNA for OS X UNA is a real-time collaborative development environment for software engineers, developed by N-BRAIN, Inc. UNA features a real-time collaborative editor, whiteboard, notes, and chat system, along with all the standard features of programmer editors, including external tool integration, search...


Platforms: Windows, *nix

License: Demo Cost: $300.00 USD Size: 45.46 MB Download (94): UNA for OS X Download

Added: August 21, 2008 | Visits: 832

UNA for Windows UNA is a real-time collaborative development environment for software engineers, developed by N-BRAIN, Inc. UNA features a real-time collaborative editor, whiteboard, notes, and chat system, along with all the standard features of programmer editors, including external tool integration, search...


Platforms: Windows, *nix

License: Demo Cost: $300.00 USD Size: 69.17 MB Download (94): UNA for Windows Download

Added: May 13, 2010 | Visits: 1.162

Template::Plugin::SSI Template::Plugin::SSI is a plugin to use SSI in Template Toolkit (wrapper for CGI::SSI). SYNOPSIS [% USE SSI %] # virtual include of the file /foo/bar.inc.html [% SSI.include(virtual, /foo/bar.inc.html) %] # file include of the file /foo/bar.inc.html [% SSI.include(file,...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (94): Template::Plugin::SSI 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: April 08, 2010 | Visits: 758

SQL::Preproc SQL::Preproc is a Perl module to embed SQL in your Perl (ala SQL preprocessors). SYNOPSIS use SQL::Preproc subclass => Chart, emit => 1, keepsql => 1, syntax => [ Teradata ], pponly => 1, relax => 1, alias => 1, debug => 1; use DBI; use DBI qw(:sql_types); use...


Platforms: *nix

License: Freeware Size: 52.22 KB Download (94): SQL::Preproc Download

Added: April 10, 2010 | Visits: 758

Chart::EPS_graph::Test SYNOPSIS From the CLI, call as below where /some/dir/ is any directory you have permission to write to. perl -e "use Chart::EPS_graph::Test; print Chart::EPS_graph::Test->full_test(/some/dir);" From anywhere else call... use Chart::EPS_graph::Test; print...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (94): Chart::EPS_graph::Test Download

Added: August 12, 2010 | Visits: 1.147

NetPacket::IP SYNOPSIS use NetPacket::IP; $ip_obj = NetPacket::IP->decode($raw_pkt); $ip_pkt = NetPacket::IP->encode($ip_obj); $ip_data = NetPacket::IP::strip($raw_pkt); NetPacket::IP provides a set of routines for assembling and disassembling packets using IP (Internet Protocol). Methods...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (94): NetPacket::IP Download

Added: January 18, 2010 | Visits: 655

Text::TemplateFill Text::TemplateFill is a Perl module for formatting of reports with templates from files, use for I18N. SYNOPSIS use Text::TemplateFill; my $tmpl = new Text::TemplateFill; $tmpl->SetOpt(BaseDir => "paras/$Country"); $tmpl->SetOpt(ErrorFunction => &LogMsg, LineTerminator => "rn"); # Must...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (93): Text::TemplateFill Download

Added: May 12, 2010 | Visits: 875

Devel::Peek SYNOPSIS use Devel::Peek; Dump( $a ); Dump( $a, 5 ); DumpArray( 5, $a, $b, ... ); mstat "Point 5"; Devel::Peek contains functions which allows raw Perl datatypes to be manipulated from a Perl script. This is used by those who do XS programming to check that the data they are sending from...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (93): Devel::Peek Download

Added: March 04, 2010 | Visits: 914

Apache2::ExplorerDestroyer Apache2::ExplorerDestroyer is Kill Bills Browser with Google AdSense. SYNOPSIS PerlSetVar GoogleScriptFile /home/johndoe/public_html/firefox_ad.inc # files that arent index.* are explorerdestroyer.com level 1 pages < FilesMatch "(?:(?!index).....|^.{0,4})." > PerlOutputFilterHandler...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): Apache2::ExplorerDestroyer Download

Added: July 24, 2010 | Visits: 1.086

Mail::Abuse::Report SYNOPSIS use Mail::Abuse::Report; my $r = new Mail::Abuse::Report ( -text => $report_text, -reader => $reader, -filters => [ $f1, $f2, ... ], -parsers => [ $i1, $i2, ... ], -processors => [ $p1, $p2, ... ], -debug => 1, -config => $config_file, ); This class encapsulates an abuse...


Platforms: *nix

License: Freeware Size: 91.14 KB Download (93): Mail::Abuse::Report Download

< 1 2 3 4 5