Other listings by this author  | 
| 
  MimeCheck 4.5   (Downloads: 474) 
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.... 
 | 
| 
  Submitter 16.4   (Downloads: 1070) 
Submitter will submit your PAD *.xml program descriptor file to 199 PADsites. Submitter will submit your PAD *.xml program descriptor file to 199 PADsites.  
Unlike other submission programs, it submits only to PADSites  
that welcome automated submissions.  Compose your PAD *.xml file using a  
program like PADGen, then upload it you your website.  Then enter the URL  
of your website directory where you upload pads and the name of the pad  
itself e.g.  hypotheticalprogram.xml, then hit SUBMIT.  It also has a  ... 
 | 
| 
  Entities 3.1   (Downloads: 617) 
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... 
 | 
| 
  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... 
 | 
| 
  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... 
 | 
| 
  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... 
 | 
| 
  Accumulate 1.3   (Downloads: 193) 
Used to accumulate values by category. Used to accumulate values by category. It might be useful 
for example in a billing program to accumulate hours by 
various categories. 
 
It could be used to count how many times various words 
occurred in a document. 
 
All you need is: 
 
   buckets.accumulate( "somecategory", someamount ); 
 
And Accumulate looks after creating the buckets to 
accumulate new categories for you. 
 
e.... 
 | 
| 
  ShellSort 1.4   (Downloads: 229) 
ShellSort is a simple sort suitable for 2000 or less elements. ShellSort is a simple sort suitable for 2000 or less 
elements. It sorts using a comparision routine you provide 
to compare two elements to be sorted. 
 
You can test it with: 
 
java.exe com.mindprod.shellsort.TestShellSort... 
 | 
| 
  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... 
 | 
| 
  Primes 1.4   (Downloads: 477) 
calculates the prime numbers 1..N, tells you if N is prime etc. calculates the prime numbers 1..N, tells you if N is prime etc. 
 
Prints tables of primes. 
 
Computes the prime just below or above N. 
 
It is useful in computing optimal Hashtable sizes. 
 
 Java source included.... 
 | 
| 
  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... 
 | 
| 
  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 ... 
 | 
| 
  Boyer 1.5   (Downloads: 255) 
Fast string search (indexOf) using the Boyer-Moore algorithm. Fast string search (indexOf) using the Boyer-Moore 
algorithm. Incorporate this class into your own Java 
programs to rapidly search strings. 
 
use: 
import com.mindprod.Boyer.Boyer; 
... 
Boyer b = new Boyer("dogcatwombat"); 
int where = b.indexOf("cat"); 
or 
int where = Boyer.indexOf("dogcatwombat","cat"); 
 
Boyer-Moore is about twice as fast as String.indexOf wh... 
 | 
| 
  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 ... 
 | 
| 
  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.... 
 | 
| 
  Borders 1.5   (Downloads: 231) 
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.... 
 | 
| 
  CurrCon 4.5   (Downloads: 586) 
CurrCon displays prices in HTML in users' home currency. Currency Conversion Applet. 
 
CurrCon is an Applet you embed in your HTML 
to display prices in a variety of world currencies 
defaulting to the user's country. 
 
It usually works in conjunction with the htmlmacros 
pre-processor to insert the necessary Applet calls, 
though you can do it manually. 
 
Shareware for non military use only. 
Registrants get help setting it up.... 
 |