Main > Free Download Search >

Free numbers in spanish software for linux

numbers in spanish

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3604
number 2.30

number 2.30


number is a perl script that will print the English name of a number. more>>
number is a perl script that will print the English name of a number. One can print names of extremely large numbers (e.g. 1e1234567). Number can be run on the command line, or as a CGI script when run as number.cgi.

Number prints names in both the American and European naming system. It can also print the decimal expansion of a number in either naming system.

<<less
Download (0.028MB)
Added: 2006-09-19 License: Freely Distributable Price:
1130 downloads
Regnum Online Beta

Regnum Online Beta


Regnum Online is a MMORPG game, that wants to invite you to join our world and play for free. more>>
Regnum Online is a MMORPG game, that wants to invite you to join our world and play for free. The only thing we require is that you fight for your realm.
Regnum Online is a massive multiplayer online role playing game (MMORPG MMORPG) for the PC where the player are immersed in a 3D virtual world. There they can live as Elves, Humans Dwarves, or Dark Elves having exciting adventures, exploring the wild lands or joining an army of players to take on the other kingdoms armies."
The game is in beta stage, but already offers many quests, items, and monsters, not to mention the large number of both english-, spanish-, and portuguese-speaking players youll meet in-game.
Main features:
- Regnum offers 3 realms to choose from.
- 9 fully customizable player characters.
- Hundreds of quests.
- The ability to capture forts and castles.
- Expansive lands to explore.
- Glorious graphical environments.
<<less
Download (1.8MB)
Added: 2006-12-26 License: Freeware Price:
1040 downloads
SpanishTrans 1.1

SpanishTrans 1.1


SpanishTrans provides a a very simple, complete, fast and clean dictionary, which allows you to translate English to Spanish. more>>
SpanishTrans provides a a very simple, complete, fast and clean dictionary, which allows you to translate English to Spanish.

This is a very simple, complete, fast and clean dictionary, which allows you to highlight an English word in the page that youre reading and get immediately the Spanish translation.

No matter if the selected word is a plural, conjugated verb, etc., the translator realizes about the right word showing you its meaning.

<<less
Download (0.003MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
939 downloads
Number::WithError 0.08

Number::WithError 0.08


Number::WithError is a Perl module that contains numbers with error propagation and scientific rounding. more>>
Number::WithError is a Perl module that contains numbers with error propagation and scientific rounding.

SYNOPSIS

use Number::WithError;

my $num = Number::WithError->new(5.647, 0.31);
print $num . "n";
# prints 5.65e+00 +/- 3.1e-01
# (I.e. it automatically does scientific rounding)

my $another = $num * 3;
print $another . "n";
# propagates the error assuming gaussian errors
# prints 1.69e+01 +/- 9.3e-01

# trigonometric functions also work:
print sin($another) . "n";
# prints -9.4e-01 +/- 3.1e-01

my $third = $another ** $num;
print $third. "n";
# propagates both errors into one.
# prints 8.7e+06 +/- 8.1e+06

# shortcut for the constructor:
use Number::WithError witherror;
$num = witherror(0.00032678, [2.5e-5, 3e-5], 5e-6);
# can deal with any number of errors, even with asymmetric errors
print $num . "n";
# prints 3.268e-04 + 2.5e-05 - 3.00e-05 +/- 5.0e-06
# Note: It may be annyoing that they dont all have the same
# exponent, but they *do* all have the sam significant digit!

This class is a container class for numbers with a number of associated symmetric and asymmetric errors. It overloads practically all common arithmetic operations and trigonometric functions to propagate the errors. It can do proper scientific rounding (as explained in more detail below in the documentation of the significant_digit() method).

You can use Math::BigFloat objects as the internal representation of numbers in order to support arbitrary precision calculations.

Errors are propagated using Gaussian error propagation.

With a notable exception, the test suite covers way over ninety percent of the code. The remaining holes are mostly difficult-to-test corner cases and sanity tests. The comparison routines are the exception for which there will be more extensive tests in a future release.

<<less
Download (0.027MB)
Added: 2007-07-05 License: Perl Artistic License Price:
841 downloads
Math::Numbers 0.000000001

Math::Numbers 0.000000001


Math::Numbers is a Perl module that contains methods for mathematical approaches of concepts of the number theory. more>>
Math::Numbers is a Perl module that contains methods for mathematical approaches of concepts of the number theory.

SYNOPSIS

use Math::Numbers;

my $a = 123;
my $b = 34;

my $numbers = Math::Numbers->new($a, $b [, ...]);

print "They are coprimes (relatively primes)!n" if $numbers->are_coprimes;
print "The greatest common divisor of these at least two numbers is ", $numbers->gcd;

my $number = Math::Numbers->new($a);

print "It is prime!n" if $number->is_prime;

my @divisors = $number->get_divisors;

print "$a is divisor of $b!n" if $number->is_divisor_of($b);

Math::Numbers is quite a simple module on matters of programming. What its interesting is the focus and approach it is intended to be made from the Number Theory basis for Perl beginners (like me) and also for young mathematicians (like me).

The normal topics of Number Theory include divisibility, prime numbers (which is separately intended to be covered by Math::Primes), congruences, quadratic residues, approximation for Real numbers, diophantine equations, etc. and all this is intended to be convered by the module on the concept on getting and setting values and also retriving the proof methods.

METHODS

new

# Some methods require more than only one argument.
my $numbers = Math::Numbers->new($p, $q, ...);

# Some methods require only one.
my $number = Math::Numbers->new($p);

Create a Math::Numbers object. Note that some of the methods will require objects created with only one or a defined numbers of arguments.

gcd
my $gcd = $numbers->gcd;

Calculation of the Greatest Common Divisor. This is made by two different methods which are described below: Blutos algorithm and Euclidean algorithm: The former is used when computing GCD for more than two integers; the latter is used when getting the GCD for two numbers to improve speed. See below for information on each.

Bluto_algorithm

You will mostly not require to call this method, but directly gcd(). Blutos algorithm uses a brute force calculation used by mathematicians to get divisors and then GCD also called Primality Test. Bluto takes some spinaches stolen from Popeye and starts dividing m all the way through 2 to m/2.

Euclidean_algorithm

Euclid rocks. I have a very nice Budgerigar (http://en.wikipedia.org/wiki/Budgerigar) called the same in honor of him (have to upload a pic of him).

As of now, this algorithm is only computed on two integers. From the Wikipedia entry: Given two natural numbers a and b: check if b is zero; if yes, a is the gcd. If not, repeat the process using (respectively) b, and the remainder after dividing a by b. This is exactly what our method does.
is_divisor_of

print "Yes, $p is divisor of $a...n" if $number->is_divisor_of($a);

Lets see if the number from the object is a divisor of $a, which means that the division $number/$a will return an integer (not necesarily a natural). If it does, itll return 1; 0, otherwise.

get_divisors
my @divisors = $number->get_divisors;

What are the divisors of the number brought by the object? This only includes the Natural numbers.

is_prime
print "$p is not prime!n" unless $number->is_prime

Returns 0 or 1 if the number from the object is prime or not, respectively. This method uses the, a bit slow, primality test.

are_coprimes
print "They are coprimes because their GCD is 1!n" if $numbers->are_coprimes;

Are the numbers from the object coprimes (relatively primes)? This means, the GCD is 1; (a, b, c, ...) = 1. Returns 1 or 0.

<<less
Download (0.004MB)
Added: 2007-07-13 License: Perl Artistic License Price:
833 downloads
Scalar::Number 0.001

Scalar::Number 0.001


Scalar::Number is a Perl module with numeric aspects of scalars. more>>
Scalar::Number is a Perl module with numeric aspects of scalars.

SYNOPSIS

use Scalar::Number qw(scalar_num_part);

$num = scalar_num_part($scalar);

use Scalar::Number qw(sclnum_is_natint sclnum_is_float);

if(sclnum_is_natint($value)) { ...
if(sclnum_is_float($value)) { ...

use Scalar::Number qw(sclnum_val_cmp sclnum_id_cmp);

@sorted_nums = sort { sclnum_val_cmp($a, $b) } @floats;
@sorted_nums = sort { sclnum_id_cmp($a, $b) } @floats;

This module is about the numeric part of plain (string) Perl scalars. A scalar has a numeric value, which may be expressed in either the native integer type or the native floating point type. Many values are expressible both ways, in which case the exact representation is insignificant. To fully understand Perl arithmetic it is necessary to know about both of these representations, and the differing behaviours of numbers according to which way they are expressible.
This module provides functions to extract the numeric part of a scalar, classify a number by expressibility, and compare numbers across representations.

<<less
Download (0.009MB)
Added: 2007-05-21 License: Perl Artistic License Price:
886 downloads
Ryans In/Out Board 2.2

Ryans In/Out Board 2.2


Ryans In/Out Board is a perl driven in/out board for small-medium size organisations. more>>
Ryans In/Out Board is a perl driven in/out board for small-medium size organisations that needs staff to be aware of other staff whereabouts.
(Ryans In/Out Board will work for larger organisations but it may be more cumbersome to use with larger numbers of staff).
Main features:
- Displays name,phone,status,comments and date/time for each staff member
- Staff are able to quickly change their status by either clicking on their name or calling the main script with a "name" parameter.
- Standard comments are provided (Lunch, Leave etc) but can be added to/replaced by any comment the user wishes.
- With the aid of a cron job it will also clear all staff as OUT every night, without removing any comments they have entered.
- It has a simple and clear interface and users can also search for the status of any staff member.
- The generated page can be automatically refreshed at your chosen interval and status colours are defined by you.
- It also displays staff internal phone numbers and you can use your own header and footer files.
<<less
Download (0.018MB)
Added: 2007-05-14 License: GPL (GNU General Public License) Price:
893 downloads
Destiney Scripts Lottery 0.1.0

Destiney Scripts Lottery 0.1.0


Destiney Scripts Lottery is a powerball lottery number analyzer and quick picker. more>>
Destiney Scripts Lottery project is a powerball lottery number analyzer and quick picker.
Destiney Scripts Lottery script is a Web application that helps to pick your "lucky" Powerball Lottery numbers.
Random quick picks use statistical logic based on previous winning numbers to inversely weight the results for better "random" picks.
The latest winning Powerball results can be imported as well.
Main features:
- Automated Powerball quick pick.
- Weighted picks based on previous winning numbers
- Import system for latest winning numbers
<<less
Download (0.008MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1027 downloads
Test::Number::Delta 1.03

Test::Number::Delta 1.03


Test::Number::Delta is a Perl module to compare the difference between numbers against a given tolerance. more>>
Test::Number::Delta is a Perl module to compare the difference between numbers against a given tolerance.

SYNOPSIS

# Import test functions
use Test::Number::Delta;

# Equality test with default tolerance
delta_ok( 1e-5, 2e-5, values within 1e-6);

# Inequality test with default tolerance
delta_not_ok( 1e-5, 2e-5, values not within 1e-6);

# Provide specific tolerance
delta_within( 1e-3, 2e-3, 1e-4, values within 1e-4);
delta_not_within( 1e-3, 2e-3, 1e-4, values not within 1e-4);

# Compare arrays or matrices
@a = ( 3.14, 1.41 );
@b = ( 3.15, 1.41 );
delta_ok( @a, @b, compare @a and @b );

# Set a different default tolerance
use Test::Number::Delta within => 1e-5;
delta_ok( 1.1e-5, 2e-5, values within 1e-5); # ok

# Set a relative tolerance
use Test::Number::Delta relative => 1e-3;
delta_ok( 1.01, 1.0099, values within 1.01e-3);

At some point or another, most programmers find they need to compare floating-point numbers for equality. The typical idiom is to test if the absolute value of the difference of the numbers is within a desired tolerance, usually called epsilon. This module provides such a function for use with Test::Harness. Usage is similar to other test functions described in Test::More. Semantically, the delta_within function replaces this kind of construct:

ok ( abs($p - $q) < $epsilon, $p is equal to $q ) or
diag "$p is not equal to $q to within $epsilon";

While theres nothing wrong with that construct, its painful to type it repeatedly in a test script. This module does the same thing with a single function call. The delta_ok function is similar, but either uses a global default value for epsilon or else calculates a relative epsilon on the fly so that epsilon is scaled automatically to the size of the arguments to delta_ok. Both functions are exported automatically.

Because checking floating-point equality is not always reliable, it is not possible to check the equal to boundary of less than or equal to epsilon. Therefore, Test::Number::Delta only compares if the absolute value of the difference is less than epsilon (for equality tests) or greater than epsilon (for inequality tests).

<<less
Download (0.018MB)
Added: 2007-01-18 License: Perl Artistic License Price:
1015 downloads
Linux Letters and Numbers 0.1.95

Linux Letters and Numbers 0.1.95


Linux Letters and Numbers project is an educational childrens game for linux. more>>
Linux Letters and Numbers project is an educational childrens game for linux.
Linux Letters and Number is a fun and educational learning game intended for children 2 and up.
It helps children learn or improve their letters, numbers, spelling, and vocabulary skills through the use of interesting pictures.
It also helps them develop important computer skills too.
It is written in C using the GTK and GDK_Imlib libraries.
Main features:
- Extensible - add new images yourself without having to make changes to the program. With support for gdk_imlib, you can now use common image formats, including common formats like gif, jpeg, xpm, png, and tiff.
- Dynamic - each letter or number can be represented by numerous pictures, each being displayed randomly.
- Flexible - you can even have more than one picture for a given word, by using a simple versioning scheme (ie Apple.1.xpm, Apple.2.xpm)
- Interesting - because you can change the game, its different every time!
<<less
Download (0.17MB)
Added: 2006-10-27 License: GPL (GNU General Public License) Price:
1097 downloads
Bluefish 1.1.3

Bluefish 1.1.3


Bluefish is a GTK-based Web development editor. more>>
Bluefish is a programmers Web development editor written using GTK, designed to save the experienced webmaster some keystrokes.
It features a multiple file editor, multiple toolbars, custom menus, image and thumbnail dialogs, open from the Web, CSS dialogs, PHP, HTML, Java, C, and XML support, external program integration (tidy, weblint, make, javac), and lots of wizards.
Main features:
- A What You See Is What You Need interface
- Multiple document interface, easily opens 500+ documents (tested 3500 documents simultaneously)
- Project support, enables you to work efficiently on multiple projects
- Support for remote files using gnome-vfs (depending on your gnome-vfs setup, youll have FTP, SFTP, HTTP, HTTPS, WebDAV, Samba and more)
- Customizable syntax highlighting based on Perl Compatible regular expressions, with subpattern support and default patterns for
- HTML
- PHP
- C
- Java
- JavaScript
- Java server pages (JSP)
- SQL
- XML
- Python
- Perl
- Cascading stylesheets (CSS)
- ColdFusion
- Pascal
- R
- Octave/Matlab
- Anti aliased text window
- Multiple encodings support, can convert between different character sets, supports multibyte characters, unicode, UTF8 etc.
- Line numbers along the document, bookmarks in documents and an excellent search function
- Nice wizards for startup, tables, frames, and others
- Dialogs for many HTML tags, with all their attributes
- HTML toolbar and tearable menus
- Compliance with the Gnome and KDE user interface guidelines where possible
- User-customizable toolbar for quick access to often used functions
- Open files based on filename patterns and/or content
- Fully featured image insert dialog
- Thumbnail creation and automatically linking of the thumbnail with the original image
- Multi thumbnail generation for easy creation of photo albums or screenshot pages
- A custom menu, specify your own tags or sets of code, and define your own dialogs
- Very powerful search and replace, allowing POSIX and Perl Compatible regular expressions and sub-pattern replacing
- Custom search and replace pattern support for the Custom menu
- Excellent unlimited undo/redo functionality
- Function reference browser, including reference files for PHP, CSS, Python and obviously HTML
- Configurable recent documents and recent directories functionality
- Complete translations in Brasilian Portuguese, Bulgarian, Chinese, Danish, Finnish, French, German, Hungarian, Italian, Norwegian, Polish, Portuguese, Russian, Spanish, Swedish and Tamil. Some other languages are partially supported.
- User customizable integration of many programs, including weblint, tidy, make, javac etc. etc.
- Auto tag closing for HTML and XML documents
- Escape functions for HTML and XML documents
<<less
Download (1.9MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
958 downloads
Gimp User Manual 0.12

Gimp User Manual 0.12


GIMP User Manual project is a user manual for the GIMP. more>>
GIMP User Manual project is a user manual for the GIMP. It is written for the GIMP Help Browser, but can produce help pages for other formats as well.
Enhancements:
- New content (incl. spelling and grammar fixes) for German, French, Italian, Norwegian, Russian, Spanish and Korean
- The PDF version of the manual is now generated using dblatex
- Lots of bug fixes
<<less
Download (40MB)
Added: 2007-03-08 License: (FDL) GNU Free Documentation License Price:
975 downloads
NxServLiv 1.4.0

NxServLiv 1.4.0


NxServLiv is a program for using remote sessions with NX. more>>
NxServLiv allow compressed remote X sessions using NoMachines (X11 based) NX libraries. It is like an SSH terminal, but graphical.

It works on network connection types ranging from modem to LAN, with different compression ratios. It was originally developed for the Spanish distribution LiVux.
<<less
Download (1.8MB)
Added: 2005-04-21 License: GPL (GNU General Public License) Price:
1647 downloads
Phonetic for Linux 1.0

Phonetic for Linux 1.0


A program that translates text to the phonetic alphabet. more>> It is freeware with the source code avaliable. You can run it in Linux or Windows.
Phoneic finds words within telephone numbers. Phonetic also converts phonetic telephone numbers into numeric digits.
All words found within the given telephone number will be listed. If you click on a word, every combination in which that word is included will be displayed.
<<less
Download (809.72MB)
Added: 2009-04-22 License: Freeware Price: Free
187 downloads
Free Unlisted Phone Numbers Lookup Tool 2.0

Free Unlisted Phone Numbers Lookup Tool 2.0


With the Free Unlisted Phone Numbers Lookup Tool, You Can Input Unknown Numbers and Run them Across Databases of Phone Numbers to See if the Owners I... more>> <<less
Download (532KB)
Added: 2009-04-14 License: Freeware Price: Free
195 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5