| Other listings by this author | 
|  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....
 | 
|  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....
 | 
|  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...
 | 
|  Amper 1.9   (Downloads: 413) Safely converts ampersands to !amp; entities In the following, pretend ! is an ampersand. PAD files don't let me give literal examples. Amper converts ! to !amp; in HTML files and back, but does not convert it when the ! is already in an entity e.g. !lt; !thetasym; !eacute;
 
 The main use for this is to pass HTMLValidator verification of your HTML, which is very picky about !, especially inside URLs.
 
 As a side effect, it also ensures all your comment delimiters balance.
 
 It ...
 | 
|  Base64 1.9   (Downloads: 299) 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...
 | 
|  Pluck 1.0   (Downloads: 204) Scans multiple files looking for a REGEX pattern, and summarised what it finds. Scans multiple files looking for a REGEX pattern, and
 summarised what it finds as a CSV file.
 
 java -jar C:\com\mindprod\pluck\pluck.jar  "\.[a-z]+\." E:\temp\temp.csv E:\somedir
 
 adjusting as necessary to account for where the jar file is.
 The first parameter is the regex pattern. See regex in the java glossary
 for how to compose them.
 
 The next parameter is where the output in to go.  use the
 wo...
 | 
|  Ini 1.4   (Downloads: 500) 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 ...
 | 
|  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 ...
 | 
|  Rgrow 1.3   (Downloads: 210) RGrow resizes fixed length records padding or chopping. RGrow resizes fixed length records e.g.
 RGrow.exe MyFile.seq  500 600
 will grow each record from 500 to 600 bytes by padding binary zeros.
 Will also truncate records.
 
 These are not the old and new sizes of the file, but of the fixed length records
 in the file.  If you increase the record size, each record will be padded
 with nulls.  The entire file will grow as a result.
 
 This program may be freely copied and us...
 | 
|  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...
 | 
|  Screws 1.3   (Downloads: 241) CMP Screws and Screwdrivers draws eight types of screw heads. CMP Screws and Screwdrivers draws eight types of screw
 heads. It is a teaching example for how to use Java Canvas,
 fillRect, fillOval, fillPoly and AffineTransform to draw.
 
 Java source is included for you to cannibalise.
 
 It draws 8 types of screw heads.
 
 To run as an application, type:
 
 java -jar C:\com\mindprod\screws\screws.jar
 
 adjusting as necessary to account for where the jar file is....
 | 
|  FileFilters 2.7   (Downloads: 422) Colllecton of Java FilenameFilters. FilenameFilters you can use in your own Java programs with
 File.list( FilenameFilter f ). They can also be used
 standalone as fancy dir commands.
 
 They come with Java source and include:
 
 AllDirectoriesFilter  gets all directories
 AllFilesFilter        gets all files
 ClamFilter            simple wildcard
 DirListFilter         gets a list of directories
 EndsWithFilter        gets files whose names end with a...
 | 
|  Http 2.9   (Downloads: 751) HTTP GET/POST/HEAD/PROBE/CHASE java class library for http: or https: http is a small library of Java classes to let you do GET/POST/HEAD/PROBE/CHASE to a server r with http: or https. It will also encode parameter pairs for you.
 
 It does nothing on its own. It is intended to be incorporated into your own programs.
 
 To see a sample use have a look at the com.mindprod.submitter package, downloadable...
 | 
|  Splice 1.5   (Downloads: 369) SPLICE splices bits of files together SPLICE splices bits of files together e.g.
 SPLICE Cut MyFile.Txt  Start 99 Length 99 Insert  MyFile2.txt At 99
 SPLICE Copy MyFile.Txt Start 99 Length 99 Overlay MyFile2.txt At 99
 
 Uses for SPLICE:
 
 1. excising a section of a file.
 2. replacing a section of a file.
 3. inserting a section into a file.
 4. extracting a section of a file.
 5. appending a section onto a file.
 
 This program may be freel...
 | 
|  NetworkCam 1.6   (Downloads: 268) Java Applet to view a Webcam stream of JPG images a Java Applet that lets you a view
 video stream from web cameras that servers
 present as a series of still jpg images....
 | 
|  Batik 2.2   (Downloads: 493) 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...
 | 
|  CanadianTax 4.2   (Downloads: 616) 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 ...
 |