 |
 |
wBeverly's Journal |
 |
 |
 |
This is my Journal. If you stop by, leave a comment. Thanks!
|
 |
 |
 |
 |
 |
|
 |
 |
wNovember 01, 2002 |
 |
 |
 |

Baby Ruth may very well be the best candy bar on earth (maybe second only to Almond Joy).
Has anyone ever had Trader Joe's Dark Chocolate Covered Espresso Beans? Yum! We had a Halloween food party last night in the main lounge, by the fire. Tomorrow night is the Harvest Ball. Time again to unzip myself into the she-devil persona! :)
posted by
Beverly at 10:48 PM
|
 |
 |
 |
 |
 |
 |
 |
w |
 |
 |
 |

Hum reading and no sleep make Beverly go crazy.
posted by
Beverly at 12:25 PM
|
 |
 |
 |
 |
 |
 |
 |
wOctober 31, 2002 |
 |
 |
 |

I love my costume... candy on East Moreland, here I come! Darn it, I have 200 pages of Thucydides to read!!!
posted by
Beverly at 5:36 PM
|
 |
 |
 |
 |
 |
 |
 |
wOctober 29, 2002 |
 |
 |
 |

Why do people like each other? Such a confusing thing relationships are. On the positive side, I made an applet that draws a tunnel! :) Check out the code:
import java.awt.*;
import java.applet.*;
public class DrawTunnel extends Applet {
public void init() {
}
public void paint(Graphics g) {
int x = 30;
int y = 30;
int w = 200;
int h = 100;
for (int i= 1; i < 31; i++, w-=3, h-=3) {
Color c = new Color(0,(float)(0.5-i/70.0),(float)(1.0-i/30.0));
g.setColor(c);
x += 2;
y += 2;
g.fillRect(x, y, w, h);
}
}
}
posted by
Beverly at 11:23 AM
|
 |
 |
 |
 |
 |
 |
 |
wOctober 27, 2002 |
 |
 |
 |

Go Angels! World Champions!
Yes, we cooked tonight. Jesse's back!
posted by
Beverly at 10:59 PM
|
 |
 |
 |
 |
 |
|