Tag «vt102 class»: downloads
Search results for «vt102 class»:
Term::VT102 0.82 by Andrew Wood
Term::VT102 is a class to emulate a DEC VT102 terminal.
SYNOPSIS
use Term::VT102;
my $vt = Term::VT102->new ('cols' => 80, 'rows' => 24);
while () { $vt->process ($_); }
The VT102 class provides emulation of most of the functions of a DEC VT102 terminal. Once initialised, data pas…
Eterm 0.9.4 by Michael Jennings
Eterm is a vt102 terminal emulator intended as a replacement for xterm. It is designed with a Freedom of Choice philosophy, leaving as much power, flexibility, and freedom as possible in the hands of the user.
Eterm is designed to look good and work well, but takes a feature-rich approach rather…
ROTE 0.2.8 by Bruno Takahashi C. de Oliveira
ROTE is a simple C library for VT102 terminal emulation. It allows the programmer to set up virtual 'screens' and send them data.
The virtual screens will emulate the behavior of a VT102 terminal, interpreting escape sequences, control characters and such. The library supports ncurses as well so…
Class::DBI::Query 3.0.15 by Michael G Schwern
Class::DBI::Query is a Perl module with deprecated SQL manager for Class::DBI.
SYNOPSIS
my $sth = Class::DBI::Query
->new({
owner => $class,
sqlname => $type,
essential => @columns,
…
PHP ImageMagick Class 1.0 by Daniel Eiland
PHP ImageMagick Class is a class for processing images with ImageMagick. This PHP Class makes it possible to process images in a very easy way.
To scale an image to 640x480 when it's bigger youy can do this:
include('imagemagick.class.php');
$im = new Imagemagick($targetdir);
$im->Resize(640…
DBIx::Class::CDBICompat 0.07002 by Matt S. Trout
DBIx::Class::CDBICompat is a Class::DBI Compatibility layer.
SYNOPSIS
use base qw/DBIx::Class/;
__PACKAGE__->load_components(qw/CDBICompat Core DB/);
DBIx::Class features a fully featured compatibility layer with Class::DBI to ease transition for existing CDBI users. In fact, this clas…
Class::Adapter::Builder 1.02 by Adam Kennedy
Class::Adapter::Builder is a Perl module that can generate Class::Adapter classes.
SYNOPSIS
package My::Adapter;
use strict;
use Class::Adapter::Builder
ISA => 'Specific::API',
METHODS => [ qw{foo bar baz} ],
method => 'different_method';
1;
Clas…
Class::Cloneable 0.03 by Stevan Little
Class::Cloneable is a base class for Cloneable objects.
SYNOPSIS
package MyObject;
our @ISA = ('Class::Cloneable');
# calling clone on an instance of MyObject
# will give you full deep-cloning functionality
This module provides a flexible base class for building objects with c…
Curses::UI::Widget 0.95 by Maurice Makaay
Curses::UI::Widget is a base class for all widgets.
CLASS HIERARCHY
Curses::UI::Widget - base class
SYNOPSIS
This class is not used directly by somebody who is building an application using Curses::UI. It's a base class that is expanded by the Curses::UI widgets. See WIDGET STRUCTURE be…
Class::Phrasebook 0.88 by Rani Pinchuk
Class::Phrasebook is a Perl module that implements the Phrasebook pattern.
SYNOPSIS
use Class::Phrasebook;
my $pb = new Class::Phrasebook($log, "test.xml");
$pb->load("NL"); # using Dutch as the language
$phrase = $pb->get("ADDRESS",
{ street => "Chaim Levanon…
Class::Std::Utils 0.0.2 by Damian Conway
Class::Std::Utils is a Perl module for utility subroutines for building "inside-out" objects.
SYNOPSIS
use Class::Std::Utils;
# Constructor for anonymous scalars...
my $new_object = bless anon_scalar(), $class;
# Convert an object reference into a unique ID number...
…
Class::DBI::Template::Stash 0.03 by Jason Kohles
Class::DBI::Template::Stash is a Perl module with Template::Stash subclass for Class::DBI::Template.
SYNOPSIS
package Music::DBI;
use base 'Class::DBI';
use Class::DBI::Template;
There is nothing you need to do for this module, it is setup for you when you use Class::DBI::Template.…
Class::Meta::Type 0.53 by David Wheeler
Class::Meta::Type is a Perl module for data type validation and accessor building.
SYNOPSIS
package MyApp::TypeDef;
use strict;
use Class::Meta::Type;
use IO::Socket;
my $type = Class::Meta::Type->add( key => 'io_socket',
desc => 'IO::So…
Class::DBI::ConceptSearch 0.04 by Allen Day
Class::DBI::ConceptSearch is a Perl module to retrieve Class::DBI aggregates from high-level conceptual searches.
SYNOPSIS
my $cs = Class::DBI::ConceptSearch->new(xml => $config); #see CONFIGURATION
$cs->use_wildcards(1);
$cs->use_implicit_wildcards(1);
$cs->use_search_ilike(1);
$cs->…
DBIx::Class::Schema::Loader::RelBuilder 0.03007 by Brandon Black
DBIx::Class::Schema::Loader::RelBuilder is a Perl module that builds relationships for DBIx::Class::Schema::Loader.
This class builds relationships for DBIx::Class::Schema::Loader. This is module is not (yet) for external use.
METHODS
new
Arguments: schema_class (scalar), fk_info (hashre…
MyPageKit::Common 1.18 by T.J. Mather and Boris Zentner
MyPageKit::Common is a Perl model class containing code common across site.
This class contains methods that are common across the site, such as authentication and session key generation. This particular class is an example class that is used for the old pagekit.org website. It is derived from Ap…
Class::Interfaces 0.04 by Stevan Little
Class::Interfaces is a Per module for defining interface classes inline.
SYNOPSIS
# define some simple interfaces
use Class::Interfaces (
Serializable => [ 'pack', 'unpack' ],
Printable => [ 'toString' ],
Iterable => [ 'iterator' ],
Iterator => [ 'ha…
Class::Date 1.1.9 by Szabo Balazs
Class::Date is a perl module, which provides a simple date type for perl.
You can create new Class::Date objects with a constructor from different scalar formats, array refs, and hash refs, and then you can easily manipulate it by the builtin "+" and "-" operators (e.g., $date=date([2001,03,15])+…
Class::CGI 0.20 by Curtis Poe
Class::CGI is a Perl module to fetch objects from your CGI object.
SYNOPSIS
use Class::CGI
handlers => {
customer_id => 'My::Customer::Handler'
};
my $cgi = Class::CGI->new;
my $customer = $cgi->param('customer_id');
my $name = $cust…
Class::DBI::DataMigration::Mapping 0.02 by Dan Friedman
Class::DBI::DataMigration::Mapping is an abstract parent class for objects that map a single column in a single row from the source database to the target database.
Synopsis
use Class::DBI::DataMigration::Mapping;
# ... Later, when building $mappings hashref for use by a
# Class::DBI::D…
Related:
Featured Software
jEdit 4.3 pre8
jEdit is an Open Source text editor written in Java
Opera 9.02
Surf the Internet in a safer, faster, and easier way with Opera browser
GNU Aspell 0.60.4
GNU Aspell is a Free and Open Source spell checker designed to eventually replace Ispell
- Communications
- Database
- Desktop Environment
- Games
- Internet
- Multimedia
- Office
- Programming
- Science and Engineering
- System
- Text Editing&Processing
