| Other listings by this author | 
|  Comparators 1.4   (Downloads: 312) 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:
 
 ...
 | 
|  Align 1.6   (Downloads: 251) Aligns data in ASCII text files into neat columns. ALIGN aligns data in ASCII text files into neat columns.
 Also converts comma-delimited files to columns with 2 spaces
 between each column.  Input fields must be separated by
 commas or white space.  Fields may contain spaces if they
 are enclosed in single or double quotes or C comments /* ...
 */ or //.  The best way to understand this program is to try
 it on a COPY of any ASCII Text file, especially one that
 contains badly al...
 | 
|  Masker 1.9   (Downloads: 289) Hides email addresses from spammers as PNG image files. Produces PNG files (image files similar to GIFs, but
 smaller) that contain your email address. When you post them
 on your website, it is harder for spammer to harvest them.
 
 You can include the generated image files in the HTML on
 your website with: code like this:
 
 [a href="../image/mailto/roedy.png"]email me[/a]
 
 (pretend [] are angle brackets)
 
 or
 
 [mg src="image/mailto/r...
 | 
|  HunkIO 1.7   (Downloads: 261) 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....
 | 
|  Official Encoding 1.1   (Downloads: 173) Discover the official name of any given Java encoding. Official Encoding will tell you the official name of any given Java encoding and whether it is supported by Java. It will also display some of the characters available with that encoding.
 
 Prerequisites:
 
 This program runs under any OS,
 (e.g. Win2K/XP/Vista/OSX/Linux/Solaris/Vista64/AIX...) so long as you have
 Java version 1.5 or later installed.
 
 Installing:
 
 Download source and compiled class files to run...
 | 
|  FontSaver 1.4   (Downloads: 236) 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....
 | 
|  Replicator 11.3   (Downloads: 798) The Replicator lets you distribute large numbers of files to many people. The Replicator lets you distribute large numbers of files to
 many people efficiently. The software automatically
 downloads just the changed files and deletes ones no longer
 part of the distribution.
 
 Unlike other similar tools, all it requires is an ordinary
 HTTP website. It requires no code to run on the server.
 
 It can also work with CDs, and LANs.
 
 Custom configured for each customer. Not free. Registrat...
 | 
|  Pentium 1.5   (Downloads: 276) 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...
 | 
|  Tabin 5.3   (Downloads: 250) 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...
 | 
|  RadixSort 1.6   (Downloads: 213) 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.
 
 | 
|  Common11 2.8   (Downloads: 388) 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...
 | 
|  Holiday Calculatior 4.7   (Downloads: 727) 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...
 | 
|  Unicode 1.8   (Downloads: 381) Used to test your computer's Unicode support Used to test your computer's Unicode support and your font's
 support for particular characters, or as a learning to to
 explore the Unicode character set. Displays in Courier,
 TimesRoman, Symbol, Dialog and Helvetica.
 
 copyright (c) 1996-2008 Nic Fulton nic.fulton@reuters.com of
 Reuters Ltd. Modified by Roedy Green
 of Canadian Mind Products with permission.
 
 To install, Extract the zip download with WinZip, availa...
 | 
|  LinkedList 1.6   (Downloads: 193) LinkedList is replacement for Java Vector class.  Classical doubly linked list. LinkedList is replacement for Java Vector class.  Classical
 doubly linked list.  Faster that Vector for insert/delete, but slower
 for indexed access.  The interface is modeled on java.util.Vector, so
 you can try it both ways and pick which is faster for your needs.
 Heavily commented Java source included.  copyright (c) 1997-2008 Canadian Mind
 Products.  May be freely distributed and and used for any purpose
 except military.
 ...
 | 
|  SetClock 8.5   (Downloads: 878) 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....
 | 
|  FileIO 6.1   (Downloads: 588) 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.
 
 | 
|  BOOTSave 2.8   (Downloads: 281) 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...
 |