Did anyone wish we would have hired Ronnie Arrow

586 Views | 7 Replies | Last: 17 yr ago by D.J. Flores
Law361
How long do you want to ignore this user?
AG
He is a great coach and a good recruiter
racerfink
How long do you want to ignore this user?
We DID hire Ronnie Arrow.
Peter Gibbons
How long do you want to ignore this user?
Not at all.
agclassof2012
How long do you want to ignore this user?
AG
//Computer Science I
//Graph



import java.awt.*;
import java.awt.event.*;


public class Ex_Graph
{
public static void main(String args[])
{
GfxApp gfx = new GfxApp();
gfx.setSize(800, 600);
gfx.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});

gfx.show();
}
}


class GfxApp extends Frame
{
public void paint(Graphics G)
{
//background
G.setColor(Color.black);
G.fillRect(0,0,800,600);

//line

G.setColor(Color.blue);
G.drawLine(15,50,90,100);

G.setColor(Color.red);
G.drawRect(20,110,60,300);

G.setColor(Color.green);
G.fillRect(120,50,200,40);

G.setColor(Color.pink);
G.drawRoundRect(140,120,90,150,40,40);

G.setColor(Color.cyan);
G.fillRoundRect(150,300,300,90,60,20);

//point

G.setColor(Color.white);
G.drawRect(350,60,0,0);


}
}





-----------------------------------------

//Computer Science I
//Graph



import java.awt.*;
import java.awt.event.*;


public class Graph1
{
public static void main(String args[])
{
GfxApp gfx = new GfxApp();
gfx.setSize(800, 600);
gfx.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});

gfx.show();
}
}


class GfxApp extends Frame
{
public void paint(Graphics g)
{
//Background Color
g.setColor(Color.black);
g.fillRect(0,0,800,600);

//lines in red

g.setColor(Color.red);
g.drawLine(60,50,200,50);
g.drawLine(60,50,60,200);
g.drawLine(120,50,120,150);

//rectangle
g.setColor(Color.magenta);
g.fillRect(500,50,252,60);

//round rectangle
g.setColor(Color.gray);
g.drawRoundRect(150,200,300,90,80,80);

//filled round rectangle
g.setColor(Color.pink);
g.fillRoundRect(140,320,100,200,60,60);

//rectangle
g.setColor(Color.green);
g.drawRect(700,150,50,400);

//triangle
g.setColor(Color.blue);
g.drawLine(400,350,450,450);
g.drawLine(400,350,350,450);
g.drawLine(350,450,450,450);

//points
g.setColor(Color.white);
g.drawRect(300,70,0,0);
g.drawRect(600,200,0,0);
}
}
RoperJoe02
How long do you want to ignore this user?
I was thinking we should have given hima better look too. Oh well, only time will tell.
McInnis 03
How long do you want to ignore this user?
AG
Some fool called into Houston radio yesterday and made it sound like we were ludicrous for NOT hiring him.

If you want to support your guy, that's fine, but if you think we're totally in the wrong for NOT hiring him, you're out of line.
Waltonloads08
How long do you want to ignore this user?
AG
NO
Law361
How long do you want to ignore this user?
AG
Turgeon is a much better coach and i am glad with the hire
D.J. Flores
How long do you want to ignore this user?
AG
not really
Refresh
Page 1 of 1
 
×
subscribe Verify your student status
See Subscription Benefits
Trial only available to users who have never subscribed or participated in a previous trial.