Java Stuff

Java intro
Java Scripts
ICS Free Java
Java Mongers

Java

The Java Cup International

Information /Programming

Search the Java API and Tutorial
JavaWorld
Online Magazine Table of Contents
Perpetually Unfinished guides
GUI Programming using Java
Packages
New Media Marketing's CAFE DEL SOL
GUI Programming using Java
Digital Espresso
The *new* AWT Tutorial
J*** Notes
Search our Web Site
The Java(tm) Developers Kit
Java
Welcome to HotJava (kth)
Java(tm) Home Page (sun)
Packages (API Users Guide Alpha version)
Packages (API User's Guide Beta version)
The Java Developer: How Do I...
comp.lang.java FAQ
Java World

Applets

http://www.km-cd.com/black_coffee/
Pure Java 3D
Trail Map: The Java Language Tutorial
Play
Simple 3D Viewer
Nizze's HotJava Applets
Gamelan
Java Applets from Around the World
VPRO's Java test pages (For the BETA javaset)
Applets: Java Applet Library

Javaized pages

GMT - What is Greenwich Mean Time?
Acme Pet - Your Guide to Pets on the Internet!
Tim Hemel -- TimeWaster
Jannes Java Home Page (23-Nov-1995)
Adam's PageSnorre Narum
E-FLIGHT - World...
Jim Graham's Home Page
CUPPA Java: the Chat Up Plenty o' People Applet

Books

Java in a Nutshell
Foundations of Java Programming for the World Wide Web
Teach Yourself Java in 21 Days
Sams.net Virtual Bookstore
Presenting Java(tm)

Blanks

tester
1. Use our access program to add your username/password to our database.
2. Create a .htaccess file in the directory you would like to password protect.

3. The .htaccess file should contain the following:

AuthUserFile /data/.htpasswd
AuthGroupFile /dev/null
AuthName username
AuthType Basic


require user username


Change username to the name you added to our database with the access.pl program.
STANFORD SCHOOL OF ENGINEERING Password Protection for your Class Website Setting up password protection for your site requires using telnet and some basic UNIX commands.

Step One: create .htaccess file

Create the following document using a simple text editor. Substitute the appropriate information for your site inside the parentheses.

AuthUserFile /(server path to your class folder)/.htpasswd
AuthGroupFile /dev/null
AuthName (Your Site Name/Group Name expl. George's Class)
AuthType Basic


require valid-user

Save this file as .htaccess and upload it into the directory that you want to protect (i.e., your class folder).

Step Two: create your .htpasswd file

Using the htpasswd program on your server, create an encrypted version of the name and passsword you plan to give the class to access the website.

While in your telnet session, dial into your server and go to your directory. At the prompt, type:

htpasswd -c .htpasswd (your group or username that you will give the class)

You will be asked for the password and then a .htpasswd file will be created for you. Make sure this file is located in your directory. If it is not, load it into the class folder. Test to make sure your password works.

For more detailed instructions check out the tutorial on the Leland server. http://www.stanford.edu/userauth-tutorial.html
If your site is on the Leland server, you will need to look at this tutorial to establish your AFS permissions for the directory you are trying to protect.

Home | page1 | page2 | page3 | page4 | page5

Password protecting folders:



AuthName (any name you want)
AuthType Basic
AuthUserFile /usr/local/etc/htpasswd/your_userID


Require valid-user

Scripts

1