evaluating
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 202
Erika Educational 1.3
Erika Educational is a a fully fledged and fully functional real-time operating system (RTOS) for embedded devices. more>>
Erika Educational is a a fully fledged and fully functional real-time operating system (RTOS) for embedded devices.
Erika Educational is a reduced GPL-licensed release of Erika Enterprise: ideal for educational purposes, free software, and available for download at no cost.
Erika Educational should not be seen as a reduced set of Erika Enterprise. Therefore, please do not consider Erika Educational for evaluating the characteristics and performance of Erika Enterprise. While the two originated from the same source code base, Erika Enterprise has been completely redesigned and rewritten to meet industrial needs, whereas Erika Educational have been adapted to 8 bit educational architectures.
Impressions based on Erika Educational should not be applied to Erika Enterprise, as their feature sets are different, and they are, in practice, two different projects, with two different code bases.
<<lessErika Educational is a reduced GPL-licensed release of Erika Enterprise: ideal for educational purposes, free software, and available for download at no cost.
Erika Educational should not be seen as a reduced set of Erika Enterprise. Therefore, please do not consider Erika Educational for evaluating the characteristics and performance of Erika Enterprise. While the two originated from the same source code base, Erika Enterprise has been completely redesigned and rewritten to meet industrial needs, whereas Erika Educational have been adapted to 8 bit educational architectures.
Impressions based on Erika Educational should not be applied to Erika Enterprise, as their feature sets are different, and they are, in practice, two different projects, with two different code bases.
Download (0.66MB)
Added: 2006-10-16 License: GPL (GNU General Public License) Price:
1111 downloads
WarLinux 0.5
WarLinux is a linux distribution for Wardrivers. more>>
WarLinux is a linux distribution for Wardrivers.
It is available on disk and bootable CD. Its main intended use is for systems administrators that want to audit and evaluate thier wireless network installations.
Should be handy for wardriving also.
<<lessIt is available on disk and bootable CD. Its main intended use is for systems administrators that want to audit and evaluate thier wireless network installations.
Should be handy for wardriving also.
Download (52.7MB)
Added: 2006-08-25 License: GPL (GNU General Public License) Price:
1161 downloads
Libeval 1.0.7
Libeval provides simple means of evaluating simple arithmetic expressions. more>>
Libeval provides simple means of evaluating simple arithmetic expressions involving literal numeric values, variables and functions using the addition (+), subtraction (-), multiplication (*), division (/), modulo division (), exponentiation (^), sign (+-), percentag (%) and grouping (()) operators.
Libeval provides a means of setting and interrogating variables, defining functions and converting error codes into human readable strings. A number of predefined functions are included with libeval that wrap the existing standard C library math functions.
You can evaluate an expression by calling the eval() function. eval() takes two parameters, the expression to evaluate (as a simple C string) and a reference to a double precision float in which to put the result. If eval() encounters an error it returns a non-zero value, otherwise, if everything went well, it returns zero.
The error code returned by eval() can be converted into a human readable string by the eval_error() function. eval_error() takes one parameter, the error code returned by eval(),and returns a constant string describing the error.
Variables can be manipulated with the eval_set_var() and eval_get_var() functions.
eval_set_var() sets the named variable to the specified double precision value. eval_set_var() takes two parameters, the name of the variable to set as a simple C string, and the double precision float value to set the variable to. it returns 0 (zero) on success, non-zero on failure.
eval_get_var() gets the value of the named variable. eval_get_var() takes two parameters, the name of the variable as a simple C string and a reference to a double precision float in which to store the variables value. it returns 0 (zero) on success, non-zero on failure.
Functions can be defined with the eval_def_fn() function, which takes the name of the function as a simple C string, a pointer to a C function implementing the function, a pointer to a block of custom storage for use by the function and the number of arguments taken by the function. The prototype for the implementation function is:
int fn(int args, double *arg, double *rv, void *data);
The first two parameters (args and arg) are similar to the standard parameters to the main() function in C, the args parameter indicates how many elements are the argument list, and arg is the argument list itself. The third parameter (rv) is the return value from the function. The last parameter (data) is the custome storage block passed in when the function was defined.
If you specify a positive value (including zero) as the number of arguments for a function, libeval will only all the function to be called with exactly that number of parameters. If you specify a -1 (negative one) for the number of arguments, the function can be called with any number of parameters.
The following functions are predefined:
abs(x) absolute value of x
int(x) integer part of x
round(x) round x to nearest integer
trunc(x) truncate x (same as int(x))
floor(x) round x to nearest lesser integer
ceil(x) round x to nearest greater integer
sin(x) sine of x (radians)
cos(x) cosine of x (radians)
tan(x) tangent of x (radians)
asin(x) arc sine of x (radians)
acos(x) arc cosine of x (radians)
atan(x) arc tangent of x (radians)
sinh(x) hyperbolic sine of x (radians)
cosh(x) hyperbolic cosine of x (radians)
tanh(x) hyperbolic tangent of x (radians)
asinh(x) hyperbolic arc sine of x (radians)
acosh(x) hyperbolic arc cosine of x (radians)
atanh(x) hyperbolic arc tangent of x (radians)
deg(x) convert radians to degrees
rad(x) convert degrees to radians
ln(x) natural logarithm of x
log(x) base 10 logarithm of x
sqrt(x) square root of x
exp(x) e to x power
rand() random number between 0.0 and 1.0
fact(x) factorial of x (or gamma(x) if x is non-integer)
sum(...) sum of the arguments
min(...) minimum value in arguments
max(...) maximum value in arguments
avg(...) average of arguments
med(...) median of arguments
var(...) variance of arguments
std(...) standard deviation of arguments
Finally, you can get a set of bookkeepping information about the eval_expr libray with the eval_info() function. eval_info() takes nine parmaeters: three references to integer values for the version, revision and build numbers of the current eval_expr library, and three pairs of buffer address and buffer size limit for authors name, copyright info and license info.
You can use libeval by including the libeval header in your program source
#include
and then by linking your program against the libeval library
gcc -o myprog myprog.c -leval
Enhancements:
- A bug in the var() function and version string construction were fixed.
<<lessLibeval provides a means of setting and interrogating variables, defining functions and converting error codes into human readable strings. A number of predefined functions are included with libeval that wrap the existing standard C library math functions.
You can evaluate an expression by calling the eval() function. eval() takes two parameters, the expression to evaluate (as a simple C string) and a reference to a double precision float in which to put the result. If eval() encounters an error it returns a non-zero value, otherwise, if everything went well, it returns zero.
The error code returned by eval() can be converted into a human readable string by the eval_error() function. eval_error() takes one parameter, the error code returned by eval(),and returns a constant string describing the error.
Variables can be manipulated with the eval_set_var() and eval_get_var() functions.
eval_set_var() sets the named variable to the specified double precision value. eval_set_var() takes two parameters, the name of the variable to set as a simple C string, and the double precision float value to set the variable to. it returns 0 (zero) on success, non-zero on failure.
eval_get_var() gets the value of the named variable. eval_get_var() takes two parameters, the name of the variable as a simple C string and a reference to a double precision float in which to store the variables value. it returns 0 (zero) on success, non-zero on failure.
Functions can be defined with the eval_def_fn() function, which takes the name of the function as a simple C string, a pointer to a C function implementing the function, a pointer to a block of custom storage for use by the function and the number of arguments taken by the function. The prototype for the implementation function is:
int fn(int args, double *arg, double *rv, void *data);
The first two parameters (args and arg) are similar to the standard parameters to the main() function in C, the args parameter indicates how many elements are the argument list, and arg is the argument list itself. The third parameter (rv) is the return value from the function. The last parameter (data) is the custome storage block passed in when the function was defined.
If you specify a positive value (including zero) as the number of arguments for a function, libeval will only all the function to be called with exactly that number of parameters. If you specify a -1 (negative one) for the number of arguments, the function can be called with any number of parameters.
The following functions are predefined:
abs(x) absolute value of x
int(x) integer part of x
round(x) round x to nearest integer
trunc(x) truncate x (same as int(x))
floor(x) round x to nearest lesser integer
ceil(x) round x to nearest greater integer
sin(x) sine of x (radians)
cos(x) cosine of x (radians)
tan(x) tangent of x (radians)
asin(x) arc sine of x (radians)
acos(x) arc cosine of x (radians)
atan(x) arc tangent of x (radians)
sinh(x) hyperbolic sine of x (radians)
cosh(x) hyperbolic cosine of x (radians)
tanh(x) hyperbolic tangent of x (radians)
asinh(x) hyperbolic arc sine of x (radians)
acosh(x) hyperbolic arc cosine of x (radians)
atanh(x) hyperbolic arc tangent of x (radians)
deg(x) convert radians to degrees
rad(x) convert degrees to radians
ln(x) natural logarithm of x
log(x) base 10 logarithm of x
sqrt(x) square root of x
exp(x) e to x power
rand() random number between 0.0 and 1.0
fact(x) factorial of x (or gamma(x) if x is non-integer)
sum(...) sum of the arguments
min(...) minimum value in arguments
max(...) maximum value in arguments
avg(...) average of arguments
med(...) median of arguments
var(...) variance of arguments
std(...) standard deviation of arguments
Finally, you can get a set of bookkeepping information about the eval_expr libray with the eval_info() function. eval_info() takes nine parmaeters: three references to integer values for the version, revision and build numbers of the current eval_expr library, and three pairs of buffer address and buffer size limit for authors name, copyright info and license info.
You can use libeval by including the libeval header in your program source
#include
and then by linking your program against the libeval library
gcc -o myprog myprog.c -leval
Enhancements:
- A bug in the var() function and version string construction were fixed.
Download (0.027MB)
Added: 2007-01-17 License: LGPL (GNU Lesser General Public License) Price:
1011 downloads
Games::AlphaBeta::Position 0.4.6
Games::AlphaBeta::Position is a base Position class for use with Games::AlphaBeta. more>>
Games::AlphaBeta::Position is a base Position class for use with Games::AlphaBeta.
SYNOPSIS
package My::GamePos;
use base qw(Games::AlphaBeta::Position);
sub apply { ... }
sub endpos { ... } # optional
sub evaluate { ... }
sub findmoves { ... }
package main;
my $pos = My::GamePos->new;
my $game = Games::AlphaBeta->new($pos);
Games::AlphaBeta::Position is a base class for position-classes that can be used with Games::AlphaBeta. It inherits most of its methods from Games::Sequential::Position; make sure you read its documentation.
This class is provided for convenience. You dont need this class in order to use Games::AlphaBeta. It is, however, also possible to make use of this class on its own.
<<lessSYNOPSIS
package My::GamePos;
use base qw(Games::AlphaBeta::Position);
sub apply { ... }
sub endpos { ... } # optional
sub evaluate { ... }
sub findmoves { ... }
package main;
my $pos = My::GamePos->new;
my $game = Games::AlphaBeta->new($pos);
Games::AlphaBeta::Position is a base class for position-classes that can be used with Games::AlphaBeta. It inherits most of its methods from Games::Sequential::Position; make sure you read its documentation.
This class is provided for convenience. You dont need this class in order to use Games::AlphaBeta. It is, however, also possible to make use of this class on its own.
Download (0.012MB)
Added: 2007-01-03 License: Perl Artistic License Price:
1026 downloads
WAassistant 0.3
WAassistant is a Web application for evaluating the accessibility of Web sites to handicapped users. more>>
WAassistant is a Web application for evaluating the accessibility of Web sites to handicapped users.
WAassistant is not just a test result reporting tool and also it tries to manage the whole testing process, including review of automated testing results, testing by humans, and making comprehensive reports on accessibility properties of Web sites.
Enhancements:
- Support for cooperation with WAusers and switching user roles.
- Additionally, it contains a few bugfixes and smaller improvements.
<<lessWAassistant is not just a test result reporting tool and also it tries to manage the whole testing process, including review of automated testing results, testing by humans, and making comprehensive reports on accessibility properties of Web sites.
Enhancements:
- Support for cooperation with WAusers and switching user roles.
- Additionally, it contains a few bugfixes and smaller improvements.
Download (0.060MB)
Added: 2006-01-12 License: GPL (GNU General Public License) Price:
1380 downloads
poker-eval 134.0
poker-eval is a C library to evaluate poker hands. more>>
poker-eval is a C library that can evaluate poker hands. The result of the evalution for a given hand is a number. The general idea is that if the evalution of your hand is lower than the evaluation of the hand of your opponent, you lose.
Many poker variants are supported (draw, holdem, omaha, etc.) and more can be added. poker-eval is designed for speed so that it can be used within poker simulation software using either exhaustive exploration or Monte Carlo.
Installation:
This library uses the GNU Autoconf self-configuration mechanism, so compiling on a GNU/Linux and Unix system should be fairly simple.
To build both the C library and the examples:
./configure
( cd lib && make build_tables )
make
To build and run the tests:
./configure
( cd lib && make build_tables )
make check
The "make check" command will run several test programs to ensure that everything works correctly. On slow machines, the tests may take several minutes.
To install the library and the headers (by default they will install in /usr/local/lib and /usr/local/include/poker-eval respectively):
./configure
make install
To run the examples:
cd examples
read the usage at the beginning of the source file
and run the program accordingly
Enhancements:
- Bugfixes.
<<lessMany poker variants are supported (draw, holdem, omaha, etc.) and more can be added. poker-eval is designed for speed so that it can be used within poker simulation software using either exhaustive exploration or Monte Carlo.
Installation:
This library uses the GNU Autoconf self-configuration mechanism, so compiling on a GNU/Linux and Unix system should be fairly simple.
To build both the C library and the examples:
./configure
( cd lib && make build_tables )
make
To build and run the tests:
./configure
( cd lib && make build_tables )
make check
The "make check" command will run several test programs to ensure that everything works correctly. On slow machines, the tests may take several minutes.
To install the library and the headers (by default they will install in /usr/local/lib and /usr/local/include/poker-eval respectively):
./configure
make install
To run the examples:
cd examples
read the usage at the beginning of the source file
and run the program accordingly
Enhancements:
- Bugfixes.
Download (0.45MB)
Added: 2007-05-21 License: GPL (GNU General Public License) Price:
892 downloads
libmatheval 1.1.5
GNU libmatheval is a library (callable from C and Fortran) to parse and evaluate symbolic expressions input as text. more>>
GNU libmatheval is a library (callable from C and Fortran) to parse and evaluate symbolic expressions input as text.
libmatheval supports expressions in any number of variables of arbitrary names, decimal and symbolic constants, basic unary and binary operators, and elementary mathematical functions.
In addition to parsing and evaluation, libmatheval can also compute symbolic derivatives and output expressions to strings.
Enhancements:
- This version was relicensed under GNU Public License version 3.
<<lesslibmatheval supports expressions in any number of variables of arbitrary names, decimal and symbolic constants, basic unary and binary operators, and elementary mathematical functions.
In addition to parsing and evaluation, libmatheval can also compute symbolic derivatives and output expressions to strings.
Enhancements:
- This version was relicensed under GNU Public License version 3.
Download (0.50MB)
Added: 2007-07-02 License: GPL v3 Price:
844 downloads
ECalc 0.3.0
ECalc is a calculator plug-in for Eclipse that provides the ability to evaluate mathematical expressions. more>>
ECalc application is a calculator plug-in for Eclipse that provides the ability to evaluate mathematical expressions.
To install, just put the jar from the zip-files in your plugin-directory and restart eclipse. To uninstall, remove the jar-file and the directory .metadata/.plugin/se.fnord.ecalc from your workspace directory/directories.
Main features:
- Command-history.
- Functions (sin, cos, tan, asin, acos, atan, min, max, hypot, random, round, ceil, floor).
- Ability to switch between radians and degrees.
- The basic operators (+, -, *, /, % (modulus), ^ (power)).
- Bitwise operators (>>,<<less
To install, just put the jar from the zip-files in your plugin-directory and restart eclipse. To uninstall, remove the jar-file and the directory .metadata/.plugin/se.fnord.ecalc from your workspace directory/directories.
Main features:
- Command-history.
- Functions (sin, cos, tan, asin, acos, atan, min, max, hypot, random, round, ceil, floor).
- Ability to switch between radians and degrees.
- The basic operators (+, -, *, /, % (modulus), ^ (power)).
- Bitwise operators (>>,<<less
Download (0.064MB)
Added: 2006-06-04 License: MIT/X Consortium License Price:
1279 downloads
NetMath 0.1
NetMath project is a web browser which allows Web pages to contain modifiable calculations. more>>
NetMath project is a web browser which allows Web pages to contain modifiable calculations.
It has built-in plotting engines and the ability to communicate with computation servers.
This makes it possible to do local graphics, zooming and panning, while taking advantage of sophisticated computational programs.
Documents contain active and editable items, and the results of computations appear in the document.
Main features:
- :expand((x+y+z)^5) gives Result.
- factor(f) (the value f above is maintained) evaluates to Result.
- 500! produces Result
- factor(154784717804734665298299) produces a list of factors and multiplicities Result
<<lessIt has built-in plotting engines and the ability to communicate with computation servers.
This makes it possible to do local graphics, zooming and panning, while taking advantage of sophisticated computational programs.
Documents contain active and editable items, and the results of computations appear in the document.
Main features:
- :expand((x+y+z)^5) gives Result.
- factor(f) (the value f above is maintained) evaluates to Result.
- 500! produces Result
- factor(154784717804734665298299) produces a list of factors and multiplicities Result
Download (0.35MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1088 downloads
Paragon NTFS for Linux 2.0
Gain full access to NTFS partitions under Linux more>> Paragon NTFS for Linux gives transparent access to any NTFS partition under Linux operating system. So you and any application can browse these drives, read and change files, copy and create new files and folders. Everything absolutely transparently ?just like with ?ative?Ext2FS, Ext3FS or ReiserFS file system.
This download package is FREE and contains full functional Paragon NTFS for Linux drivers for the most popular Linux distributions with their default kernels only: Red Hat Enterprise 4 (SW), Fedora Core 4, Mandriva 10.2, SUSE 9.3. If you have any other Linux distribution or have already changed the default kernel, you will not probably be able to use this driver. If you are interested in buying or evaluating Paragon NTFS for Linux driver for any Linux distribution you should go to http://www.ntfs-linux.com/index.htm.
Note: This package contains Paragon NTFS for Linux demo version as well. The demo version mounts NTFS partitions in read-only mode only but you can install it to any Linux distribution.<<less
Download (2447K)
Added: 2009-04-14 License: Freeware Price: $FREE
192 downloads
auCDtect 0.8
AuCDtect - is a free console program for determining the authenticity of musical CDs. more>>
AuCDtect - is a free console program for determining the authenticity of musical CDs. By evaluating the character of audio data a CD contains, Tau Analyzer can distinguish between original studio-based recordings and those that have been "reconstructed" using a lossy audio source, such as MP3. Its a console application and is freeware.
This program could determine authenticity of a musical CD records, stored in WAV format, using the character of the audio data it contains, and predicts its possible source - is it an
original record or a reconstruction from a lossy encoded music file (for example, MP3).
Enhancements:
- Program should work little bit faster;
- Supports disk conclusion mode over the set of tracks (-d key);
- Decreased error level while processing strongly hardware-compressed; studio records - now makes less errors;
- Small algorithm improvements.
<<lessThis program could determine authenticity of a musical CD records, stored in WAV format, using the character of the audio data it contains, and predicts its possible source - is it an
original record or a reconstruction from a lossy encoded music file (for example, MP3).
Enhancements:
- Program should work little bit faster;
- Supports disk conclusion mode over the set of tracks (-d key);
- Decreased error level while processing strongly hardware-compressed; studio records - now makes less errors;
- Small algorithm improvements.
Download (0.029MB)
Added: 2006-07-28 License: GPL (GNU General Public License) Price:
1183 downloads
Devel::ptkdb 1.1091
Devel::ptkdb is a Perl debugger using a Tk GUI. more>>
Devel::ptkdb is a Perl debugger using a Tk GUI.
ptkdb is a debugger for perl that uses perlTk for a user interface.
Main features:
- Hot Variable Inspection
- Breakpoint Control Panel
- Expression List
- Subroutine Tree
SYNOPSIS
To debug a script using ptkdb invoke perl like this:
perl -d:ptkdb myscript.pl
Usage
perl -d:ptkdb myscript.pl
Code Pane
Line Numbers
Line numbers are presented on the left side of the window.
Lines thathave lines through them are not breakable. Lines that are plain text are breakable. Clicking on these line numbers will insert a breakpoint on that line and change the line number color to $ENV{PTKDB_BRKPT_COLOR} (Defaults to Red). Clicking on the number again will remove the breakpoint. If you disable the breakpoint with the controls on the BrkPt notebook page the color will change to $ENV{PTKDB_DISABLEDBRKPT_COLOR}(Defaults to Green).
Cursor Motion
If you place the cursor over a variable (i.e. $myVar, @myVar, or %myVar) and pause for a second the debugger will evaluate the current value of the variable and pop a balloon up with the evaluated result. This feature is not available with Tk400.
If Data::Dumper(standard with perl5.00502)is available it will be used to format the result. If there is an active selection, the text of that selection will be evaluated.
<<lessptkdb is a debugger for perl that uses perlTk for a user interface.
Main features:
- Hot Variable Inspection
- Breakpoint Control Panel
- Expression List
- Subroutine Tree
SYNOPSIS
To debug a script using ptkdb invoke perl like this:
perl -d:ptkdb myscript.pl
Usage
perl -d:ptkdb myscript.pl
Code Pane
Line Numbers
Line numbers are presented on the left side of the window.
Lines thathave lines through them are not breakable. Lines that are plain text are breakable. Clicking on these line numbers will insert a breakpoint on that line and change the line number color to $ENV{PTKDB_BRKPT_COLOR} (Defaults to Red). Clicking on the number again will remove the breakpoint. If you disable the breakpoint with the controls on the BrkPt notebook page the color will change to $ENV{PTKDB_DISABLEDBRKPT_COLOR}(Defaults to Green).
Cursor Motion
If you place the cursor over a variable (i.e. $myVar, @myVar, or %myVar) and pause for a second the debugger will evaluate the current value of the variable and pop a balloon up with the evaluated result. This feature is not available with Tk400.
If Data::Dumper(standard with perl5.00502)is available it will be used to format the result. If there is an active selection, the text of that selection will be evaluated.
Download (0.038MB)
Added: 2007-08-10 License: Perl Artistic License Price:
807 downloads
Devel::tcltkdb 0.81
Devel::tcltkdb is a Perl debugger using a Tk GUI. more>>
Devel::tcltkdb is a Perl debugger using a Tk GUI.
tcltkdb is a debugger for perl that uses perl+Tcl/Tk for a user interface.
Main features:
- Hot Variable Inspection
- Breakpoint Control Panel
- Expression List
- Subroutine Tree
SYNOPSIS
To debug a script using tcltkdb invoke perl like this:
perl -d:tcltkdb myscript.pl
Usage
perl -d:tcltkdb myscript.pl
Code Pane
Line Numbers
Line numbers are presented on the left side of the window. Lines that
have lines through them are not breakable. Lines that are plain text
are breakable. Clicking on these line numbers will insert a
breakpoint on that line and change the line number color to
$ENV{PTKDB_BRKPT_COLOR} (Defaults to Red). Clicking on the number
again will remove the breakpoint. If you disable the breakpoint with
the controls on the BrkPt notebook page the color will change to
$ENV{PTKDB_DISABLEDBRKPT_COLOR}(Defaults to Green).
Cursor Motion
If you place the cursor over a variable (i.e. $myVar, @myVar, or %myVar) and pause for a second the debugger will evaluate the current value of the variable and pop a balloon up with the evaluated result. This feature is not available with Tk400.
If Data::Dumper(standard with perl5.00502)is available it will be used to format the result. If there is an active selection, the text of that selection will be evaluated.
<<lesstcltkdb is a debugger for perl that uses perl+Tcl/Tk for a user interface.
Main features:
- Hot Variable Inspection
- Breakpoint Control Panel
- Expression List
- Subroutine Tree
SYNOPSIS
To debug a script using tcltkdb invoke perl like this:
perl -d:tcltkdb myscript.pl
Usage
perl -d:tcltkdb myscript.pl
Code Pane
Line Numbers
Line numbers are presented on the left side of the window. Lines that
have lines through them are not breakable. Lines that are plain text
are breakable. Clicking on these line numbers will insert a
breakpoint on that line and change the line number color to
$ENV{PTKDB_BRKPT_COLOR} (Defaults to Red). Clicking on the number
again will remove the breakpoint. If you disable the breakpoint with
the controls on the BrkPt notebook page the color will change to
$ENV{PTKDB_DISABLEDBRKPT_COLOR}(Defaults to Green).
Cursor Motion
If you place the cursor over a variable (i.e. $myVar, @myVar, or %myVar) and pause for a second the debugger will evaluate the current value of the variable and pop a balloon up with the evaluated result. This feature is not available with Tk400.
If Data::Dumper(standard with perl5.00502)is available it will be used to format the result. If there is an active selection, the text of that selection will be evaluated.
Download (0.31MB)
Added: 2007-08-10 License: Perl Artistic License Price:
808 downloads
Enveria IDE for Rapid Application Development 0.3
Enveria IDE for Rapid Application Development is an intuitive platform for programming robust GUI (graphical user interface) sof more>>
Enveria IDE for Rapid Application Development is an intuitive platform for programming robust GUI (graphical user interface) software.
We have launched the Enveria RAD IDE as an open source application (https://sourceforge.net/projects/enveria). Previously, the Enveria IDE was utilized as an internal development tool at Kaizen Denki Inc. -- a Toronto-based software and web development house.
Enveria is free to use for non-commercial purposes under the GPL. Users who wish to use Envria in a commercial capacity should visit the Kaizen Denki home page at http://www.kaizendenki.com.
Major Features:
* An interface that maintains an look and feel that is intuitive for those familiar with IDE software, while user friendly enough for those who are not.
* Backed up by the power of the ubiquitous C programming language. We have chosen C because it is fast, stable, powerful, portable and has a long history of use in computing. An additional bonus for us was that the API for GTK+ (the widget set we use) uses C natively.
* Our use of GTK+ allows Enveria to tap into a well-supported widget set that is available for all major desktop operating systems. On its own, GTK+ is easy to use but with Enveria it is even easier. While Enveria RAD IDE can be an interface builder for GTK+/C programs (like Glade), its power is its capabilities as a complete development tool.
* Enveria can produce code without compiling for those who wish to enhance their applications manually prior to building. Enveria programs are optimized for Make/GCC, which is a widely used combination for C development on many platforms.
Programming languages, libraries, databases, and frameworks used to develop Enveria include:
* C
* MySQL
* SQLite
* GTK+ 2
Currently Linux is the main supported platform for Enveria RAD IDE.
At the same time, we are in the process of evaluating other target operating systems including: Mac OS X, Minix 3, BSD and others.
<<lessWe have launched the Enveria RAD IDE as an open source application (https://sourceforge.net/projects/enveria). Previously, the Enveria IDE was utilized as an internal development tool at Kaizen Denki Inc. -- a Toronto-based software and web development house.
Enveria is free to use for non-commercial purposes under the GPL. Users who wish to use Envria in a commercial capacity should visit the Kaizen Denki home page at http://www.kaizendenki.com.
Major Features:
* An interface that maintains an look and feel that is intuitive for those familiar with IDE software, while user friendly enough for those who are not.
* Backed up by the power of the ubiquitous C programming language. We have chosen C because it is fast, stable, powerful, portable and has a long history of use in computing. An additional bonus for us was that the API for GTK+ (the widget set we use) uses C natively.
* Our use of GTK+ allows Enveria to tap into a well-supported widget set that is available for all major desktop operating systems. On its own, GTK+ is easy to use but with Enveria it is even easier. While Enveria RAD IDE can be an interface builder for GTK+/C programs (like Glade), its power is its capabilities as a complete development tool.
* Enveria can produce code without compiling for those who wish to enhance their applications manually prior to building. Enveria programs are optimized for Make/GCC, which is a widely used combination for C development on many platforms.
Programming languages, libraries, databases, and frameworks used to develop Enveria include:
* C
* MySQL
* SQLite
* GTK+ 2
Currently Linux is the main supported platform for Enveria RAD IDE.
At the same time, we are in the process of evaluating other target operating systems including: Mac OS X, Minix 3, BSD and others.
Download (0.92MB)
Added: 2007-02-15 License: GPL (GNU General Public License) Price:
991 downloads
MathGuard 3.0
MathGuard project is a PHP class that inserts a small piece of HTML code into your HTML form... more>>
MathGuard project is a PHP class that inserts a small piece of HTML code into your HTML form which requires the user to evaluate an expression consisting of two random numbers.
When user submits the form with the answer, the answer is hashed and compared to the security code that has been submitted as well. This way you can easily protect your forms from spambots.
Enhancements:
- This version features more complex rendering of the security question.
- This question now consists of small random letters directly inserted to HTML, instead of just writing the plain numbers into the source code of the Web page.
- This way, the protection against spambots is even stronger.
<<lessWhen user submits the form with the answer, the answer is hashed and compared to the security code that has been submitted as well. This way you can easily protect your forms from spambots.
Enhancements:
- This version features more complex rendering of the security question.
- This question now consists of small random letters directly inserted to HTML, instead of just writing the plain numbers into the source code of the Web page.
- This way, the protection against spambots is even stronger.
Download (0.040MB)
Added: 2007-07-19 License: Other/Proprietary License with Source Price:
831 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above evaluating 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