JRemind is a simple program written in java to display upcoming special events.
Special events can be anything.  Like your spouses birthday, your anniversity,
etc.  The source code is included for your ability to fix any bugs, enhance it to
your needs, change its behavior etc.

JRemind uses a plain text file for configeration.  Below is the standard config
file shipped with JRemind and descriptions.  Due to lazy programming you can
abbreavate the cfg file to just the first letter, and it has to be lower case.

jremind.cfg
--------------------------------------------
notice=20                           number of days in advance to display event
exitonnoevents=0                if 1 JRemind will just exit if nothing to display
showall=0                           if 1 JRemind will display all regardless of date
location=100,100                  location of the JRemind window at startup
datafile=sample.jremind        file JRemind uses as data file (see below)


JRemind also uses a plain text file for its data file.  Below is the sample file.
The data file has to be one line with the date in the format mm-dd-yyyy,
and then a line describing the event.  JRemind is hard-coded to the
mm-dd-yyyy format, but you can easily change the source for any other
format if desired.

sample.jremind
---------------------------------------------
12-5-2004
Date I finally got around to release this
3-14-1973
JRemind creators Birthday


