Home Featured Top 40 Software Reviews Link To Us Advertise



russian traditional clothing

video hosting

лучшее сео продвижение сайтов

томск новости

Useful Resources:

C: \ Web Development \ Java & JavaScript \ InWords 4.6 \ Author


Opens in new window

InWords 4.6 - Author Info Page

Description: Java code to converts number to words in any of 24 languagues... (more)


Author Info for InWords 4.6

Author/Company Name: Canadian Mind Products

Country: Canada

Web Site: http://mindprod.com

Programs listed: 86

Share |


Other listings by this author

Holiday Calculatior iconHoliday Calculatior 4.7   (Downloads: 688)
Calculate when 66 holidays occur in any given year. Calculates when various holidays occur in any given year BC or AD.
Designed to be cannibalised to include the calculation routines in your
own programs. You might use it to prepare paper calenders well in
advance or electronic calendars. You might also use the logic in computer
programs that compute payrolls, bus schedules, or club meetings. You
might use it in writing novels or researching historical events. It can
als...

Comparators iconComparators 1.4   (Downloads: 294)
Comparator classes to include in your Java programs. Java classes to include in your programs. Includes:
HTMLArrayComparator.java: Compares two arrays of Strings of HTML, ignoring embedded tags.
HTMLComparator.java: Compares two Strings of HTML, ignoring embedded tags.
StringComparator.java: Compares two Strings, case sensitive.
StringComparatorIgnoreCase.java: Compares two Strings, case insensitive.

Not useful on its own, though you can run the debugging harness with:

...

RadixSort iconRadixSort 1.6   (Downloads: 193)
RadixSort is a fast internal sort written in Java that mimics a card sorter. RadixSort is a fast internal sort written in Java that
mimics a card sorter. Source provided. It is faster than
both HeapSort and QuickSort. It sorts using a comparision
routine you provide to compare two elements to be sorted
plus a method to extract individual bytes from the keys to
be sorted. The time to sort each item unlike most sorts,
does not increase with larger sorts. It depends rather on
the key length.

Wavelength iconWavelength 1.3   (Downloads: 239)
Wavelength creates Color objects given the light wavelength or the frequency Wavelength creates Color objects given the wavelength or
the frequency of the light rather than the usual RGB or HSB.

instead of:
Color c = new Color(255, 0, 0);
use the frequency in nanometers, and gamma 0.0. .. 1.0.
(gamma is intensity/brightness.)
Color c = Wavelength.wvColor( 400.0f, 0.80f );
The visible range of the spectrum is 380..780 nanometers.
Smaller is bluer.

or using frequency in Terahe...

Accumulate iconAccumulate 1.3   (Downloads: 179)
Used to accumulate values by category. Used to accumulate values by category. It might be useful
for example in a billing program to accumulate hours by
various categories.

It could be used to count how many times various words
occurred in a document.

All you need is:

buckets.accumulate( "somecategory", someamount );

And Accumulate looks after creating the buckets to
accumulate new categories for you.

e....

Common11 iconCommon11 2.8   (Downloads: 358)
common utility classes that work under Java 1.1+ common utility classes that work under Java 1.1 without using Arraylists or Swing.

Class library.
Requires Java version 1.1 or later.

BigDate: simplified date handling when you want dates without times.
CMPAboutBox: a proper about box that provides useful information.
ImageInfo: information about a GIF, png, jpg.
ImageViewer: component to display an image
Limiter: cap, corral and h...

Untouch iconUntouch 2.4   (Downloads: 405)
Reverts files dates back if the files have not really changed. Documentation on the original student project outline
mindprod.com/projects/untouchproj.html
This explains how it works and some of its uses.

Untouch supports the following command line switches which appear
before the directories.
-c or -clear = clear history first and take current file times as the new revert-to point.
-f or -force = revert files back to previous dates whether they have changed or not.
-h or -help =...

Spinner iconSpinner 1.1   (Downloads: 326)
DateSpinner, hex and formatted dollar input for Java JSpinner. Spinner consists of source for classes for a DateSpinner and to add hex and
formatted dollar input/output for Java JSpinner to your own
Java programs.

Spinner offers two NumberFormatter classes you can use with
a JSpinner. One is HexNumberFormatter which lets your
JSpinner range over hex values. The other is
DollarNumberFormatter which lets your JSpinner range over
dollar values. It works better than JSpinner.NumberEd...

FontSaver iconFontSaver 1.4   (Downloads: 209)
FontSaver shares Font objects instead of creating new ones. FontSaver shares Font objects instead of creating new ones to cut
down on the RAM and time needed to create Font and Font peer objects.
Profiling often shows the creation of too many Font objects is the
cause of poor performance.

See the source code for how to incoporate it into your own programs.
It does nothing on its own....

Boyer iconBoyer 1.5   (Downloads: 236)
Fast string search (indexOf) using the Boyer-Moore algorithm. Fast string search (indexOf) using the Boyer-Moore
algorithm. Incorporate this class into your own Java
programs to rapidly search strings.

use:
import com.mindprod.Boyer.Boyer;
...
Boyer b = new Boyer("dogcatwombat");
int where = b.indexOf("cat");
or
int where = Boyer.indexOf("dogcatwombat","cat");

Boyer-Moore is about twice as fast as String.indexOf wh...

LEDataStream iconLEDataStream 1.8   (Downloads: 227)
Little-endian replacements for DataInputStream, DataOutputStream and RandomAcces Little-endian replacements for DataInputStream, DataOutputStream and RandomAccessFile. They work just like DataInputStream, DataOutputStream and RandomAccessFile except they work with little-endian binary data. Normally Java binary I/O is done with big-endian data, with the most significant byte of an integer or float first. Intel and Windows 95 tend to work with little endian data in native files. LEDataInputStream, LEDataOutputstream and LERandomAccessFile will le...

Honk iconHonk 1.5   (Downloads: 224)
Plays one or more of the Standard Windows sounds or wav files. Plays one or more of the Standard Windows sounds, triggered
purely from the command line.

use:

honk
- Plays the default system sound.

honk SystemStart SystemHand SystemQuestion
- Plays the given list of standard system sounds (usually just one).
- they are case-insensitive (you can get the case wrong and it will still work).

Possible sound names are listed in the registry...

HunkIO iconHunkIO 1.7   (Downloads: 238)
Java classes to readEntireFile, create a temp file etc. Java classes to include in your own programs. They let you read or write a file in one fell swoop into RAM. It also includes createTempFile method that is more convenient to use than Sun's File.createTempFile. It also includes PrintWriterPlus that converts linefeeds to platform specific line feeds even when they are embedded in data.

Why the three linked ball logo? It symbolises processing a file in line-sized chunks....

AmericanTax iconAmericanTax 3.8   (Downloads: 422)
Calculates American sales taxes state and district Calculates American sales taxes, state and district.

Java Applet that can also be run as an application.
Requires Java version 1.5 or later.

Java source code and sample HTML included.

This version computes by adding sales tax to a base price.
It also works in reverse given the total paid working
backwards to get the tax and original price. In other words
it will tell you the sticker price to make somet...

Mouse iconMouse 1.4   (Downloads: 244)
In Java, allows you to find out where the mouse in on the screen In Java, allows you to find out where the mouse in on the
screen, even when it is not over one of your apps. This has
similar function to MouseInfo.getPointerInfo in Java 1.5+.
This class will work in any version of Java.

It uses JNI and a DLL, so it only works on Windows.

You must install the nativemouse.dll somewhere on the path.

Then your programs can find out the x and y position of the
mouse, [(0,0...

JDisplay iconJDisplay 4.5   (Downloads: 384)
JDisplay displays colorised program listings in web pages. JDisplay displays Java, HTML, bat, SQL, ini, csv, xml, mft
properties... files a variety of colours, fonts, sizes
and weights to help make them more presentable and readable.

Why would you use it? For the same sorts of reasons you use
colours and fonts in an IDE like IntelliJ or Eclipse. They
make the code much easier to understand.

There is no server-side code used. Java utilities parse the
code snippets i...

Submitter iconSubmitter 16.4   (Downloads: 1031)
Submitter will submit your PAD *.xml program descriptor file to 199 PADsites. Submitter will submit your PAD *.xml program descriptor file to 199 PADsites.
Unlike other submission programs, it submits only to PADSites
that welcome automated submissions. Compose your PAD *.xml file using a
program like PADGen, then upload it you your website. Then enter the URL
of your website directory where you upload pads and the name of the pad
itself e.g. hypotheticalprogram.xml, then hit SUBMIT. It also has a
...






All Programs:

0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z # . ! @


All Authors:

0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z # . ! @


RSS Feeds:
(Current Category)

RSS Feed for New Releases and Updates New releases & updates

RSS Feed for New Shareware Releases New shareware releases

RSS Feed for New Freeware Releases New freeware releases

RSS Feed for Most Popular Software Most popular software

RSS Feed for Top Rated Software Top rated software

Feeds List in OPML Feeds list in OPML


Useful Resources:

Domain Quester iconDomain Quester 6.02: Search for domains by unlimited number of keywords

Audio DVD Maker iconAudio DVD Maker 1.0: Audio DVD Maker is an innovative utility for you to personalize your own DVD

Domain Quester Pro iconDomain Quester Pro 6.02: Search for domains by unlimited number of keywords

AbleFTP iconAbleFTP 11.10: AbleFtp - FTP client designed to automate and run 1000+ FTP tasks a day.

Home | Featured | Submit | Link To Us | Contact Us | FAQ | About Us