Warning: Undefined variable $affiliateurl in /home/webmaster/data/www/downloadwasp.com/author.php on line 86
Entities 3.1 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




  • free games download
  • excel online password
  • 3d engine
  • assets
  • image hosting
  • Useful Resources:

    C: \ Web Development \ Java & JavaScript \ Entities 3.1 \ Author


    Opens in new window

    Entities 3.1 - Author Info Page

    Description: Utilities to convert/strip/insert HTML/XML/XHTML entities.. (more)


    Author Info for Entities 3.1

    Author/Company Name: Canadian Mind Products

    Country: Canada

    Web Site: http://mindprod.com

    Programs listed: 86

    Share |


    Other listings by this author

    VerCheck iconVerCheck 4.4   (Downloads: 280)
    VerCheck checks websites for new versions of the software you use. WHAT IT IS FOR
    **************

    I used to check over a dozen websites each day to see if new versions of the software I use had been released. This was time consuming and error prone. VerCheck automates this
    process by checking the websites of the programs you use to see if the version numbers have changed. It comes preconfigured from the factory with 64 applications.

    HOW IT WORKS
    ************

    For each applica...

    Sound iconSound 1.4   (Downloads: 226)
    Create/synthesize sounds mathematically in Java. Sound lets you mathematically create sounds in Java.

    You define your sounds in terms of 16-bit linear code for
    the waveform, -- an array of samplings. The U_Law.class will
    then convert that to (or from) *.AU mu-law 8-bit encoding
    format which you can then play with
    AudioPlayer.player.start(bis) in an application or with
    Applet.getAudioClip in an Applet.

    This is just a sample program. You would insert your own m...

    Tabin iconTabin 5.3   (Downloads: 222)
    Converts spaces to tabs in an ASCII text file. Converts spaces to tabs in an ASCII text file

    Usage:
    TABIN.exe Myfile.txt

    Assumes tab stops are 8 columns apart. Don't use it on word
    processor files. C source included. Copyrighted by Canadian
    Mind Products. May be freely distributed and used for any
    purpose except military. It has been rewritten in C from
    Pascal for extra speed. Users of previous versions should
    take care to delete the old TABIN.COM...

    Pentium iconPentium 1.5   (Downloads: 237)
    Java code to tell you facts about the Pentium and AMD CPU. Pentium works on Windows and Intel Pentium class and AMD
    CPUs to determine the CPUID information such as the vendor,
    brand/model, step, model, instruction set family, cpu serial
    number, and the RDTSC Time stamp register for high
    resolution timing measured in CPU cycles since the last
    boot. It is designed to be incorporated in your own Java
    progams.

    You can also use it as a standalone utility with:

    java.ex...

    Untouch iconUntouch 2.4   (Downloads: 393)
    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 =...

    Honk iconHonk 1.5   (Downloads: 217)
    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...

    FontShowerAWT iconFontShowerAWT 2.9   (Downloads: 303)
    Displays all the fonts available to AWT in Java. Displays all the fonts available to AWT in Java on your
    machine. Displays the fonts in a variety of styles, sizes
    and colours, rendered either with a Canvas or with a TextArea.

    FontShowerAwt displays the fonts available on *your* machine
    to *Java*. Other people will have different fonts installed
    and will see different selections available to Java on
    their machines. Your browser will see a slightly different
    set of fo...

    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...

    Esper iconEsper 2.4   (Downloads: 262)
    A crude translator Esperanto To English and English to Esperanto. A crude translator Esperanto To English and English to
    Esperanto. It works by looking up words in various
    dictionaries on the web. It mindlessly translates word for
    word.

    (1) First download and install the lastest Java JRE

    (2) Using WinZip extract the
    files into the default com\mindprod\esper directory.

    (3) Create a shortcut setting by right clicking the
    desktop and selecting new shortcut.
    <...

    JarLook iconJarLook 1.2   (Downloads: 280)
    Check that class target versions are as expected in a Java jar. Check a Java jar to make sure all the javac -target versions of
    the class files are what you expect.

    Java application.
    Requires Java version 1.5 or later.

    All Java source code is included.

    to use:

    java -jar jarlook.jar jartotocheck.jar 1.1 1.4

    where jartocheck.jar is the name of jar to check.
    It will check all the class files in it.

    In this example:
    1.1 is the low...

    FileIO iconFileIO 6.1   (Downloads: 522)
    Generates sample Java code to do 617 types of I/O. I/O teaching tool that generates sample Java source code to read or write the console, a sequential file, a random access file, a String, an array of characters, an array of bytes, URL, HTTP CGI GET/POST, Socket, resource or Pipe. It shows you how to read or write ASCII-8 bit characters (plain or locale-encoded), Unicode 16-bit characters, raw bytes, big endian binary, little endian binary, or serialised objects, buffered, unbuffered or gzip compressed.

    QuickSort iconQuickSort 1.6   (Downloads: 215)
    QuickSort is an implementation of Tony Hoare's classic recursive Quicksort. QuickSort is an implementation of Tony Hoare's classic
    QuickSort. QuickSort works by choosing a pivot point and
    ensuring all elements below the pivot point are small all
    above are big, (i.e. smaller than the pivot) Then it
    recursively splites the upper and lower halves, repeating
    the process. QuickSort is an internal sort written in Java.
    Both RadixSort and HeapSort are quicker than QuickSort.
    QuickSort can also take patholo...

    Ini iconIni 1.4   (Downloads: 459)
    Windows *.ini file verifier, tidier and sorter. Windows *.ini file verifier, tidier and sorter.

    Tidies and sorts windows *.ini files, ones that look like this:
    [section]
    ; a comment
    item=value;

    To use:

    java.exe -jar ini.jar C:\somedir\somefile.ini UTF-8

    Where UTF-8 in the encoding.
    Opera uses UTF-8. You can leave it to the default for most others.
    The original is named somefile.ini.old when you are done.

    Don't run ini ...

    HunkIO iconHunkIO 1.7   (Downloads: 219)
    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....

    JarCheck iconJarCheck 1.4   (Downloads: 444)
    Check that class target versions are as expected in a Java jar. Check a Java jar to make sure all the javac -target versions of
    the class files are what you expect.

    Java application.
    Requires Java version 1.5 or later.

    All Java source code is included.

    to use:

    java -jar jarcheck.jar jartotocheck.jar 1.1 1.7

    where jartocheck.jar is the name of jar to check.
    It will check all the class files in it.

    In this example:
    1.1 is the lo...

    FourTidy iconFourTidy 3.1   (Downloads: 273)
    Tidies Take Command/TCC/4NT/4DOS DESCRIBE file descriptors To tidy, sort, prune and dedup a JP Software
    Take Command/TCC/4NT/4DOS hidden descript.ion file. These files are used by
    the DESCRIBE utility to track what your various files
    are for.

    First make the directory containing the usually-hidden descript.ion file
    current. e.g.

    C:
    cd \env

    Then invoke the java program with:

    java.exe -jar C:\com\mindprod\fourtidy\fourtidy.jar

    If you...

    Borders iconBorders 1.5   (Downloads: 195)
    Displays a variety of decorative borders. Shows off what you can do with Swing. Displays a variety of decorative borders.
    Shows off what you can do with Swing.

    To run as an application, type:

    java -jar C:\com\mindprod\borders\borders.jar

    adjusting as necessary to account for where the jar file is.

    The picture frame icon represents the various decorative
    borders you can put around your Swing panels....






    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!

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

    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