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

Config Lame Encoder freeware
Filter: All | Freeware | Demo
 

Config Lame Encoder

< 1 2 3 4 5 > 
Added: June 06, 2010 | Visits: 575

Config::Scoped Config:Scoped is a feature rich configuration file parser..



Platforms: *nix

License: Freeware Size: 66.56 KB Download (90): Config::Scoped Download

Added: May 24, 2010 | Visits: 711

Rsync::Config::Parser Rsync::Config::Parser is a simple Perl module for Rsync configuration parser. SYNOPSIS use Rsync::Config::Parser; use Rsync::Config; sub main { my $parser = new Rsync::Config::Parser(); my $conf = $parser->parse(/etc/rsyncd.conf); } SUBROUTINES/METHODS new() Class constructor....





Platforms: *nix

License: Freeware Size: 22.53 KB Download (88): Rsync::Config::Parser Download

Added: March 12, 2010 | Visits: 608

Rsync::Config::Renderer Rsync::Config::Renderer is a Perl module for rsync config rendering. SYNOPSIS use Rsync::Config::Renderer; my $renderer = Rsync::Config::Renderer->new( indent => 1, indent_char => "t" ); print $renderer->indent_string, q{foobar}; # prints: " foobar";...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (87): Rsync::Config::Renderer Download

Added: July 15, 2010 | Visits: 904

Rsync::Config::Comment Rsync::Config::Comment is a Perl module with comments as objects. SYNOPSIS my $com1 = new Rsync::Config::Comment(value => this module is private); $com1->to_string(); prints: < TAB >#this module is private SUBROUTINES/METHODS new This class inherits from Rsync::Config::Blank....


Platforms: *nix

License: Freeware Size: 22.53 KB Download (95): Rsync::Config::Comment Download

Added: October 26, 2010 | Visits: 1.052

Rsync::Config::Blank Rsync::Config::Blank is a basic atom object. SUBROUTINES/METHODS new FIXME: constructor to_string returns a stringified version of the comment. name Unused here. Useful for derivated classes, as "name" accessor/mutator. value Unused here. Useful for derivated classes, as "value"...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (93): Rsync::Config::Blank Download

Added: January 08, 2010 | Visits: 965

Rsync::Config::Module Rsync::Config::Module is a module entry from a rsync configuration file. Rsync::Config::Module is used to create a module who can be later used in generating a rsync configuration file. Each module is made by atoms (Rsync::Config::Atom). SYNOPSIS use Rsync::Config::Module; sub main { my...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (86): Rsync::Config::Module Download

Added: April 23, 2010 | Visits: 778

Rsync::Config Rsync::Config is a Perl module for rsync configuration generator. Rsync::Config is a module who can be used to create rsync configuration files. A configuration file (from Rsync::Config point of view) is made by atoms and modules with atoms. A atom is the smallest piece from the configuration...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (99): Rsync::Config Download

Added: September 02, 2010 | Visits: 1.097

Config Maker Config Maker is a tool to automatically create C++ classes that parse configuration files. Only a few lines of text that describe the possible entries in the configuration file are needed, and the complete class will be generated ready for use. Basic usage The input files for Config Maker...


Platforms: *nix

License: Freeware Size: 307.2 KB Download (98): Config Maker Download

Added: June 09, 2010 | Visits: 1.333

network-config network-config is a simple network configuration tool. Network-config is a simple and easy to use program that helps configuring the network interfaces for linux-based operating systems. It allows to have multiple configurations for the same computer and to easy configure NAT for internet...


Platforms: *nix

License: Freeware Size: 32.77 KB Download (102): network-config Download

Added: February 27, 2010 | Visits: 956

Config::Fast Config::Fast is an extremely fast configuration file parser. SYNOPSIS # default config format is a space-separated file company "Supercool, Inc." support nobody@nowhere.com # and then in Perl use Config::Fast; %cf = fastconfig; print "Thanks for visiting $cf{company}!n"; print...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (96): Config::Fast Download

Added: January 14, 2010 | Visits: 808

Java::SJ::Config Java::SJ::Config is a Perl module that represents SJ Configuration File. It uses XML::XPath to parse configuration files and generates objects to represent the directives. Unless youre working on the module what you really want to know is what directives are allowed and their meaning. Youre...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (88): Java::SJ::Config Download

Added: May 22, 2010 | Visits: 604

Config::YUM Config::YUM is a Perl extension for parsing yum.conf. SYNOPSIS use Config::YUM; my $yp = new Config::YUM; my $yum_conf = $yp->parse(); foreach(keys %{$yum_conf}) { print "Section: $_ is called " . $yum_conf->{$_}->{name} . "n"; } $yum_conf will be a a hash, all INI sections are the...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (88): Config::YUM Download

Added: August 21, 2010 | Visits: 843

PXP::Config PXP::Config is a Perl module for PXP configuration. SYNOPSIS # do this only once at server initialization: PXP::Config::init(file=>$finename); # then from anywhere: my $global_configuration_hash = PXP::Config::getGlobal(); # only from a plugin class: my $plugin_configuration_hash =...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (93): PXP::Config Download

Added: March 11, 2010 | Visits: 1.020

Config::Magic SYNOPSIS Example 1 use Config::Magic; use Data::Dumper; $input=q{ Section 1 { [Section 4] #Comment style #1 //Comment style #2 ;Comment style #3 Monkey:1 Monkey=>2 Monkey:=3 < Section 2 > Foo = Bar Baz { Bip:1 Pants==5 } < /Section > < Tasty Cheese="3" / > < Section 5 >...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (112): Config::Magic Download

Added: September 24, 2010 | Visits: 694

Config::IniFiles Config::IniFiles is a module for reading .ini-style configuration files. SYNOPSIS use Config::IniFiles; my $cfg = new Config::IniFiles( -file => "/path/configfile.ini" ); print "The value is " . $cfg->val( Section, Parameter ) . "." if $cfg->val( Section, Parameter ); Config::IniFiles...


Platforms: *nix

License: Freeware Size: 36.86 KB Download (97): Config::IniFiles Download

Added: August 18, 2010 | Visits: 2.320

Config::File Config::File is a Perl module to parse a simple configuration file. SYNOPSIS use Config::File; my $config_hash = Config::File::read_config_file($configuration_file); read_config_file parses a simple configuration file and stores its values in an anonymous hash reference. The syntax of the...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (89): Config::File Download

Added: April 03, 2010 | Visits: 702

MRTG::Config MRTG::Config is a Perl module for parsing MRTG configuration files. WARNING This module, while reliable right now, is still in ALPHA stages of development... The API/methods may change. Behaviors of methods will almost certainly change. The internal structure of data will change, as will many...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (88): MRTG::Config Download

Added: November 21, 2010 | Visits: 1.133

Pipeline::Config SYNOPSIS use Error qw( :try ); use Pipeline::Config; my $config = Pipeline::Config->new(); try { my $pipe = $config->load( somefile.type ); my $pipe2 = $config->load( somefile, type ); } catch Error with { print shift; } Pipeline::Config lets you specify the structure of a Pipeline...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (121): Pipeline::Config Download

Added: November 17, 2010 | Visits: 931

Log::Dispatch::Config Log::Dispatch::Config is a Log4j for Perl. SYNOPSIS use Log::Dispatch::Config; Log::Dispatch::Config->configure(/path/to/log.conf); my $dispatcher = Log::Dispatch::Config->instance; $dispatcher->debug(this is debug message); $dispatcher->emergency(something *bad* happened!); #...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (99): Log::Dispatch::Config Download

Added: October 07, 2010 | Visits: 1.269

system-config-printer system-config-printer purpose is to configure a CUPS server (often the local machine) using the CUPS API. The tool is written in Python, using pygtk for the graphical parts and with some Python bindings (pycups) for the CUPS API. It is largely the same as using the CUPS web interface for...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (102): system-config-printer Download

< 1 2 3 4 5 >