| Other listings by this author | 
|  SortedArrayList 1.3   (Downloads: 230) Sort and Merge ArrayLists efficiently. This is a pair of library classes to include in your own
 code for manipulating ArrayLists.
 
 It consist of two classes: SortedArrayList and Merge.
 
 SortedArrayList is an ArrayList that remembers how it is
 sorted, so that if you ask it to sort, it can sometimes
 bypass the work when it is already in order. You declare the
 order you want and it keeps the list sorted,  You just call
 sort whenever you need the list to ...
 | 
|  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...
 | 
|  Wavelength 1.3   (Downloads: 263) 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...
 | 
|  BlOut 2.6   (Downloads: 368) Blout removes extra or all blank lines from a file. Blout removes extra blank lines from a file, collapsing multiple blank
 lines down to one, (or removing them altogether with the -compact option).
 It also ensures the file has a final CrLf.  It also trims any blank lines
 off the beginning and end of the file.  It also converts all line endings
 to Windows standard CrLf form.  It trims trailing tabs and spaces from
 each line.
 
 Blout is not that bright.  It does not understand w...
 | 
|  Borders 1.5   (Downloads: 230) 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....
 | 
|  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:
 
 ...
 | 
|  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.
 
 | 
|  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...
 | 
|  MimeCheck 4.5   (Downloads: 473) Check that a server is sending the correct mime type for any given URL. Check that a server is sending the correct mime type for any given URL.
 
 Helps you check that a server, possible not even yours, is properly configured....
 | 
|  Pws 2.0   (Downloads: 230) PWS (the pathway amanuensis)  helps you with personal problems. PWS (the pathway amanuensis)  helps you with personal
 problems. You describe your problem and it prescribes some
 sage advise based on Ken Keyes' twelve pathways from the
 book Handbook To Higher Consciousness.
 
 To install, Extract the zip download with WinZip, available from
 winzip.com (or similar unzip utility) into any
 directory you please, often C:\ -- ticking off the (user
 folder names) option. To run as an applicat...
 | 
|  Common13 1.3   (Downloads: 278) common utility classes that work under Swing Java 1.3+ common utility classes that work under Swing Java 1.3+
 Includes:
 
 CMPAboutJBox:    a proper about box for Swing apps/JApplets that provides useful information.
 HybridJ :        converts Swing Applet into an Application...
 | 
|  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.
 
 | 
|  Mouse 1.4   (Downloads: 267) 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...
 | 
|  JarCheck 1.4   (Downloads: 506) 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...
 | 
|  Entities 3.1   (Downloads: 616) Utilities to convert/strip/insert HTML/XML/XHTML entities Consists of a pair of utilities that let you
 convert/strip/insert HTML/XML/XHTML entities such as  _amp;- and _quot;
 from files converting them back and forth to their
 equivalent single characters !amp; and !quot;.  It handles the HTML 4
 entities such as _hearts; as well as decimal _#123; and
 hexadecimal _x#123; entities.
 
 You may us this package as standalone
 utilities, or use the classes in your own programs
 to...
 | 
|  Tabout 2.7   (Downloads: 229) converts tabs to spaces in an ASCII text file. converts tabs to spaces in an ASCII text file
 usage : TABOUT  Myfile.TXT
 Don't use it on word processor files.  Assumes tab stops
 are 8 columns apart.  Also trims ^Z and corrects any
 malformed CrLf line endings.  C source included.
 Copyrighted, but may be distributed freely and used for
 any purpose except military....
 | 
|  FourTidy 3.1   (Downloads: 313) 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...
 |