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

Inline Muzzleloader Forum freeware
Filter: All | Freeware | Demo
 

Inline Muzzleloader Forum

1 2 3 4 5 > 
Added: November 11, 2010 | Visits: 838

Inline::Octave Inline::Octave module contains inline octave code into your perl. SYNOPSIS use Inline Octave => DATA; $f = jnk1(3); print "jnk1=",$f->disp(),"n"; $c= new Inline::Octave([ [1.5,2,3],[4.5,1,-1] ]); ($b, $t)= jnk2( $c, [4,4],[5,6] ); print "t=",$t->as_list(),"n"; use Data::Dumper; print...



Platforms: *nix

License: Freeware Size: 20.48 KB Download (90): Inline::Octave Download

Added: March 09, 2010 | Visits: 1.484

Inline-API Inline-API is a Perl module that teach you how to bind a programming language to Perl using Inline.pm. SYNOPSIS #!/usr/bin/perl use Inline Foo; say_it(foo); # Use Foo to print "Hello, Foo" __Foo__ foo-sub say_it { foo-my $foo = foo-shift; foo-print "Hello, $foon"; } So you think...





Platforms: *nix

License: Freeware Size: 91.14 KB Download (88): Inline-API Download

Added: January 08, 2010 | Visits: 4.854

Orca Interactive Forum Script Orca Interactive Forum Script is an interactive Web-based forum script that is based on AJAX technology, In the world of accelerating technologies you dont want archaic forum software. You want something new, fresh, classy, stylish and sexy - just like Orca. Orca introduces a new approach to...


Platforms: *nix

License: Freeware Size: 665.6 KB Download (207): Orca Interactive Forum Script Download

Added: November 15, 2010 | Visits: 1.019

Inline-Support Inline-Support is a Perl module created to support information for Inline.pm and related modules. This document contains all of the latest support information for Inline.pm and the recognized Inline Language Support Modules (ILSMs) available on CPAN. SUPPORTED LANGUAGES The most important...


Platforms: *nix

License: Freeware Size: 91.14 KB Download (93): Inline-Support Download

Added: June 17, 2010 | Visits: 1.016

Inline::CPR Inline::CPR is C Perl Run. Embed Perl in C, ala Inline SYNOPSIS #!/usr/local/bin/cpr int main(void) { printf("Hello World, Im running under Perl version %sn", CPR_eval("use Config; $Config{version}") ); return 0; } Is it C? Is it Perl? Its neither, its both. Its CPR! CPR (C Perl...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (102): Inline::CPR Download

Added: July 07, 2010 | Visits: 937

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: May 18, 2010 | Visits: 2.619

WWW Forum WWW Forum is an extremely fast and reliable Web forum that is fully configurable and packed with features. The primary focus is the forum (message board), but many other useful communications features are either already implemented or planned for a future release. These all make a consistent...


Platforms: *nix

License: Freeware Size: 56.32 KB Download (104): WWW Forum Download

Added: October 05, 2010 | Visits: 936

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: September 27, 2010 | Visits: 2.746

Webdesign-Forum.de Toolbar Webdesign-Forum.de Toolbar is a Firefox extension that offers you a Webdesign-Forum.de toolbar. Whats New in This Release: - Firefox: 1.0 – 1.4. Webdesign-Forum.de,Erfahrungsaustausch A?ber Webdesign, Design, Layout, SEO, barrierefreie Seiten und Programmierung - z.B. in PHP, PERL, ASP,...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (112): Webdesign-Forum.de Toolbar Download

Added: March 03, 2010 | Visits: 1.568

Shadowlands Forum Shadowlands Forum is a flexible, friendly, robust chatroom reachable via any telnet client. Shadowlands Forum project uses UNIX username and password for authentication, and includes the authlocal module to authenticate quickly from localhost. Shadowlands Forum is the dedicated, wonderful work...


Platforms: *nix

License: Freeware Size: 266.24 KB Download (107): Shadowlands Forum Download

Added: November 09, 2010 | Visits: 1.097

MKDoc::Text::Structured::Inline MKDoc::Text::Structured::Inline is a Perl module to convert text to HTML without handling block-level tags. SYNOPSIS my $text = some_structured_text(); my $this = MKDoc::Text::Structured::Inline::process ($text); my $that = MKDoc::Text::Structured::Inline::process_entities_only ($text);.


Platforms: *nix

License: Freeware Size: 14.34 KB Download (100): MKDoc::Text::Structured::Inline Download

Added: August 12, 2010 | Visits: 807

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: February 07, 2010 | Visits: 961

Inline::Filters Inline::Filters Perl module contains common source code filters for Inline Modules. Inline::Filters provides common source code filters to Inline Language Modules. Unless youre an Inline module developer, you can just read the next section. Supported Filters This section describes each...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (98): Inline::Filters Download

Added: March 17, 2010 | Visits: 672

Inline::Struct Inline::Struct is a Perl module that manipulate C structures directly from Perl. SYNOPSIS use Inline C => Config => Structs => [Foo]; my $obj = Inline::Struct::Foo->new; $obj->num(10); $obj->str("Hello"); myfunc($obj); __END__ __C__ struct Foo { int num; char *str; }; void...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): Inline::Struct Download

Added: June 15, 2010 | Visits: 1.063

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: January 08, 2010 | Visits: 1.029

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: April 23, 2010 | Visits: 849

Inline::Select Inline::Select contains dynamic selection of ILSM for a package. SYNOPSIS use Inline::Select::Register ( PACKAGE => Calc, Inline => [ Perl => sub {require t/Calc.pm} ] ) ; use Inline::Select::Register ( PACKAGE => Calc, Inline => [ CPP => t/Calc.cpp ] ) ; use Inline::Select::Register...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (100): Inline::Select Download

Added: February 02, 2010 | Visits: 1.128

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: August 22, 2010 | Visits: 880

Inline::Java::Callback Inline::Java::Callback is a callback into Perl from Java. SYNOPSIS use Inline Java => <


Platforms: *nix

License: Freeware Size: 94.21 KB Download (104): Inline::Java::Callback Download

Added: September 08, 2010 | Visits: 721

Inline::SLang::Assoc Inline::SLang::Assoc module contains support for associative arrays. SYNOPSIS use Inline SLang; # you can send hash references to S-Lang print_in_slang( { a => 23, "b b" => "foo" } ); # and get them back from S-Lang $href = get_from_slang(); print "The assoc array contains:n" . join(...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (93): Inline::SLang::Assoc Download

1 2 3 4 5 >