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 50.474.255 Times

Costos Variables software
Filter: All | Freeware | Demo
 

Costos Variables

< 1 2 3 4 5 > 
Added: July 05, 2013 | Visits: 491

MySQL Global User Variables UDF MySQL Global User Variables UDF is a MySQL extension to store persistent variables. This shared library adds simple user functions to MySQL in order to keep persistent shared variables in memory. These variables and their values are available to all clients. Any data can be stored into these...



Platforms: *nix

License: Freeware Size: 40.96 KB Download (41): MySQL Global User Variables UDF Download

Added: August 06, 2008 | Visits: 861

beWISE - Edelwise Basic Variables Task to task communication with VB programs made simple. This product allows you to have as many VB programs as you want communicate simply via variables. Communication is done via shared memory and is very fast. As soon as a beWise variable (Basic Edelwise Variable) is created by one VB program...





Platforms: Windows

License: Freeware Size: 2.05 MB Download (469): beWISE - Edelwise Basic Variables Download

Added: January 18, 2010 | Visits: 1.147

Net::Delicious::Constants::Config Net::Delicious::Constants::Config are constant variables for Net::Delicious default configs. SYNOPSIS use Net::Delicious::Constants qw (:config) __top Constant variables for Net::Delicious default configs..


Platforms: *nix

License: Freeware Size: 18.43 KB Download (93): Net::Delicious::Constants::Config Download

Added: May 04, 2010 | Visits: 1.725

Language::Basic::Variable Language::Basic::Variable is a Perl module to handle parsing and implementing BASIC variables. SYNOPSIS See Language::Basic for the overview of how the Language::Basic module works. This pod page is more technical. There are two sorts of variables: Arrays and Scalars. Each of those classes...


Platforms: *nix

License: Freeware Size: 52.22 KB Download (92): Language::Basic::Variable Download

Added: July 20, 2010 | Visits: 712

Devel::DumpSizes Devel::DumpSizes is a Perl module to dump the name and size in bytes (in increasing order) of variables that are available at a give point in a script. SYNOPSIS use Devel::DumpSizes qw/dump_sizes/; &Devel::DumpSizes::dump_sizes(); Or,...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (91): Devel::DumpSizes Download

Added: October 25, 2010 | Visits: 721

Devel::FindGlobals Devel::FindGlobals is a Perl module to find global variables and their size. SYNOPSIS use Devel::FindGlobals; print print_globals_sizes(); This module just runs around and over the symbol table, finds global variables, gets their sizes with Devel::Size, and then prints them out....


Platforms: *nix

License: Freeware Size: 3.07 KB Download (88): Devel::FindGlobals Download

Added: July 22, 2010 | Visits: 979

PySL PySL is a package that makes S-Lang functions and variables accessible via Python. It allows any S-Lang data type to move from S-Lang to Python scope and back (using numarray to provide the Python-side equivalent of S-Lang arrays). It also lets the user call any intrinsic or user-defined S-Lang...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (122): PySL Download

Added: September 22, 2010 | Visits: 1.208

SPOPS::Manual::Configuration SPOPS::Manual::Configuration is a description of variables used in the SPOPS configuration process. These are variables used in all SPOPS implementations. The name of the variable is the key used in the configuration hashref. Here is a fairly minimal example of a configuration hashref: 1:...


Platforms: *nix

License: Freeware Size: 286.72 KB Download (97): SPOPS::Manual::Configuration Download

Added: February 05, 2010 | Visits: 878

Thread::Tie Thread::Tie can tie variables into a thread of their own. SYNOPSIS use Thread::Tie; # use as early as possible for maximum memory savings # use default thread + tieing + create thread when needed tie $scalar, Thread::Tie; tie @array, Thread::Tie; tie %hash, Thread::Tie; tie *HANDLE,...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (101): Thread::Tie Download

Added: June 20, 2010 | Visits: 1.105

vars::global vars::global is a Perl module that tries to make global variables a little safer. SYNOPSIS # In the place/package where we want to create globals use vars::global create => qw( $foo @bar %baz ); # Add some more global symbols vars::global->create(qw( $hello @world %now )); # Somewhere...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (99): vars::global Download

Added: May 23, 2010 | Visits: 952

App::SimpleScan::Plugin::Forget App::SimpleScan::Plugin::Forget is a Perl module to forget a variables value. SYNOPSIS # In a simple_scan input file, after installing this module: # Define the variable foo: %%var foo baz bar quux # Later in the file: %%forget foo # foo is now undefined, and will not be replaced...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (88): App::SimpleScan::Plugin::Forget Download

Added: September 23, 2010 | Visits: 784

Variable::Strongly::Typed Variable::Strongly::Typed is a Perl module to let some variables be strongly typed. SYNOPSIS use Variable::Strongly::Typed; my $int :TYPE(int); # must have an int value my $float :TYPE(float); # must have a float value my $string :TYPE(string); # must not be a reference my $file...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (94): Variable::Strongly::Typed Download

Added: July 11, 2010 | Visits: 548

Devel::LeakTrace Devel::LeakTrace is a Perl module to indicate where leaked variables are coming from. SYNOPSIS perl -MDevel::LeakTrace -e { my $foo; $foo = $foo } leaked SV(0x528d0) from -e line 1 leaked SV(0x116a10) from -e line 1 Based heavily on Devel::Leak, Devel::LeakTrace uses the pluggable runops...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (88): Devel::LeakTrace Download

Added: January 01, 2010 | Visits: 951

Text::Replace Text::Replace is a Perl module to replace variables from a hash. SYNOPSIS ####### # Subroutine Interface # use Text::Replace qw(&replace_variables); $success = replace_variables($template, %variable_hash, @variable); ######## # Class Interface # use Text::Replace; $success =...


Platforms: *nix

License: Freeware Size: 73.73 KB Download (91): Text::Replace Download

Added: January 21, 2010 | Visits: 866

Env::C Env::C is a Get/Set/Unset Environment Variables on the C level. SYNOPSIS use Env::C; my $key = "USER"; $val = Env::C::getenv($key) || ; Env::C::setenv($key, "foobar", [$override]); $new_val = Env::C::getenv($key) || ; Env::C::unsetenv($key); my $ar_env = Env::C::getallenv(); print...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (94): Env::C Download

Added: July 10, 2010 | Visits: 620

Perl6::Contexts Perl6::Contexts - array and hash variables turn into references to themselves when used in non-numeric scalar context or as function arguments. SYNOPSIS my @foo = ( 1 .. 20 ); my $foo = @foo; # same as: my $foo = @foo; my $foo = 0 + @foo; # unchanged - length of @foo $obj->some_method(10,...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (89): Perl6::Contexts Download

Added: January 25, 2010 | Visits: 671

Four Variables Four Variables is a pre-algebra investigation for students in grades five through nine. The program secretly assigns values to four variables (w, x, y, and z) and the student must find these values by requesting the computer to perform operations with the variables. For example: the student might...


Platforms: Mac

License: Freeware Size: 254 KB Download (90): Four Variables Download

Released: January 08, 2009  |  Added: September 15, 2010 | Visits: 721

LeoCalculator LeoCalculator is an application for performing calculation of mathematical expressions that could include not only basic operations but also functions and brackets. Edit box "Expression" has to contain a string of mathematical expression that is supposed to be calculated. It can contain:...


Platforms: Windows

License: Commercial Cost: $4.55 USD Size: 770.06 KB Download (975): LeoCalculator Download

Released: March 05, 2012  |  Added: March 22, 2012 | Visits: 815

Eveditor Free Eveditor stands for 'Environment variables editor', the first Windows environment management application designed to be beautiful, easy to use, and yet feature-rich. Eveditor helps you organize and streamline your use of system variables - including the ever-fickle System PATH - and optimize...


Platforms: Windows

License: Freeware Size: 704 KB Download (99): Eveditor Free Download

Added: November 01, 2013 | Visits: 542

Code Replicator General purpose interactive programmer's tool for creating large blocks of similar code from list(s) of variables. It can create stupid code faster than you!


Platforms: Mac

License: Freeware Size: 696.32 KB Download (56): Code Replicator Download

< 1 2 3 4 5 >