Warning: Undefined variable $affiliateurl in /home/webmaster/data/www/downloadwasp.com/author.php on line 86
CurrCon 4.5 author info at DownloadWasp.com
Warning: Undefined variable $search in /home/webmaster/data/www/downloadwasp.com/header.inc on line 6
Home Featured Top 40 Software Reviews Link To Us Advertise




  • 3d engine
  • Useful Resources:

    C: \ Business \ Calculators & Converters \ CurrCon 4.5 \ Author


    Opens in new window

    CurrCon 4.5 - Author Info Page

    Description: CurrCon displays prices in HTML in users' home currency... (more)


    Author Info for CurrCon 4.5

    Author/Company Name: Canadian Mind Products

    Country: Canada

    Web Site: http://mindprod.com

    Programs listed: 86

    Share |


    Other listings by this author

    Base64 iconBase64 1.9   (Downloads: 262)
    Java classes to encode/decode Base64 and Base64u Base64 is a freeware way of encoding 8-bit characters using
    only ASCII printable characters similar to UUENCODE.
    UUENCODE embeds a filename where BASE64 does not. You will
    see BASE64 used in encoding digital certificates, in
    encoding user:password string in an Authorization: header
    for HTTP. The spec is described in RFC 2045.

    Don't confuse Base64 with x-www-form-urlencoded which
    is handled by java.net.URLEncoder.encod...

    AmericanTax iconAmericanTax 3.8   (Downloads: 407)
    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...

    SetClock iconSetClock 8.5   (Downloads: 826)
    Set your PC Clock from an accurate atomic clock on the web. Set PC Clock from an accurate atomic clock on the web. You
    can put in on your website so that others can use it to
    correct their clocks without having to install software or
    without you having to install software on your server.

    Java Web Start signed.

    Requires Java version 1.5 or later. Native code for Windows only.

    Full Java source code included, and native C JNI code....

    Echoserver iconEchoserver 1.3   (Downloads: 216)
    See what browsers and programs are sending to an HTTP Server. See what browsers and programs are sending to an HTTP Server.

    Simple server just dumps whatever it receives on the console.

    Echoserver is misnamed because it does not actually echo what it receives
    back to the browser....

    CMOSSave iconCMOSSave 4.6   (Downloads: 293)
    Check CMOS for corruption and automatically restore it. CMOSSave CMOSRest CMOSChk restore corrupted CMOS from
    backup and check that CMOS has not been tampered with.

    Naive users sometimes meddle with CMOS settings. We need a
    fast way to put the scores of subtle CMOS configuration
    settings back the way they were.

    Power surges can corrupt CMOS. We need a way for a naive
    user to quickly restore all the CMOS settings.

    If the battery fails, the contents will be los...

    CanadianTax iconCanadianTax 4.2   (Downloads: 571)
    Calculates Canadian sales taxes: GST HST and PST today or in the past. Calculates Canadian sales taxes: GST HST and PST today or as they were in the past.

    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 GST HST and PST to a base
    price. It als works in reverse given the
    final price working backwards to get the taxes and base
    price. In other words it will tell ...

    Batik iconBatik 2.2   (Downloads: 449)
    Java to let you create a custom utility to find and delete all junk files. Java classes to let you create a custom utility to find and
    delete all junk files on your machine. Use one of the three
    scripts supplied as an example, to create your own XXX.java
    source code file then compile and use to rapidly clean your
    drive of junk.

    This program requires some elementary Java programming skill.

    To compile

    E:
    cd \com\mindprod\batik
    javac *.java

    to run, make s...

    Wavelength iconWavelength 1.3   (Downloads: 228)
    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...

    Password iconPassword 1.7   (Downloads: 502)
    Generates random passwords that are hard to guess. Generates random passwords that are hard to guess. It uses a crytographic quality random number generator. The passwords are generated locally in a Java Applet. They are never transmitted over the Internet, even in encrypted form.
    You can also run it as a standalone program, invoking it with
    java com.mindprod.password.Password
    or
    password.jar

    You can also run it online at the mindprod.com website without installing it....

    RadixSort iconRadixSort 1.6   (Downloads: 183)
    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.

    Accumulate iconAccumulate 1.3   (Downloads: 169)
    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....

    Bulk Emailer iconBulk Emailer 1.7   (Downloads: 249)
    The bulk emailer program sends the same email to many people. The bulk emailer program allows you to send the same email
    to a long list of people. Unlike competing products, it does
    not require you to run any code on your ISP's server.

    The price includes customising the program to your needs.

    For more detail see the manual at
    mindprod.com/application/bulk.manual.html

    To install, Extract the zip download with WinZip, available from
    winzip.com (or similar unzip utili...

    HeapSort iconHeapSort 1.7   (Downloads: 201)
    HeapSort is an implementation of Williams and Floyd classic HeapSort. HeapSort is an implementation of Williams and Floyd's TopDown HeapSort.
    HeapSort is a fast internal sort written in Java that uses a
    sorting algorithm analogous to power struggles for higher
    positions in a hierarchical bureaucracy. Source provided. It
    is faster than QuickSort, but slower that RadixSort. It
    sorts using a comparison routine you provide to compare two
    elements to be sorted.

    You can test it with:

    CSV iconCSV 6.5   (Downloads: 946)
    Java to read, write, align, sort, reshape, pack... comma, tab-separated files. Java classes you can use standalone or embed in your own programs to
    Read, write, align, sort and pack comma, tab and semicolon-
    separated variable files, commonly known as CSV files.

    It consists of a 23 Java classes/utilities CSVReader, CSVWriter, CSVAlign, CSVChangeCase, CSVCondense, CSVDeDup, CSVDeDupField, CSVDeEntify, CSVDump, CSVEntify, CSVPack, CSVPatch, CSVReshape, CSVSort, CSVSortField, CSVTabToComma, CSVTemplate, CSVToHTML, CSVToS...

    Biorhythms Calculator iconBiorhythms Calculator 2.7   (Downloads: 871)
    Calculates and displays biorhythm graphs. Calculates and displays biorhythm graphs.

    Enter your birthdate and this Applet and it will calculate
    your biorhythms. It computes your 23-day physical, 28-day
    emotional, 33-day intellectual and combined cycles. The
    combined cycle is sometimes called the luck cycle. The
    theory of biorhythms is when the cycles are positive/high
    you will have high energy. When they are negative/low you
    will have low energy. When they...

    BOOTSave iconBOOTSave 2.8   (Downloads: 243)
    BootSave saves/restores the master boot sector BootSave saves/restores the master boot sector on the
    hard disk. Suite of three utilities BootSave, BootRest and
    BootChk. Protects against damage to the partition table or
    boot sector done by rogue programs, viruses or accidents
    with tools like Norton NU.

    The BootSave suite will work under DOS, Windows 3.x, Windows
    95/98/ME, OS/2, but not NT, Windows 2000, XP, Vista or Windows 7.
    These OSes block low level disk I/O as...

    ShellSort iconShellSort 1.4   (Downloads: 204)
    ShellSort is a simple sort suitable for 2000 or less elements. ShellSort is a simple sort suitable for 2000 or less
    elements. It sorts using a comparision routine you provide
    to compare two elements to be sorted.

    You can test it with:

    java.exe com.mindprod.shellsort.TestShellSort...






    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 Pro iconDomain Quester Pro 6.02: Search for domains by unlimited number of keywords

    Advanced XLS Converter iconAdvanced XLS Converter 2.55: With XLS Converter you can convert Excel (XLS) files into dozens of formats!

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

    JaSFtp iconJaSFtp 11.10: JaSFtp - Automated SFTP client (secure FTP), Run 1000+ tasks on a schedule.

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