Main > Free Download Search >

Free values software for linux

values

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2319
Resets iptables to default values

Resets iptables to default values


Resets iptables to default values script resets the Linux firewall iptables to default values. more>>
Resets iptables to default values script resets the Linux firewall iptables to default values.

Configurations

IPTABLES="/usr/sbin/iptables"

#
# reset the default policies in the filter table.
#
$IPTABLES -P INPUT ACCEPT
$IPTABLES -P FORWARD ACCEPT
$IPTABLES -P OUTPUT ACCEPT

#
# reset the default policies in the nat table.
#
$IPTABLES -t nat -P PREROUTING ACCEPT
$IPTABLES -t nat -P POSTROUTING ACCEPT
$IPTABLES -t nat -P OUTPUT ACCEPT

#
# reset the default policies in the mangle table.
#
$IPTABLES -t mangle -P PREROUTING ACCEPT
$IPTABLES -t mangle -P OUTPUT ACCEPT

#
# flush all the rules in the filter and nat tables.
#
$IPTABLES -F
$IPTABLES -t nat -F
$IPTABLES -t mangle -F
#
# erase all chains thats not default in filter and nat table.
#
$IPTABLES -X
$IPTABLES -t nat -X
$IPTABLES -t mangle -X
<<less
Download (MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
985 downloads
phpautotest 1.0.3

phpautotest 1.0.3


phpautotest is a tool for conducting automated regression tests on PHP-driven Web sites. more>>
phpautotest is a tool for conducting automated regression tests on PHP-driven Web sites. Variable values as well as HTTP output can be tested.

HTTP output is tested using regular expressions.

<<less
Download (0.18MB)
Added: 2006-05-11 License: MIT/X Consortium License Price:
1264 downloads
Scalar::MultiValue 0.03

Scalar::MultiValue 0.03


Scalar::MultiValue is a Perl module to create a SCALAR with multiple values. more>>
Scalar::MultiValue is a Perl module to create a SCALAR with multiple values.

This module create a SCALAR with multiple values, where this values can be randomic or can change by a defined period.

USAGE:

With a period of 2:

my $s = new Scalar::MultiValue( [qw(a b c d)] , 2 ) ;

for(0..8) {
print "$sn" ;
}

Output:

a
a
b
b
c
c
d
d

With randomic values:

my $s = new Scalar::MultiValue( [qw(a b c d)] , * ) ;

for(0..8) {
print "$sn" ;
}

Output:

c
d
c
b
a
d
c
c

<<less
Download (0.003MB)
Added: 2007-07-06 License: Perl Artistic License Price:
841 downloads
Equalize 1.00

Equalize 1.00


Equalize plug-in does a histogram equalization of the image. more>>
Equalize plug-in does a histogram equalization of the image.

That is, it modifies the images histogram so that it is approximately horizontal, so that all intensity values cover about the same number of pixels in the image (i.e. the histogram is well-balanced).

<<less
Download (0.006MB)
Added: 2006-09-21 License: GPL (GNU General Public License) Price:
1130 downloads
Keyword Market Value Analyzer 1.1

Keyword Market Value Analyzer 1.1


Keyword Market Value Analyzer allows you to compile a database a keywords based on a particular keyword subject. more>>
Keyword Market Value Analyzer allows you to compile a database a keywords based on a particular keyword subject, and to compare their popularity with the highest amount advertisers are willing to pay to advertise for the keyword.
The result of Keyword Market Value Analyzer is a really good idea about how much money-making potential there is for the keyword.
Main features:
- Keyword Market Value Analyzer is easy to install. Just unzip, install the database tables and upload.
- Create different keyword subject groups. The groups share the same keyword data, so you can leverage the research youve done for one keyword group for another, related keyword group.
- Easily browse keywords based on market value, highest bid, or most popular.
- Makes keyword market value research as easy as it can be!
<<less
Download (0.10MB)
Added: 2006-02-28 License: Freeware Price:
1335 downloads
kparalleleport 1.1

kparalleleport 1.1


kparalleleport is a program for programmers who wish to use the parallel port. more>>
kparalleleport is a program for programmers who wish to use the parallel port.

The project makes it possible to view the values registered or read on the parallel port.
<<less
Download (0.098MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
984 downloads
Scalar::Defer 0.07

Scalar::Defer 0.07


Scalar::Defer is a Perl module to calculate values on demand. more>>
Scalar::Defer is a Perl module to calculate values on demand.

SYNOPSIS

use Scalar::Defer; # exports defer and lazy

my ($x, $y);
my $dv = defer { ++$x }; # a deferred value (not memoized)
my $lv = lazy { ++$y }; # a lazy value (memoized)

print "$dv $dv $dv"; # 1 2 3
print "$lv $lv $lv"; # 1 1 1

my $forced = force $dv; # force a normal value out of $dv

print "$forced $forced $forced"; # 4 4 4

This module exports two functions, defer and lazy, for building values that are evaluated on demand. It also exports a force function to force evaluation of a deferred value.

defer {...}

Takes a block or a code reference, and returns a deferred value. Each time that value is demanded, the block is evaluated again to yield a fresh result.

lazy {...}

Like defer, except the value is computed at most once. Subsequent evaluation will simply use the cached result.

force $value

Force evaluation of a deferred value to return a normal value. If $value was already normal value, then force simply returns it.

NOTES

Deferred values are not considered objects (ref on them returns 0), although you can still call methods on them, in which case the invocant is always the forced value.

Unlike the tie-based Data::Lazy, this module operates on values, not variables. Therefore, assigning into $dv and $lv above will simply replace the value, instead of triggering a STORE method call.

Also, thanks to the overload-based implementation, this module is about 2x faster than Data::Lazy.

<<less
Download (0.025MB)
Added: 2006-10-18 License: MIT/X Consortium License Price:
1101 downloads
Data::Validator::Item 0.75

Data::Validator::Item 0.75


Data::Validator::Item is a Factory Class to validate data items. more>>
Data::Validator::Item is a Factory Class to validate data items.

This is an attempt to create an object which will permit semi-automatic verification of a data value.

SYNOPSIS

use Data::Validator::Item;
my $item = Data::Validator::Item->new(); #Create a new Data::Validator::Item, called $item.

#Set values
$item->name(fred);
$item->values([1,2,3]); or $item->values(@array);
$item->missing(*); or $item->missing(); #undef is unlikely to be sensible!
$item->min(0); $item->max(100);
$item->verify($reference_to_subroutine); #Used in the $item->validate() function
$item->transform($reference_to_subroutine); #Used in the $item->put() function

#Get values
my $name = $item->name();
my @values = $item->values();
my $missing = $item->missing();
etc...

#Use it.. $item->validate(); #Returns 1 for success, 0 for failure $item->error(); #Returns the correct error message $item->put();

USAGE

Many people work with data organised as records, each containing (potentially many) variables. It is often necessary to process files of such records, and to test every variable within every record to ensure that each one is valid. I do this before putting data from very large flat files into my databases. For each variable I had a need to define specific, sometimes complex rules for validity, then implement them, and check them. This is what Data::Validator::Item is for.

Note carefully that Data::Validator::Item handles only one scalar vlaue at a time. This value could come from a file, a database, an array, a hash or your grannys parrot. Data::Validator::Item doesnt care.

I use Data::Validator::Item as follows. I create one for every named variable in my data file. In many real applications most of this setup can be done by looping over a list of variable names, creating many Data::Validator::Items each named for the corresponding variable. Common features, like missing values, and names can be set in this loop.

Specifics, like values(), min(), max(), verify() and so on can be set individually. I then create a hash to hold all of the Data::Validator::Items for a particular data source, The keys of this hash are the names of the variables, and the values are the Data:Validators themselves. Y.M.M.V.

<<less
Download (0.011MB)
Added: 2007-02-28 License: Perl Artistic License Price:
969 downloads
phpCDLabelPS 0.0.4

phpCDLabelPS 0.0.4


phpCDLabelPS creates labels for your data/MP3 CDs using PHP and PostScript (output will be a postscript file). more>>
phpCDLabelPS creates labels for your data/MP3 CDs using PHP and PostScript (output will be a postscript file). It is controled by a frontend and a PostScript template.

To install, just extract all files somewhere in your webtree. Then point your browser to cdlabel.php - thats it. You may want to check the config.inc file and change the default values to your own preferences at any time: it just sets up the initial form values. One thing you may want to adjust right in the beginning is the mount-point of your media.

<<less
Download (0.013MB)
Added: 2006-07-31 License: GPL (GNU General Public License) Price:
1183 downloads
Template::Plugin::JSON 0.02

Template::Plugin::JSON 0.02


Template::Plugin::JSON is a Perl module that adds a .json vmethod for all TT values. more>>
Template::Plugin::JSON is a Perl module that adds a .json vmethod for all TT values.

SYNOPSIS

[% USE JSON %];

< script type="text/javascript" >

var foo = [% foo.json %];

< /script >

This plugin provides a .json vmethod to all value types when loaded.

With no argument it will try to load JSON::Syck and then JSON::Converter. If used as [% USE JSON("Syck") %] or [% USE JSON("Converter") %] it will load that specific plugin.
If no plugin could be loaded an exception is thrown. Check for errors from "process" in Template.

<<less
Download (0.004MB)
Added: 2007-02-19 License: Perl Artistic License Price:
977 downloads
mod-apache-snmp 1.03

mod-apache-snmp 1.03


Apache SNMP Module allows you to monitor different configuration and status values of the Apache Web server using SNMP. more>>
Apache SNMP Module allows you to monitor different configuration and status values of the Apache Web server using SNMP.
Enhancements:
- Bugfixes, the inclusion of MRTG scripts, and changes to make the module work on the IBM HTTP Server.
<<less
Download (0.032MB)
Added: 2005-08-23 License: GPL (GNU General Public License) Price:
1533 downloads
Linux::net::dev 1.00

Linux::net::dev 1.00


Linux::net::dev is a Perl extension for parsing /proc/net/dev. more>>
Linux::net::dev is a Perl extension for parsing /proc/net/dev.

SYNOPSIS

use Linux::net::dev;
my $devs = Linux::net::dev::info();
print "Devices (bytes read):n";
foreach (keys %$devs) {
print " $_ ($devs->{$_}->{rbytes})n";
}

Linux::net::dev parses /proc/net/dev for network devices statistics. The package contains these functions:

info

This function returns hash reference. Keys are devices ids and values are data hash references. Data hash has resource names for keys and their respective values as associated values.

dev

Takes device id as a single argument and returns that devices data.

devs

Takes list of device ids as arguments and returns array with those devices data.
Recognized resources (data hash keys): rbytes, rcompressed, rdrop, rerrs, rfifo, rframe, rmulticast, rpackets, tbytes, tcarrier, tcolls, tcompressed, tdrop, terrs, tfifo, tpackets,

Resources begining with "r" are values for read data, and those begining with "t" are values for transmited data.

Package was built and tested on RedHat 7.2, kernel 2.4.7-10 and might not work on some other versions. Please report bugs along with your kernel version (uname -r or uname -a).

<<less
Download (0.006MB)
Added: 2006-06-27 License: Perl Artistic License Price:
1214 downloads
Lua FLTK 1.0

Lua FLTK 1.0


Lua FLTK is a binding of the FLTK widget set to the language Lua. more>>
Lua FLTK project is a binding of the FLTK widget set to the language Lua.

It tries to make the use of FLTK widgets seem natural to Lua programmers.

It uses a simple constructor syntax, remaps C++ values onto Lua conventions, and provides direct set/get access to widget properties.

<<less
Download (0.18MB)
Added: 2006-09-29 License: LGPL (GNU Lesser General Public License) Price:
1127 downloads
Zonestats 0.3

Zonestats 0.3


Zonestats create an RRD database with the values of CPU and memory (RSS) usage per Solaris 10 zone. more>>
Zonestats create an RRD database with the values of CPU and memory (RSS) usage per Solaris 10 zone. Zonestats project requires only the RRDs Perl module.

<<less
Download (0.013MB)
Added: 2006-04-19 License: BSD License Price:
1284 downloads
raddump 0.3.1

raddump 0.3.1


raddump interprets captured RADIUS packets to print a timestamp. more>>
raddump interprets captured RADIUS packets to print a timestamp, packet length, RADIUS packet type, source and destination hosts and ports, and included attribute names and values for each packet.
Enhancements:
- Added support for IEEE 802.1q tagged VLAN frames.
<<less
Download (0.17MB)
Added: 2005-06-29 License: GPL (GNU General Public License) Price:
1579 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5