Banner          
Sherri On the Appalachian Trail
Celebrating its 14th birthday in January 2009!
The Appalachian Trail is a continuous marked footpath that goes from Katahdin in Maine to Springer Mountain in Georgia, a distance of about 2160 miles. Many trace the origins of the Trail to a 1921 article by Benton MacKaye entitled
An Appalachian Trail: A Project in Regional Planning.

Dreamcatcher
I welcome all comments  from my friends. 
READ OR POST COMMENTS  
You must register to make a post.
Only your email address is needed to register.
Need help on posting comments?
Check out my Appalachian Trail Hiker's Journal 
public class Scroller extends Frame { public Scroller() { super("Scroller Example"); ScrollPane scroller = new ScrollPane(ScrollPane.SCROLLBARS_AS_NEEDED); scroller.add(new DrawCanvas()); Adjustable vadjust = scroller.getVAdjustable(); Adjustable hadjust = scroller.getHAdjustable(); hadjust.setUnitIncrement(10); vadjust.setUnitIncrement(10); scroller.setSize(200, 200); //200,200 add("Center", scroller); pack(); } // No more handleEvent method needed to implement scrolling! public static void main(String args[]) { Scroller test = new Scroller(); test.show(); } } class DrawCanvas extends Component { public Dimension getPreferredSize() { return new Dimension(300, 300); } // (300, 300)! public void paint(Graphics g) { // Note: For most efficient repainting, we should check the // clip rectangle in the Graphics object to determine the // damaged region and only paint that; we don't do that here // for simplicity in this example // Rectangle r = getBounds(); g.setColor(Color.black); g.fillRect(0, 0, r.width, r.height); g.setColor(Color.yellow); g.drawLine(0, 0, r.width, r.height); g.setColor(Color.white); g.drawLine(0, r.height, r.width, 0); } } Pictures are loading. Sorry, your browser doesn't support Java(tm).
My Photo Album of Recent Pictures
VIEW MORE PICTURES  
Hiker's Journal Pictures
 

November 12, 2009. 

I am finally done!!!
I finished thru hiking the AT today (2178 miles)

Trail Maps 
    END: Katahdin   New Hampshire / Maine
              Maine
  New Jersey / New York / Massachusetts
  Maryland /  Pennsylvania  
  North Carolina / Virginia
BEGIN: Springer Mtn     Georgia / North Carolina 
               Georgia

 New Hampshire / Maine
  

MAIL