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 49.592.227 Times

Loader Component Tutorial software
Filter: All | Freeware | Demo
 

Loader Component Tutorial

< 1 2 3 4 5 > 
Added: June 07, 2010 | Visits: 2.094

Test::Unit::Tutorial Test::Unit::Tutorial is a Perl module that contains a tutorial on unit testing. SYNOPSIS perldoc Test::Unit::Tutorial Here should be extensive documentation on what unit testing is, why it is useful, and how to do it with the Test::Unit collection of modules. Sorry for not implementing...



Platforms: *nix

License: Freeware Size: 45.06 KB Download (243): Test::Unit::Tutorial Download

Added: March 02, 2010 | Visits: 1.562

Chatbot::Alpha::Tutorial Chatbot::Alpha::Tutorial is a beginners guide to Chatbot::Alpha 2.x. INTRODUCTION What is Chatbot::Alpha? Chatbot::Alpha is a Perl module for reading and processing Alpha code. Alpha code is a command-driven response language, primarily used for chatterbots. The language format is quite...





Platforms: *nix

License: Freeware Size: 30.72 KB Download (108): Chatbot::Alpha::Tutorial Download

Added: July 04, 2010 | Visits: 1.615

OpenInteract2::Manual::Tutorial OpenInteract2::Manual::Tutorial is a Perl module that will teach learn you how to create and modify a package. SYNOPSIS This tutorial will show you the different methods for creating a package and how to maintain them. CREATING THE PACKAGE A word on the example For our example were...


Platforms: *nix

License: Freeware Size: 931.84 KB Download (98): OpenInteract2::Manual::Tutorial Download

Added: September 17, 2010 | Visits: 1.035

POE::Component::Player::Musicus POE::Component::Player::Musicus is a POE wrapper for the musicus audio player. SYNOPSIS use POE qw(Component::Player::Musicus); $musicus = POE::Component::Player::Musicus->new(); $musicus->play("test.mp3"); POE::Kernel->run(); This POE component is used to manipulate the musicus player...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (91): POE::Component::Player::Musicus Download

Added: August 16, 2010 | Visits: 851

POE::Component::OSCAR POE::Component::OSCAR is a POE component for the Net::OSCAR module. SYNOPSIS use POE qw(Component::OSCAR); [ ... POE set up ... ] sub _start { # start an OSCAR session $oscar = POE::Component::OSCAR->new(); # start an OSCAR session with automatic throttling of new connections # to...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (89): POE::Component::OSCAR Download

Added: April 01, 2010 | Visits: 1.434

Net::DBus::Tutorial::ExportingObjects Net::DBus::Tutorial::ExportingObjects is a Perl module that contains tutorials on providing a DBus service. This document provides a tutorial on providing a DBus service using the Perl Net::DBus application bindings. This examples in this document will be based on the code from the...


Platforms: *nix

License: Freeware Size: 94.21 KB Download (89): Net::DBus::Tutorial::ExportingObjects Download

Added: September 26, 2010 | Visits: 1.374

Template::Tutorial::Datafile Template::Tutorial::Datafile is a Perl module for creating Data Output Files Using the Template Toolkit. This tutorial gives an overview of the Template Toolkit, showing in particular how to use it to read and write data files in various different formats and styles. It was written by Dave...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (94): Template::Tutorial::Datafile Download

Added: September 26, 2010 | Visits: 1.166

yagg::Tutorial yagg::Tutorial is a Perl module that contains a tutorial for yagg. SYNOPSIS # To use the generator ./yagg -m nonterminals.yg terminals.lg ./output/progs/generate 5 This tutorial will show you how to use yagg, by way of two examples. In the first example, we create a simple logical...


Platforms: *nix

License: Freeware Size: 215.04 KB Download (95): yagg::Tutorial Download

Added: January 09, 2010 | Visits: 929

POE::Component::DebugShell::Jabber POE::Component::DebugShell::Jabber is a Perl component to allow interactive peeking into a running POE application via Jabber. SYNOPSIS use POE::Component::DebugShell::Jabber; POE::Component::DebugShell::Jabber->spawn( jabber_package => POE::Component::Jabber::Client::XMPP, jabber => {...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (88): POE::Component::DebugShell::Jabber Download

Added: July 27, 2010 | Visits: 1.052

POE::Component::Player::Xmms POE::Component::Player::Xmms is a wrapper for the Xmms player. SYNOPSIS use POE qw(Component::Player::Xmms); POE::Component::Player::Xmms->spawn({ alias => xmms }); $kernel->post(xmms => play => test.mp3); POE::Kernel->run(); This component is used to manipulate the Xmms player from...


Platforms: *nix

License: Freeware Size: 95.23 KB Download (92): POE::Component::Player::Xmms Download

Added: February 16, 2010 | Visits: 875

POE::Component::NomadJukebox POE::Component::NomadJukebox is an event-based contol of Nomad Jukebox players. SYNOPSIS use POE qw(COmponent::NomadJukebox); use Data::Dumper; POE::Session->create( inline_states => { _start => sub { POE::Component::NomadJukebox->create({ alias => njb }); }, njb_started => sub {...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (88): POE::Component::NomadJukebox Download

Added: April 23, 2010 | Visits: 1.054

POE::Component::Player::Slideshow POE::Component::Player::Slideshow is a wrapper for the qiv application. SYNOPSIS use POE qw(Component::Player::Slideshow); $mp = POE::Component::Player::Slideshow->new(); $mp->play("/tmp/pix"); POE::Kernel->run(); This component is used to manipulate a slideshow viewer from within a...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (92): POE::Component::Player::Slideshow Download

Added: April 02, 2010 | Visits: 1.096

POE::Component::Player::Mpg123 SYNOPSIS use POE qw(Component::Player::Mpg123); $mp = POE::Component::Player::Mpg123->new(); $mp->play("/tmp/test.mp3"); POE::Kernel->run(); This component is used to manipulate the mpg123 player from within a POE application. The less common but open-source mpg321 has also been tested....


Platforms: *nix

License: Freeware Size: 7.17 KB Download (103): POE::Component::Player::Mpg123 Download

Added: April 16, 2010 | Visits: 1.005

POE::Component::Enc::Mp3 POE::Component::Enc::Mp3 is a mp3 encoder wrapper. SYNOPSIS use POE qw(Component::Enc::Mp3); $mp3 = POE::Component::Enc::Mp3->new($bitrate => 160); $mp3->enc("/tmp/tst.wav"); POE::Kernel->run(); This POE component encodes raw audio files into mp3 format. It is merely a wrapper for the...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (122): POE::Component::Enc::Mp3 Download

Added: May 26, 2010 | Visits: 1.802

Catalyst::Manual::Tutorial::AdvancedCRUD Catalyst::Manual::Tutorial::AdvancedCRUD is a Catalyst Tutorial - Part 8: Advanced CRUD. Add a Form Creation Helper Method Open lib/MyApp/Controller/Books.pm in your editor and add the following method: =head2 make_book_widget Build an HTML::Widget form for book creation and updates...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (98): Catalyst::Manual::Tutorial::AdvancedCRUD Download

Added: June 19, 2010 | Visits: 1.042

PoJoe Component Libraries PoJoe Component Libraries project is a set of Java POJO components, originally developed for OSMQ. Developers have found these components useful in building robust enterprise applications. Of note are: a FIFO queue that utilizes memory until a size threshold is reached, paging overflow elements...


Platforms: *nix

License: Freeware Size: 890.88 KB Download (90): PoJoe Component Libraries Download

Added: October 11, 2010 | Visits: 1.606

XML::Smart::Tutorial XML::Smart::Tutorial is a Perl module with tutorials and examples for XML::Smart. SYNOPSIS This document is a tutorial for XML::Smart and shows some examples of usual things..


Platforms: *nix

License: Freeware Size: 50.18 KB Download (118): XML::Smart::Tutorial Download

Added: August 21, 2010 | Visits: 1.214

DateTime::Format::Builder::Tutorial DateTime::Format::Builder::Tutorial is a quick class on using Builder. CREATING A CLASS As most people who are writing modules know, you start a package with a package declaration and some indication of module version: package DateTime::Format::ICal; our $VERSION = 0.04; After that, you...


Platforms: *nix

License: Freeware Size: 48.13 KB Download (101): DateTime::Format::Builder::Tutorial Download

Added: November 13, 2010 | Visits: 1.280

Jifty::Manual::Tutorial Jifty::Manual::Tutorial is a Perl module for Zero to Jifty in a Jiffy. This tutorial should give you everything you need to build your first application with Jifty. HOW TO The requirements Heres what you need to have installed -- at least when we write it. Installing Jifty No bones...


Platforms: *nix

License: Freeware Size: 532.48 KB Download (101): Jifty::Manual::Tutorial Download

Added: June 04, 2010 | Visits: 1.464

Rose::DB::Object::Tutorial Rose::DB::Object::Tutorial is a guided tour of the basics of Rose::DB::Object. INTRODUCTION This document provides a step-by-step introduction to the Rose::DB::Object module distribution. It demonstrates all of the important features using a semi-realistic example database. This tutorial does...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (97): Rose::DB::Object::Tutorial Download

< 1 2 3 4 5 >