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

Write Perl Subroutines freeware
Filter: All | Freeware | Demo
 

Write Perl Subroutines

1 2 3 4 5 > 
Added: July 07, 2010 | Visits: 940

Inline::C Inline::C is a Perl module that can Write Perl Subroutines in C. Inline::C is a module that allows you to write Perl subroutines in C. Since version 0.30 the Inline module supports multiple programming languages and each language has its own support module. This document describes how to use... Platforms: *nix

License: Freeware Size: 92.16 KB Download (93): Inline::C Download

Added: August 12, 2010 | Visits: 810

Inline::Ruby Inline::Ruby module can help you write Perl subroutines and classes in Ruby. SYNOPSIS print "9 + 16 = ", add(9, 16), "n"; print "9 - 16 = ", subtract(9, 16), "n"; use Inline Ruby; __END__ __Ruby__ def add(a, b) a + b end def subtract(a, b) a - b end The Inline::Ruby module... Platforms: *nix

License: Freeware Size: 25.6 KB Download (92): Inline::Ruby Download

Added: June 15, 2010 | Visits: 1.065

Inline::CPP Inline::CPP is a Perl module that can write Perl subroutines and classes in C++. SYNOPSIS use Inline CPP; print "9 + 16 = ", add(9, 16), "n"; print "9 - 16 = ", subtract(9, 16), "n"; __END__ __CPP__ int add(int x, int y) { return x + y; } int subtract(int x, int y) { return x -... Platforms: *nix

License: Freeware Size: 24.58 KB Download (90): Inline::CPP Download

Added: February 02, 2010 | Visits: 1.130

Inline::Java Inline::Java lets you write Perl classes in Java and wrap/use existing Java classes. The project is an ILSM (Inline Language Support Module) for Java 2, and is part of the Inline family of modules.. Platforms: *nix

License: Freeware Size: 94.21 KB Download (98): Inline::Java Download

Added: October 05, 2010 | Visits: 940

Inline::SLang::Changes Inline::SLang::Changes is a Perl module with changes to previous versions of the module. Inline::SLang lets you write Perl subroutines in S-Lang. It dynamically translates the parameters and return values into native data types for both languages (or into Perl classes that are used to represent... Platforms: *nix

License: Freeware Size: 112.64 KB Download (96): Inline::SLang::Changes Download

Added: March 13, 2010 | Visits: 1.605

GCJ::Cni::Examples GCJ::Cni::Examples is a Perl module with examples of how to use GCJs CNI interface to write Perl Modules in Java. EXAMPLES Writing Treaded modules in Java One benefit of using GCJ is that it takes advantage of POSIX threading. This is nice since Perls threading model is, shall we say, less... Platforms: *nix

License: Freeware Size: 20.48 KB Download (105): GCJ::Cni::Examples Download

Added: August 22, 2010 | Visits: 937

Tie::Gzip Tie::Gzip is a Perl module that can read and write gzip compressed files. SYNOPSIS require Tie::Gzip; tie filehandle, Tie::Gzip tie filehandle, Tie::Gzip, mode, filename tie filehandle, Tie::Gzip, filename tie filehandle, Tie::Gzip, %options tie filehandle, Tie::Gzip, mode, filename,... Platforms: *nix

License: Freeware Size: 71.68 KB Download (128): Tie::Gzip Download

Added: May 13, 2010 | Visits: 1.269

Convert::PEM Convert::PEM is Perl module that read/write encrypted ASN.1 PEM files. SYNOPSIS use Convert::PEM; my $pem = Convert::PEM->new( Name => "DSA PRIVATE KEY", ASN => qq( DSAPrivateKey SEQUENCE { version INTEGER, p INTEGER, q INTEGER, g INTEGER, pub_key INTEGER, priv_key INTEGER } ));... Platforms: *nix

License: Freeware Size: 20.48 KB Download (100): Convert::PEM Download

Added: January 05, 2010 | Visits: 847

dtRdr::Annotation::IO::YAML dtRdr::Annotation::IO::YAML is a Perl module to read/write annotations from/to yml files. Methods init $io->init; items_for Return the hashrefs for a given book. @items = $io->items_for($book); insert $io->insert($object, %args); delete $io->delete($object, %args); update... Platforms: *nix

License: Freeware Size: 2.8 MB Download (109): dtRdr::Annotation::IO::YAML Download

Added: August 27, 2010 | Visits: 1.182

Fortran::Format Fortran::Format is a Perl module to read and write data according to a standard Fortran 77 FORMAT. SYNOPSYS use Fortran::Format; my $f = Fortran::Format->new("2(N: ,I4,2X)"); print $f->write(1 .. 10); # prints the following: # N: 1 N: 2 # N: 3 N: 4 # N: 5 N: 6 # N: 7 N: 8 # N: 9 N:... Platforms: *nix

License: Freeware Size: 18.43 KB Download (167): Fortran::Format Download

Added: January 13, 2010 | Visits: 986

Image::ExifTool Image::ExifTool is a Perl module that can read and write meta information. SYNOPSIS use Image::ExifTool ImageInfo; # ---- Simple procedural usage ---- # Get hash of meta information tag names/values from an image $info = ImageInfo(a.jpg); # ---- Object-oriented usage ---- # Create a... Platforms: *nix

License: Freeware Size: 1024 KB Download (147): Image::ExifTool Download

Added: January 24, 2010 | Visits: 1.101

MIDI MIDI is a Perl module that can read, compose, modify, and write MIDI files. SYNOPSIS use MIDI; use strict; use warnings; my @events = ( [text_event,0, MORE COWBELL], [set_tempo, 0, 450_000], # 1qn = .45 seconds ); for (1 .. 20) { push @events, [note_on , 90, 9, 56, 127], [note_off,... Platforms: *nix

License: Freeware Size: 62.46 KB Download (100): MIDI Download

Added: August 06, 2010 | Visits: 1.212

PBJ::JNI PBJ::JNI is a Perl module with full access to and from Java virtual machine from Perl. SYNOPSIS use PBJ::JNI::JavaVM; my ($env, $jvm, @vm_opts); my ($cls, $fid, $mid, $out); # Create the Java VM @vm_opts = ("-Xrs", "-Xcheck:jni"); $jvm = new PBJ::JNI::JavaVM(); $env =... Platforms: *nix

License: Freeware Size: 14.34 KB Download (93): PBJ::JNI Download

Added: October 28, 2013 | Visits: 577

AdWords API Perl Client Library Google's AdWords API service lets developers design computer programs that interact directly with the AdWords platform. With these applications, advertisers and third parties can more efficiently -- and creatively -- manage their large or complex AdWords accounts and campaigns. AdWords API Perl... Platforms: Mac

License: Freeware Size: 3.03 MB Download (43): AdWords API Perl Client Library Download

Added: September 23, 2010 | Visits: 782

Perl6::Gather Perl6::Gather is a Perl module that implements the Perl 6 gather/take control structure in Perl 5. SYNOPSIS use Perl6::Gather; @list = gather { # Try to extract odd numbers and odd number names... for (@data) { if (/(one|three|five|nine)$/) { take qq{$_}; } elsif (/^d+$/ && $_ %2) {... Platforms: *nix

License: Freeware Size: 5.12 KB Download (95): Perl6::Gather Download

Added: January 08, 2010 | Visits: 667

GCJ::Cni GCJ::Cni is a Perl module for CNI Bindings to GNU Compiler for Java. SYNOPSIS Using this module in Perl is similar to using it in C++: use GCJ::Cni; if ( GCJ::Cni::JvCreateJavaVM(undef) ) { die "Failed to initialize JavaVM, cannot continue..."; } unless ( my $thread_obj =... Platforms: *nix

License: Freeware Size: 20.48 KB Download (100): GCJ::Cni Download

Added: April 27, 2010 | Visits: 624

Gtk2::SourceView Gtk2::SourceView provides Perl wrappers for the GtkSourceView widget. Perl bindings to the 1.x series of the GtkSourceView widget libraries. This module allows you to write Perl applications that utilize the GtkSourceView library for source editing and printing.. Platforms: *nix

License: Freeware Size: 16.38 KB Download (88): Gtk2::SourceView Download

Added: August 02, 2010 | Visits: 792

eximspamy eximspamy is a spam filter framework that uses exims perl extension. It is supposed to be solution which requires no maintenance and will use only very little cpu power. I am using this on a pentium 100 Mhz server with no problems. eximspamy processes or rejects the mail in one go. That is:... Platforms: *nix

License: Freeware Size: 4.1 KB Download (94): eximspamy Download

Added: November 24, 2010 | Visits: 966

Tie::Layers SYNOPSIS ##### # Subroutines # use Tie::Layers qw(is_handle config); $yes = is_handle( $file_handle ); ($key, $old_value) = config(%options, $key); ($key, $old_value) = config(%options, $key => $new_value ); #### # Config default startup options # @old_options_list =... Platforms: *nix

License: Freeware Size: 71.68 KB Download (90): Tie::Layers Download

Added: March 15, 2010 | Visits: 873

Perltidy Perltidy is a Perl script which indents and reformats Perl scripts to make them easier to read. If you write Perl scripts, or spend much time reading them, you will probably find it useful. Configuration Files While style preferences vary, most people would agree that it is important to... Platforms: *nix

License: Freeware Size: 317.44 KB Download (94): Perltidy Download

1 2 3 4 5 >