|
Riders on the storm Free Music
CLICK HERE TO WATCH THE ROLLING STONES VIDEO: RAIN FALL DOWN!!!
This is pretty dam cool lol, wel its not but if u gt nufin 2 do, then wi not?....CLICK HERE
hi, this is a painting that i have done, it is 3 foot by 2 foot, and is acrylic on canvas.
i am looking to perhaps sell it, in order to buy my own paints, as i have been borrowing other peoples paints and school paints to do it. if you are interested, please let me know, @ buffal0_soldier@hotmail.com. thanks!, joe. if you are currently on this site then you

By the way, if you want to save one of these songs to your computer, rightclick on it then click on save target as...
its obvious from there on.
AC/DC- Hells Bells, Highway to hell, Thunderstruck
Aerosmith- Walk this way, Dream on, Dude looks like a lady, Crazy, Fly away from here, Chip away the stone
Beatles- Ob la di ob la da
Bob Dylan- All along the watchtower, Like a rolling stone, Knockin on heavens door - the early version, Blowin in the wind - the early version, dont think twice its alrite - the early version, Girl from the north country
Bon Jovi- Livin on a prayer, Always, I'll be there for you
Don Mclean- American pie - legendary song
Green Day- Time of your life, American idiot, Favorite son,
Guns n roses- Knockin on heavens door, November rain, Sweet child o mine, Welcome to the jungle, One in am million
Jimi Hendrix- Purple Haze, Crosstown traffic, All along the watchtower, Angel, Castle made of sand
The Kinks- Waterloo Sunset, You really got me going
Led Zeppelin- Stairway to heaven, Heartbreaker, Immigrant song, Rock n roll, Whole lot of love, Black dog
Lynyrd Skynyrd- Sweet home Alabama - 1 hit wonder! -> no others.
Metallica- The unforgiven, Master of puppets, (welcome home) Sanitarium, To live is to die
The monkees- I'm a believer, Daydream believer
Pink Floyd- Money, Sheep
R.E.M- Losing my religion
Rolling stones- Ruby Tuesday, Good time bad times, Gimme shelter, Bitch, Sympthy for the devil
Scissor sisters- Take your mama
Stealers Wheel- Stuck in the middle with you - ! hit wonder! -> no others.
T-Rex- I love to boogie - from billy elliot, Bang a gong, 20th centuary boy
Twisted Sister- I wanna rock, Burn in hell
The verve- Bittersweet symphony, The drugs don't work
U2- Vertigo - sorry only this at the moment....
White stripes- Seven nation army - classic!, Blue orchid, While my guitar gently weeps - extremely rare Beatles cover

/*********************************************************
File: BrownianMotion3.java
Author: Jim Carlson (copyright) 1996
web: http://www.math.utah.edu/~carlson
e-mail: carlson@math.utah.edu
Date:June 6, 1996
Legal stuff: All rights reserved, but noncommercial use is free
Simulation of Brownian motion. The guts of the program is
the loop labelled (XX).
**********************************************************/
import java.applet.*;
import java.awt.*;
import CGraphics;
import java.util.Random;
public class BrownianMotion extends Applet {
// bounding box in Cartesian coordinates:
double a = -1; double b = 1; // range of x
double c = -1; double d = 1; // range of y
CGraphics G;
Random R = new Random();
int n = 100;
double dx = 0.2;
double dy = 0.2;
double xStart = 0; double yStart = 0;
double xFinish; double yFinish;
// size in screen coordinates of the CGraphics object
int w, h;
public void init(){
String x;
x = getParameter("n");
if ( x != null )
n = Integer.parseInt(x);
else
n = 100;
x = getParameter("dx");
if ( x != null )
dx = Double.valueOf(x).doubleValue();
else
dx = 0.2;
x = getParameter("dy");
if ( x != null )
dy = Double.valueOf(x).doubleValue();
else
dy = 0.2;
}
public void paint(Graphics g) {
// set up CGraphics object
G = new CGraphics( g );
w = size().width;
h = size().height;
if ( w != h ) w = h; // ensure that w = h
G.setScreenRect( 0, 0, w, h );
G.insetScreenRect();
G.setXRange(a,b);
G.setYRange(c,d);
// display the coordinate axes
G.abscissa();
G.ordinate();
// set initial position
double x = xStart;
double y = yStart;
// Draw a disk at the initial point of the Brownian path
G.setColor( Color.red );
G.fillArc( x, y, 6, 6, 0, 360 );
// Loop to draw Brownian path (XX)
for( int i = 0; i < n; i++ ) {
double xx = x + ( R.nextDouble() - 0.5 )*dx;
double yy = y + ( R.nextDouble() - 0.5 )*dy;
G.drawLine( x, y, xx, yy );
x = xx; y = yy; // update position
} // end loop
G.fillArc( x, y, 6, 6, 0, 360 );
xFinish = x; yFinish = y;
showStatus( "(" + xStart + ", " + yStart + ") ==> ("+ xFinish + ", " + yFinish + ")");
} // end paint
// set starting position, draw Brownian path, then report
// initial and final positions in the status line
public boolean mouseDown( Event e, int x, int y) {
xStart = G.cx(x); yStart = G.cy(y);
showStatus( "(x,y) = (" + xStart + ", " + yStart + ")");
repaint();
return true;
}
}
|