Main > Free Download Search >

Free express 0.04 software for linux

express 0.04

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 317
Class::Meta::Express 0.04

Class::Meta::Express 0.04


Class::Meta::Express is a Perl module for concise, expressive creation of Class::Meta classes. more>>
Class::Meta::Express is a Perl module for concise, expressive creation of Class::Meta classes.

Synopsis

package My::Contact;
use Class::Meta::Express;

class {
meta contact => ( default_type => string );
has name;
has contact => ( required => 1 );
}

This module provides an interface to concisely yet expressively create classes with Class::Meta. Although I am of course fond of Class::Meta, Ive never been overly thrilled with its interface for creating classes:

package My::Thingy;
use Class::Meta;

BEGIN {
# Create a Class::Meta object for this class.
my $cm = Class::Meta->new( key => thingy );

# Add a constructor.
$cm->add_constructor( name => new );

# Add a couple of attributes with generated accessors.
$cm->add_attribute(
name => id,
is => integer,
required => 1,
);

$cm->add_attribute(
name => name,
is => string,
required => 1,
);

$cm->add_attribute(
name => age,
is => integer,
);

# Add a custom method.
$cm->add_method(
name => chk_pass,
code => sub { return code },
);
$cm->build;
}

This example is relatively simple; it can get a lot more verbose. But even still, all of the method calls were annoying. I mean, whoever thought of using an object oriented interface for declaring a class? (Oh yeah: I did.) I wasnt alone in wanting a more declarative interface; Curtis Poe, with my blessing, created Class::Meta::Declare, which would use this syntax to create the same class:

package My::Thingy;
use Class::Meta::Declare :all;

Class::Meta::Declare->new(
# Create a Class::Meta object for this class.
meta => [
key => thingy,
],
# Add a constructor.
constructors => [
new => { }
],
# Add a couple of attributes with generated accessors.
attributes => [
id => {
type => $TYPE_INTEGER,
required => 1,
},
name => {
required => 1,
type => $TYPE_STRING,
},
age => { type => $TYPE_INTEGER, },
],
# Add a custom method.
methods => [
chk_pass => {
code => sub { return code },
}
]
);

This approach has the advantage of being a bit more concise, and it is declarative, but I find all of the indentation levels annoying; its hard for me to figure out where I am, especially if I have to define a lot of attributes. And finally, everything is a string with this syntax, except for those ugly read-only scalars such as $TYPE_INTEGER. So I cant easily tell where one attribute ends and the next one starts. Bleh.

<<less
Download (0.009MB)
Added: 2006-10-19 License: Perl Artistic License Price:
1105 downloads
Preppi 0.04

Preppi 0.04


Preppi is a simple graphical EPP client for Unix and Linux systems. more>>
Preppi is a simple graphical EPP client for Unix and Linux systems. Preppi is written in Perl and makes use of the GTK+ and GNOME bindings for Perl, and our own EPP libraries.

<<less
Download (0.023MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
988 downloads
VBA Express 1.2

VBA Express 1.2


VBA Express is a frontend for the very popular game emulator VisualBoyAdvance. more>>
VBA Express is a frontend for the very popular game emulator VisualBoyAdvance.

Whats VBA Express? Its First, to configure VisualBoyAdvance (emulator)... EASILY! Graphics, sound, controls (keyboard and joystick), paths (to saves and captures)... You can configure all this without edit VisualBoyAdvance.cfg manually!

Open your Roms (games) with the frontend! You can run the roms with "Play!" button (without using the console command VisualBoyAdvance game.rom).

<<less
Download (1.3MB)
Added: 2006-11-04 License: GPL (GNU General Public License) Price:
1125 downloads
Net::UPS 0.04

Net::UPS 0.04


Net::UPS is an implementation of UPS Online Tools API in Perl.v more>>
Net::UPS is an implementation of UPS Online Tools API in Perl.

SYNOPSIS

use Net::UPS;
$ups = Net::UPS->new($userid, $password, $accesskey);
$rate = $ups->rate($from_zip, $to_zip, $package);
printf("Shipping this package $from_zip => $to_zip will cost you $.2fn", $rate->total_charges);

Net::UPS implements UPS Online Tools API in Perl. In a nutshell, Net::UPS knows how to retrieve rates and service information for shipping packages using UPS, as well as for validating U.S. addresses.

This manual is optimized to be used as a quick reference. If youre knew to Net::UPS, and this manual doesnt seem to help, youre encouraged to read Net::UPS::Tutorial first.

<<less
Download (0.020MB)
Added: 2006-10-24 License: Perl Artistic License Price:
1097 downloads
wmhdaps 0.04

wmhdaps 0.04


wmhdaps goal is to provide a tool for configuration of the Harddisk Active Protection System (HDAPS). more>>
wmhdaps goal is to provide a tool for configuration of the Harddisk Active Protection System (HDAPS) found in some R/G/T thinkpad models.
HDAPS is realized as an acceleration sensor mounted on systemboard and a userspace tool which detects based on acceleration values from sensor shocks and freezes the harddrive(s) until the "shock" is over.
In the current version 0.02 actually is only able to visualize the movements of the notebook as a 3D model based on the acceleration values read from sensor.
Enhancements:
- In Version 0.04 redraws only occur when something changed. This helps to save power. As it doesnt redraw constantly it gives the notbook a chance to enter the power states C3/C4. Nathan Lay kindly contributed the port of wmhdaps for FreeBSD. Use Makefile.FreeBSD to compile on FreeBSD.
<<less
Download (0.091MB)
Added: 2006-10-26 License: GPL (GNU General Public License) Price:
1097 downloads
gpgwrap 0.04

gpgwrap 0.04


gpgwrap is a wrapper for gpg and its --passphrase-fd option. more>>
gpgwrap project is a wrapper for gpg and its --passphrase-fd option.
SYNOPSIS
gpgwrap -V
gpgwrap -P [-v] [-i] [-a] [-p < file >]
gpgwrap -F [-v] [-i] [-a] [-c] [-p < file >] [-o < name >] [--] < file > [< file > ... ]
gpgwrap [-v] [-i] [-a] [-p < file >] [-o < name >] [--] gpg [gpg options]
Version restrictions:
- There is a size limitation: the passphrase should be not larger than some kilobytes (examine the source code for the exact limit).
- gpgwrap allows you to use all characters in a passphrase even 00, but this does not mean that gpg will accept it. gpg may reject your passphrase or may only read a part of it, if it contains characters like 12 (in C also known as n).
- If you set the environment variable GPGWRAP_PASSPHRASE you should take special care with the backslash character, because gpgwrap uses backslash to escape octal numbers, (see option -F). Therefore write backslash itself as octal number: 134.
Enhancements:
- In previous versions, the --passphrase-fd option was appended after --homedir < arg > or --options < arg >.
- Now, --homedir=< arg > and --options=< arg > should also be handled correctly.
<<less
Download (0.015MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1142 downloads
IBM DB2 Express-C 9.5

IBM DB2 Express-C 9.5


IBM DB2 Express-C is a free database for storing and managing relational and XML data. It is free to download, use, distribute and does not have any e... more>> <<less
Download (290967KB)
Added: 2009-04-06 License: Freeware Price: Free
200 downloads
Regexp::Log 0.04

Regexp::Log 0.04


Regexp::Log is a Perl base class for log files regexp builders. more>>
Regexp::Log is a Perl base class for log files regexp builders.

SYNOPSIS

my $foo = Regexp::Log::Foo->new(
format => custom %a %b %c/%d,
capture => [qw( host code )],
);

# the format() and capture() methods can be used to set or get
$foo->format(custom %g %e %a %w/%s %c);
$foo->capture(qw( host code ));

# this is necessary to know in which order
# we will receive the captured fields from the regexp
my @fields = $foo->capture;

# the all-powerful capturing regexp :-)
my $re = $foo->regexp;

while () {
my %data;
@data{@fields} = /$re/; # no need for /o, its a compiled regexp

# now munge the fields
...
}

<<less
Download (0.008MB)
Added: 2007-08-02 License: Perl Artistic License Price:
813 downloads
mediadbs 0.04

mediadbs 0.04


mediadbs is a digital media database system. more>>
mediadbs is a project that aims to produce a flexible database system for tracking and searching for multiple forms of electronic media (eg mp3, divx, ogg) distributed on multiple servers in a local network. It currently only supports mp3 format files.

<<less
Download (0.020MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1102 downloads
SIP Express Router 0.9.6

SIP Express Router 0.9.6


SIP Express Router is a very fast and flexible SIP (RFC3261) server. more>>
SIP Express Router (ser) is a high-performance, configurable, free SIP ( RFC3261 ) server .
SER features an application-server interface, presence support, SMS gateway, SIMPLE2Jabber gateway, RADIUS/syslog accounting and authorization, server status monitoring, FCP security, etc. Web-based user provisioning, serweb, available.
Its performance allows it to deal with operational burdens, such as broken network components, attacks, power-up reboots and rapidly growing user population.
SERs configuration ability meets needs of a whole range of scenarios including small-office use, enterprise PBX replacements and carrier services.
Main features:
- accounting
- digest authentication
- CPL scripts
- ENUM support
- instant messaging
- MySQL support
- PostgreSQL support
- a presence agent
- Radius authentication and accounting
- Diameter authentication
- record routing
- SMS gateway
- Jabber gateway
- NAT traversal support transaction module
- registrar
- user location
SER has been extensively and successfuly tested with many SIP products from other vendors (Microsoft, Cisco, Mitel, snom, Pingtel, Siemens, and many others). It has been powering our SIP services continuously for more than two years.
<<less
Download (2.0MB)
Added: 2006-01-11 License: GPL (GNU General Public License) Price:
1393 downloads
 
Other version of SIP Express Router
SIP Express Router (SER) 0.8.14A high-performance, configurable, free Voice over IP/SIP ...SIP Express Router (SER) is a high-performance, configurable, free Voice
License:Freeware
Download (1.47MB)
197 downloads
Added: 2009-04-19
Net::BGP::Router 0.04

Net::BGP::Router 0.04


Net::BGP::Router is a BGP Router based on Net::BGP. more>>
Net::BGP::Router is a BGP Router based on Net::BGP.

SYNOPSIS

use Net::BGP::Router;
# Constructor
$router = new Net::BGP::Router(
Name => My very own router!,
Policy => new Net::BGP::Policy
);
# Accessor Methods
$router->add_peer($peer,both,$acl);
$router->remove_peer($peer,both);
$router->set_policy($policy);
$router->set_policy($peer,in,$acl);
__top

This module implement a BGP router. It uses Net::BGP objects for the BGP sessions and a Net::BGP::RIB object to store the routes. Policy are handled using a Net::BGP::Policy object.

<<less
Download (0.010MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1189 downloads
conceptRM (Rss Mail) 0.04

conceptRM (Rss Mail) 0.04


ConceptRM (RssMail) is an email client using RSS as a means to deliver the list of email to the user. more>>
ConceptRM (RssMail) project is an email client using RSS as a means to deliver the list of email to the user.
Main features:
- Support pop3 mailbox
- Support for multiple mailboxes (display a preferred format e.g. html as opposed to plain email format)
- multipart email
- email deletion
- RSS 1.0 and 2.0 support
<<less
Download (0.019MB)
Added: 2006-09-12 License: Freeware Price:
1138 downloads
XML::Code 0.04

XML::Code 0.04


XML::Diff is a Perl module for XML DOM-Tree based Diff & Patch Module. more>>
XML::Diff is a Perl module for XML DOM-Tree based Diff & Patch Module.

SYNOPSIS

my $diff = XML::Diff->new();

# to generate a diffgram of two XML files, use compare.
# $old and $new can be filepaths, XML as a string,
# XML::LibXML::Document or XML::LibXML::Element objects.
# The diffgram is a XML::LibXML::Document by default.
my $diffgram = $diff->compare(
-old => $old_xml,
-new => $new_xml,
);

# To patch an XML document, an patch. $old and $diffgram
# follow the same formatting rules as compare.
# The resulting XML is a XML::LibXML::Document by default.
my $patched = $diff->patch(
-old => $old,
-diffgram => $diffgram,
);

This module provides methods for generating and applying an XML diffgram of two related XML files. The basis of the algorithm is tree-wise comparison using the DOM model as provided by XML::LibXML.

The Diffgram is well-formed XML in the XVCS namespance and supports update, insert, delete and move operations. It is meant to be human and machine readable. It uses XPath expressions for locating the nodes to operate on.

<<less
Download (0.017MB)
Added: 2006-09-14 License: Perl Artistic License Price:
1138 downloads
RenderMan 0.04

RenderMan 0.04


RenderMan is a RenderMan binding as a Perl 5.6 module. more>>
RenderMan is a RenderMan binding as a Perl 5.6 module.

SYNOPSIS

use RenderMan;

This RenderMan module implements a Perl 5.6 binding for the BMRT client library (libribout). It fully supports the client library. Therefore, this module has the following limitations: Error Handling callbacks are not implemented, Filter function callbacks are not implemented, and the TransformPoints function does nothing. Also, Blobby is not yet supported by BMRT 2.5.0.8.

The full RenderMan specification is way beyond the scope of this man page. Please refer to the documents below for more information about RenderMan. The Perl binding is identical to the C binding except a few minor points: All "parameterlist"s are passed as a reference to a hash (i.e. %params).

Anywhere that a functions arguments can be terminated by RI_NULL, you can simply choose to not include that RI_NULL argument, which is incredibly nice.
All array, matrix, and basis types are single-dimension arrays of doubles in this Perl binding. The order for 2-dimension types is first-row followed by second-row, etc.

You will typically want to run your RenderMan Perl script and pipe the results into any RenderMan-compliant renderer, such as "rgl", "rendribv", or "rendrib", which all come with the excellent BMRT backage by Larry Gritz.

If using the WinNT version of BMRT, you can specify a filename, "rgl" or "rendrib" as the argument to Begin(); and the output will be sent to a file or automatically piped to "rgl" or "rendrib" since the piping mechanism (and general functionality) of WinNTs command line parser is, uh, limited.

<<less
Download (0.080MB)
Added: 2007-04-23 License: Perl Artistic License Price:
939 downloads
stdnet 0.04

stdnet 0.04


stdnet is a simple C++ framework for building single-threaded or multi-threaded applications which deal with I/O events. more>>
stdnet project is a simple C++ framework for building single-threaded or multi-threaded applications which deal with I/O events. The forms of I/O currently supported include TCP sockets, UDP sockets, and named pipes.

Events can also be generated through timers for handling timeout conditions. The model for the networking I/O is general and powerful such that it could be used with non-internet protocols like LAP-B etc. Also, advanced buffering and queuing classes exist but will be extended.
<<less
Download (0.080MB)
Added: 2006-08-24 License: GPL (GNU General Public License) Price:
1157 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5