The demos run in their own browser window. This way I can run the utilities and leave them up without them interfering with my browsing.
I've kept the reference to the original author; please do the same.
Many of the programs list the environments they were tested in. The following abbreviations are used:
To download C, C++ and Java programs, there will be a link to the
zip file containing the program. The Java programs also have a
demo zip file. This file is different than them demo because it
contains additional files. The zip file is also compressed which
currently isn't allowed for programs to run from the server.
Code <html> <head> <title>Example</title> <link rel="STYLESHEET" type="text/css"href="./outline.css"> </head> <body> <ol> <li>Line #1</li> <ol> <li>Line #2</li> <li>Line #3</li> </ol> <li>Line #4</li> </ol> |
Example
|
outline.css
/* This style sheet causes ordered lists to be displayed as an
outline
*
* To use save this file in the same directory as the html
document then
* include the following statement between <head> &
</head>:
* <link rel="STYLESHEET" type="text/css"
href="./outline.css">
*/
ol {list-style-type: upper-roman}
ol ol {list-style-type: upper-alpha}
ol ol ol {list-style-type: lower-roman}
ol ol ol ol {list-style-type: lower-alpha}
ol ol ol ol ol {list-style-type: decimal}
The styles written to be included in the header of the HTML
file.
<style type="text/css">
ol {list-style-type: upper-roman}
ol ol {list-style-type: upper-alpha}
ol ol ol {list-style-type: lower-roman}
ol ol ol ol {list-style-type: lower-alpha}
ol ol ol ol ol {list-style-type: decimal}
</style>
The author of the original script is unknown. It can be found at http://www.zdnet.com/devhead/. I improved the initial instructions.
You can play the checkers demo right
here. An archive is supplied
because there are ten .gif files needed for the script to run.
This is a simple C program that takes input from stdin and sends output to stdout. It should work in any command line environment.
I wrote this program years ago. It's a C program. It has been compiled on the Commodore 128 and Microsoft C. These were all before ANSI C was available. It should still compile, but it may generate warnings for old syntax. The file port.h contains code to customize for different systems.
The archive includes the C source and MS DOS executable.
When entering the list of words, a blank line terminates the list.
The program runs from the command line. It prints the puzzle to stdout.
The archive includes the C source and MS DOS executable.
Tested: MS DOS 3.2, 3.3, 5, 6.2, 7.0, Win
3.1, Win 95, VMS, UNIX
The archive includes the C source and MS DOS executable.
Tested: MS DOS 3.2, 3.3, 5, 6.2, 7.0, Win
3.1, Win 95
If running as a program, it can be resized. (This works correctly under Java 1.0. Under Java 1.1, the window must be covered and uncovered after it is resized before the entire window is updated.)
Purpose: Displays a month in a window. The default is
the current month and current year.
Usage: javaw CalendarApp -m=month -y=year
Classes: CalendarApp, AppletFrame, Calendar, Day, Format
Purpose: Displays the specified month in an HTML
document. The default is the current month and current year.
Usage: <Applet code="Calendar.class" width=width
height=height> <param name=m value=month>
<param name=y value=year> </applet>
Classes: Calendar, Day, Format
Note: In the usage description, bold text is required. Underlined text is text is replaced by an actual value.
The calendar demo creates a calendar in a new window. The calendar archive contains the source code and compiled Java classes.
Tested: Java 1.0, Java 1.1, NS 4.04/Win 95
The original script was written by Roger Zeitel. It can be found at http://www.zdnet.com/devhead/. I modified it to also generate GeoCity tags.
The Meta Tag demo creates a form in a new window.
Browsers: NS 3+, IE 4+
The stopwatch demo creates a stopwatch in a new window.
Tested: NS 3.01/Win 95, NS 4.04/Win 95
Last Updated: $Date: 2003/11/11 19:10:16 $ GMT