| Other listings by this author | 
|  Holiday Calculatior 4.7   (Downloads: 726) 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...
 | 
|  CMOSSave 4.6   (Downloads: 338) 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...
 | 
|  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.
 
 | 
|  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...
 | 
|  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...
 | 
|  Untouch 2.4   (Downloads: 436) 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 =...
 | 
|  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...
 | 
|  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....
 | 
|  Dedup 1.5   (Downloads: 230) Java command line utility to removes duplicate lines from text files. DeDup is a Java command-line utilty for removing duplicate
 lines in text files.
 
 The dedup process compares adjacent lines only. It does not
 sort first. The comparison is case sensitive. It removes
 adjacent indentical lines. It replaces the original file, so
 do a backup first.  You can dedup 1 to N files in one
 execution, just put their names on the command line.
 
 DeDup deletes blank lines from both the beginning...
 | 
|  JarLook 1.2   (Downloads: 310) 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...
 | 
|  Quoter 5.1   (Downloads: 437) Converts text with many possible cleanups and transformations. Converts text with many possible cleanups, including
 preparation of HTML and Java, aligning in columns, character
 set conversion, case converting, removing excess white
 space, removing blank lines, preparing regex expressions....
 
 converts raw text with the following possible cleanups:
 
 0.  Flow text by removing newline characters. Useful to prepare text to paste into web comment boxes.
 
 1.  Convert awkward chara...
 | 
|  FontShower 2.9   (Downloads: 496) Displays all the fonts available to Swing in Java. Displays all the fonts available to Java on your
 machine. Displays the fonts in a variety of styles, sizes
 and colours,  rendered either with anti-aliased or plain.
 
 FontShower displays the fonts available on *your* machine
 to *Java*. Other people will have different fonts installed
 and will see different selections available via Java on
 their machines. Your browser will see a slightly different
 set of fonts than Java ...
 | 
|  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...
 | 
|  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...
 | 
|  AmericanTax 3.8   (Downloads: 446) 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...
 | 
|  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...
 | 
|  Sound 1.4   (Downloads: 249) 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...
 |