WareSeeker Search Software

numbers


Sponsored Links
Collapse All
Software Name Software Type Category Price
1

numbers 1.0


windows Graphic Apps->CAD Free
View Detail
Download numbers 1.0Download numbers 1.0
233 KB
numbers is a very small application that will help you easily convert numbers to/from number systems 2..16.

2

Find numbers


script Flash Free
View Detail
Download Find numbersDownload Find numbers
Youll have to find each number in order from 1 to 61 and click on it. Train your concentration and mind. Do it day to day and check how many mistakes you do. Try to decrease mistakes and time to find numbers
3

Prime numbers


script PHP Free Additional Info: Free for personal use
View Detail
Download Prime numbersDownload Prime numbers
This is a great script if you want to calculate the prime numbers. The script is extremely fast and can calculate any prime number. Depending on your settings in php.ini this script can run for ever and calculate every possible prime number. This code can be easy modified for generating passwords or other security features.
4

ProBullets & Numbers 1.0


mac Utilities->DTP Prepress $49
View Detail
Download ProBullets & Numbers 1.0Download ProBullets & Numbers 1.0
700 KB
ProBullets & Numbers was created to help you make bulleted and ordered (with sequential numbers/letters) lists in a snap.

ProBullets & Numbers is a palette for formatting bulleted and ordered lists automatically.

Anyone who has worked in Quark for any time knows that creating bulleted lists and ordered lists can be tedious, partially because of the precise control over these elements that Quark gives you, unlike common word processors.

While these functions are commonplace in word processors and web editing programs, they have always been absent in QuarkXPress until now!

Here are some key features of "ProBullets Numbers":

· Bullets?Applies current bullet settings to selected paragraphs
· Numbers?Applies current ordered list settings to selected paragraphs
· Indent left?Applies current indent settings to selected paragraphs (moving down one level)
· Indent right?Applies current indent settings to selected paragraphs (moving up one level)
· Select from list of possible ordering methods and combine them (right).



5

Lotto Numbers 1.0.0


pda HOBBIES->Misc Fun FREE
View Detail
Download Lotto Numbers 1.0.0Download Lotto Numbers 1.0.0
7.00 KB
Lotto Numbers generates lottery numbers, allowing you to specify the number range and the amount of numbers required.


6

Contact Numbers 1.5


windows Home Shell Desktop->Clipboard Utilities Free
View Detail
Download Contact Numbers 1.5Download Contact Numbers 1.5
298 MB
Contact Numbers is an uncomplicated way to store the Phone numbers/Emails of Friends

7

Random Numbers in PHP


script PHP Free
View Detail
Download Random Numbers in PHPDownload Random Numbers in PHP
In this tutorial you will learn how to generate random numbers using PHP. It illustrates three helpful examples that uses random numbers: Generating a random number between 0 and 9, Simple slots script that generates multiple random numbers, and random text link ads.
8

Producing Random Numbers


script C and C plus plus Free
View Detail
Download Producing Random NumbersDownload Producing Random Numbers
This tutorial shows you how to produce random numbers using the rand and srand functions.
9

Net2Phone Access numbers 1.0


pda System Utilities->Communications FREE
View Detail
Download Net2Phone Access numbers 1.0Download Net2Phone Access numbers 1.0
26.00 KB
Net2Phone Access numbers - Over 300 local and international access numbers for net2phone direct users.

Local dial-up access is cheaper than using their 800 number.

Requirements:

· Any hardware
· Any OS
· SmartList To Go
· MobileDB

10

Missing Numbers 1.0


windows Home Education->Mathematics $6.00
View Detail
Download Missing Numbers 1.0Download Missing Numbers 1.0
881 KB
Improve your basic arithmetic skills by finding the missing number/s in the operation displayed or by playing the missing numbers game. You can select any or all of the operations to ask from, set time limit, and enter answers from keyboard or from multiple choice answers. To improve your basic multiplication and addition skills you can play the missing numbers game with numbers 1 to 10.
11

Math::Numbers 0.000000001


linux Programming->Libraries Free
View Detail
Download Math::Numbers 0.000000001Download Math::Numbers 0.000000001
0.004 MB
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.


12

Remember Numbers 1.0


windows Home Leisure->Other $9
View Detail
Download Remember Numbers 1.0Download Remember Numbers 1.0
719 KB
Remember Numbers will teach you how to remember long numbers. Look at your cellular phone. Note that several letters correspond to the figure on each button. Only "1" and "0" have no letters corresponding to them, but only the " " and "+" signs.

Remember Numbers will show you all possible textual variants of the specified number. Select the one that you can memorize better and use it.

Here are some key features of "Remember Numbers":

· You can encode not only phone numbers, but any number.
· You can use this method as the easiest way to encode your data. If you carry with you numbers that you do not want anyone else to know, you can carry a list of text strings with you instead of actual numbers. A regular person will think that they are not phone numbers, but some passwords.
· Free lifelong updates will free you from repeated payments and will surprise you with new features.


Limitations:

· 14 days trial
· 350 combinations limitation

13

Learn Numbers 1.0


windows Windows Widgets->Widget Miscellaneous Free
View Detail
Download Learn Numbers 1.0Download Learn Numbers 1.0
58.8 KB
Learn Numbers is a Widget that will help you learn how to count in a foreign language.

It functions like a set of flash cards, displaying each number with its foreign-language spelling (in blue) and an English-based phonetic spelling (in red).

Learn Numbers is a free widget which helps you to learn how to count in a foreign language.You can move forward and backward through the numbers manually at your own pace, or set the Widget into Auto Mode and it will advance through the numbers displaying each for five seconds.

This Widget currently supports five languages: Italian, German, French, Spanish, and Japanese.


14

Memorize Numbers 1.0


windows Windows Widgets->Widget Miscellaneous Free
View Detail
Download Memorize Numbers 1.0Download Memorize Numbers 1.0
16 KB
Memorize Numbers is a widget which will help you to train your memory.

Displays a number which you have to recall after it disappears.

If you typed the number correctly, another number with one more digit will be displayed, and so on.


15

Golden Numbers 1.0


windows Utilities->System Tools Free
View Detail
Download Golden Numbers 1.0Download Golden Numbers 1.0
481 KB
If you want to protect your software against piracy you need a unique key as a digital signature of the computer on witch your software is installed. Golden Numbers can help you by getting unique IDs from your hardware. As you know the HDD serial number is unique around the world!
16

Remember Numbers 1.01


windows Business Finance->Communication $9.95
View Detail
Download Remember Numbers 1.01Download Remember Numbers 1.01
717 KB
Do you sometimes feel embarrassed because you cannot recall a phone number? Try an alternative way to memorize phone numbers. Look at your cellular phone. Note that several letters correspond to the figure on each button. Only 1 and 0 have no letters corresponding to them, but only the – and + signs. The program will show you all possible textual variants of the specified number. Select the one that you can memorize better and use it.
17

Numbers & Notes 1.0


mac Education->Math Science $10
View Detail
Download Numbers & Notes 1.0Download Numbers & Notes 1.0
290 KB
Numbers & Notes is basically intended to help you do whatever you would do with a calculator, pen, and paper--just a little bit better. Lets start with the "Notes" part: you can put text along with numbers onto the tape to help you more easily keep track of what youre calculating. While you could do this easily enough by hand on a calculator with a physical tape, we havent found any computer based calculator that allows this. This can be especially useful on saved tapes (and yes, you can save them, too).

Once you have a fairly long tape, if you need to check it against your paper records, you can have Numbers & Notes read back your tape to you. No need to look back and forth from screen to page--although you might want to spend some time choosing a voice you like from the System Preferences. And if you dont want to hear your whole tape, just highlight a selection before you tell Numbers & Notes to speak.

Finally, although we think we know just how the tape should look, why should we decide? Set different colors for the numbers and notes. Make them smaller or larger. Make the tape yellow and negative totals orange. Well, maybe not, but anything short of stripes is up to you. Those are some of the ways you can change the appearance of the tape, but you can also change its behavior: tell it how you want the operators to be spaced. Set whether or not you want a running total.

So even if you just need a calculator to figure out how much youd get after taxes if you won the lottery, try out Number & Notes. Its cheap, its big--you dont have to squint at it--and it just looks better, because you make it look the way you want it to.

18

Conversion into roman numbers


script PHP Free
View Detail
Download Conversion into roman numbersDownload Conversion into roman numbers
A php tutorial that shows how to use while cycle to convert a number into roman numbers.
19

Butler: IP Numbers 2.1.2


mac Utilities->Internet Utilities Free
View Detail
Download Butler: IP Numbers 2.1.2Download Butler: IP Numbers 2.1.2
79 KB
IP Numbers is a plug-in for Butler that displays your current IPv4 (Example: 127.0.0.1) and IPv6 (Example: fe80::1) numbers - either in an alert window or in Butlers menus. When browsing an IP numbers menu, selecting a menu item will put the respective IP number on your clipboard.

You can also go to the "IP Numbers" section of Butlers preferences window and configure the IP Numbers plug-in to show an alert window whenever your IP numbers change.

Whats New in This Release:

· IP Numbers is now compiled as a universal binary. This means that it runs natively on both PowerPC- and Intel-based Macs.



20

Canada Direct Numbers 1.0


pda Business->Databases FREE
View Detail
Download Canada Direct Numbers 1.0Download Canada Direct Numbers 1.0
5.00 KB
Canada Direct Numbers is a database that consists of telephone numbers from 124 countries or regions around the world. It is advisable to always check for changed or new phone numbers before the trip.

Requirements:

· Palm IIIc
· Palm OS v3.5
· thinkDB

My Software


You have not saved any software. Click "Save" next to each software to save it to your software basket


Related Search