coffeemud 5.3.0
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5
Download (24MB)
Added: 2007-02-23 License: GPL (GNU General Public License) Price:
578 downloads
Proc::BackOff::Linear 0.01
Proc::BackOff::Linear is directly inherited from and then modified by overloading the calculate_back_off object method. more>>
Proc::BackOff::Linear is a generic module meant to be directly inherited from and then modified by overloading the calculate_back_off object method.
SYNOPSIS
Usage:
use Proc::BackOff::Linear;
my $obj = Proc::BackOff::Linear->new( { $slope => 5, x => count, b => 0 );
# sequence would be
# y = slope * x + b;
# 1st failure : 5 * count + b = 5 * 1 + 0 = 5
# 2nd failure : 5 * 2 + 0 = 10
# 3nd failure : 5 * 3 + 0 = 10
Overloaded Methods
new()
Check for variables being set:
Required: slope. B defaults to 0 x defaults to count
calculate_back_off()
Returns the new back off value.
<<lessSYNOPSIS
Usage:
use Proc::BackOff::Linear;
my $obj = Proc::BackOff::Linear->new( { $slope => 5, x => count, b => 0 );
# sequence would be
# y = slope * x + b;
# 1st failure : 5 * count + b = 5 * 1 + 0 = 5
# 2nd failure : 5 * 2 + 0 = 10
# 3nd failure : 5 * 3 + 0 = 10
Overloaded Methods
new()
Check for variables being set:
Required: slope. B defaults to 0 x defaults to count
calculate_back_off()
Returns the new back off value.
Download (0.006MB)
Added: 2007-07-28 License: Perl Artistic License Price:
819 downloads
GroundWork Monitor Community Edition 5.3.0 GA
GroundWork Monitor Community Edition offers you an ideal IT monitoring solution to maintain network visibility and control. more>> <<less
Added: 2009-02-11 License: GPL Price: FREE
1 downloads
Math::RPN 1.08
RPN is a Perl extension for Reverse Polish Math Expression Evaluation. more>>
RPN is a Perl extension for Reverse Polish Math Expression Evaluation.
SYNOPSIS
use Math::RPN;
$value=rpn(expr...);
@array=rpn(expr...);
expr... is one or more scalars or lists of scalars which contain
RPN expressions. An RPN expression is a series of numbers and/or
operators separated by commas. (commas are only required within
scalars).
The rpn function will take a scalar or list of sclars which contain an RPN expression as a set of comma delimited values and operators, and return the result or stack, depending on context. If the function is called in an array context, it will return the entire remaining stack. If it is called in a scalar context, it will return the top item of the stack. In a scalar context, if more than one value remains on the stack, a warning will be sent to STDERR.
In the event of an error, an error message will be sent to STDERR, and rpn will return undef.
The expression can contain any combination of values and operators. Any token which is not an operator is assumed to be a value to be pushed onto the stack.
An explanation of Reverse Polish Notation is beyond the scope of this document, but it I will describe it briefly as a stack-based way of writing mathematical expressions. This has the advantage of eliminating the need for parenthesis and simplifying parsing for computers vs. normal algebraic notation at a slight cost in the ability of humans to easily comprehend the expressions.
This evaluator works by cycling through the expression from left to right. As each token is encountered, it is checked against the list of operators. If it matches, then a check is performed for stack underflow.
If the stack has not underflowed, the operation is performed by removing the required number of operands from the top of the stack. The result is then pushed on to the stack. Operations for which order is significant (-,/,%,etc.) are processed such that the top item on the stack is treated as the right operand, and the next item down is treated as the left operand. Thus, "5,3,-" would yield 2, not -2. If the token does not match any of the known operators, the token is blindly pushed onto the stack. As a result, one can produce unexpected results. For example, the expression "5,3,grandma,+,*" would produce 15 because 5*(3+0) is how it would end up evaluated. That is, 5 would be pushed onto the stack, then 3, then "grandma". Next, + is evaluated, so 3+"grandma" is evaluated. PERL evaluates "grandma" to be numerically 0, so 3 is pushed back onto the stack. Next, the * multiplies the top two items of the stack [5][3], producing 15, which is pushed back onto the stack.
<<lessSYNOPSIS
use Math::RPN;
$value=rpn(expr...);
@array=rpn(expr...);
expr... is one or more scalars or lists of scalars which contain
RPN expressions. An RPN expression is a series of numbers and/or
operators separated by commas. (commas are only required within
scalars).
The rpn function will take a scalar or list of sclars which contain an RPN expression as a set of comma delimited values and operators, and return the result or stack, depending on context. If the function is called in an array context, it will return the entire remaining stack. If it is called in a scalar context, it will return the top item of the stack. In a scalar context, if more than one value remains on the stack, a warning will be sent to STDERR.
In the event of an error, an error message will be sent to STDERR, and rpn will return undef.
The expression can contain any combination of values and operators. Any token which is not an operator is assumed to be a value to be pushed onto the stack.
An explanation of Reverse Polish Notation is beyond the scope of this document, but it I will describe it briefly as a stack-based way of writing mathematical expressions. This has the advantage of eliminating the need for parenthesis and simplifying parsing for computers vs. normal algebraic notation at a slight cost in the ability of humans to easily comprehend the expressions.
This evaluator works by cycling through the expression from left to right. As each token is encountered, it is checked against the list of operators. If it matches, then a check is performed for stack underflow.
If the stack has not underflowed, the operation is performed by removing the required number of operands from the top of the stack. The result is then pushed on to the stack. Operations for which order is significant (-,/,%,etc.) are processed such that the top item on the stack is treated as the right operand, and the next item down is treated as the left operand. Thus, "5,3,-" would yield 2, not -2. If the token does not match any of the known operators, the token is blindly pushed onto the stack. As a result, one can produce unexpected results. For example, the expression "5,3,grandma,+,*" would produce 15 because 5*(3+0) is how it would end up evaluated. That is, 5 would be pushed onto the stack, then 3, then "grandma". Next, + is evaluated, so 3+"grandma" is evaluated. PERL evaluates "grandma" to be numerically 0, so 3 is pushed back onto the stack. Next, the * multiplies the top two items of the stack [5][3], producing 15, which is pushed back onto the stack.
Download (0.008MB)
Added: 2007-06-28 License: Perl Artistic License Price:
848 downloads
Catkin QTM 0.5.3 / 0.5.4 Beta 2
Catkin QTM is a blog management app which uses the Blogger, MetaWeblog and Movable Type APIs. more>>
Catkin QTM is a blog management app which uses the MetaWeblog, Blogger and Movable Type APIs to submit and (in the future) edit and otherwise manage entries on a blog.
Presently, however, it is possible to compose, format, preview and submit entries, in one or more categories, and edit newly submitted entries. This is a development snapshot release. Requires Qt 4.1.
This is by the same author as the Catkin application, which was a manager for Blosxom blogs. This is a fresh rewrite, using Qt 4.1 (instead of 3.3) and with the Blosxom-related parts removed.
They are still in CVS, however, and may be restored in the future. The old releases are still available at Sourceforge
<<lessPresently, however, it is possible to compose, format, preview and submit entries, in one or more categories, and edit newly submitted entries. This is a development snapshot release. Requires Qt 4.1.
This is by the same author as the Catkin application, which was a manager for Blosxom blogs. This is a fresh rewrite, using Qt 4.1 (instead of 3.3) and with the Blosxom-related parts removed.
They are still in CVS, however, and may be restored in the future. The old releases are still available at Sourceforge
Download (0.057MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
845 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above coffeemud 5.3.0 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed