The plan
Posted 12 years agoWhile im not one to write on this site mcuh since 95% of my art really wouldn't get any traction on here and an offer of requests has gone.... well disappointingly. i present the plan.
As very few area aware im im working gon getting into a masters program right now so the past year and a half has been cut off from the drawing w hat i want world to the drawing what they want.
Over the summer i plan to re design yusufu, more of an update of idea that me and globalman have done.
mayeb a few wrestling works, cause its the best thing ever!
maybe throw out a few thigs that would catch some of the perves on heres eyes, aka more errotic such.
(nothign wrogn with being a prev im on that boat some days my self)
3d models. working on a wreslting ring and a few other neat things. if you have some cool ideas shoot them my way.
well that it or at least this site will see. if you wan to see my more recent works, that are really quit good and haning in some shows let me know and ill show you where to go to see them
As very few area aware im im working gon getting into a masters program right now so the past year and a half has been cut off from the drawing w hat i want world to the drawing what they want.
Over the summer i plan to re design yusufu, more of an update of idea that me and globalman have done.
mayeb a few wrestling works, cause its the best thing ever!
maybe throw out a few thigs that would catch some of the perves on heres eyes, aka more errotic such.
(nothign wrogn with being a prev im on that boat some days my self)
3d models. working on a wreslting ring and a few other neat things. if you have some cool ideas shoot them my way.
well that it or at least this site will see. if you wan to see my more recent works, that are really quit good and haning in some shows let me know and ill show you where to go to see them
SPORTS!!!
Posted 13 years agoWhile the only sports that i am active in are combat sports (ie wrestling, sparing, boxing, kick boxing etc) i am for a class having to analyze sports from a interdisciplinary view, Art and Visual technologies As those are both degrees ill be getting at the end of the year. But if ya want a interesting view on your favorite sports and such take a read at my new blog that will be updated 3x a week: http://theartistcaughtstealingthird.blogspot.com/ Thanks all happy what ever ti si that you do!
First Journal in over a year
Posted 14 years agoWell i guess i should update this thing... though no one really actully reads these things unless your a super artist, that i am not. but ya weather killed the power and such to the dojo im training at right now so no class tonight. been training martial arts for 6 days a week for who knows how many months and now i have 0 idea what to do with my night. its a sadness suggestions?
heres a virtual dog program
Posted 15 years agoheres a fun lil program that, if you have a python reading program, you can play around with that i made :)
be sure to have a grahics mod in the file you save this to
from graphics import *
def main():
"""dog drawing program"""
win = GraphWin("CS1400 - Pet Dog", 610, 500) # create graphics window
clear_screen(win) # start with a clear screen
rec1, rec2, rec3, rec4 = draw_buttons(win) # create user buttons
mood = MOOD_HAPPY
# loop forever until dog is dead
while True:
drawDogMood(win, mood)
mouseClick = win.getMouse() # get mouse click
action = getAction (rec1, rec2, rec3, rec4, mouseClick)
mood = setMood (action, mood)
if mood == MOOD_DEAD:
drawDogMood(win, mood)
break
# wait for user to click one more time before ending the program
msg_location = Point(305, 430)
msg = Text(msg_location, "ZOMBIE DOG! Click anywhere to run.")
msg.setTextColor("red")
msg.draw(win) # draw message
mouseClick = win.getMouse()
win.close()
return
ACTION_PET = 1
ACTION_FEED = 2
ACTION_PLAY = 3
ACTION_IGNOR = 4
ACTION_ERROR = 5
MOOD_HAPPY = 1
MOOD_ANGRY = 2
MOOD_SLEEPING = 3
MOOD_BORED = 4
MOOD_HUNGRY = 5
MOOD_DEAD = 6
def happyAction (action):
new_mood = MOOD_HAPPY
if action == ACTION_PLAY:
new_mood = MOOD_HUNGRY
elif action == ACTION_IGNOR:
new_mood = MOOD_BORED
elif action == ACTION_PET:
new_mood = MOOD_SLEEPING
elif action == ACTION_FEED:
new_mood = MOOD_SLEEPING
return new_mood
def sleepingAction (action):
new_mood = MOOD_SLEEPING
if action == ACTION_PLAY:
new_mood = MOOD_ANGRY
elif action == ACTION_IGNOR:
new_mood = MOOD_BORED
elif action == ACTION_PET:
new_mood = MOOD_ANGRY
elif action == ACTION_FEED:
new_mood = MOOD_SLEEPING
return new_mood
def angryAction (action):
new_mood = MOOD_ANGRY
if action == ACTION_PLAY:
new_mood = MOOD_HUNGRY
elif action == ACTION_IGNOR:
new_mood = MOOD_ANGRY
elif action == ACTION_PET:
new_mood = MOOD_SLEEPING
elif action == ACTION_FEED:
new_mood = MOOD_BORED
return new_mood
def boredAction (action):
new_mood = MOOD_BORED
if action == ACTION_PLAY:
new_mood = MOOD_HUNGRY
elif action == ACTION_IGNOR:
new_mood = MOOD_SLEEPING
elif action == ACTION_PET:
new_mood = MOOD_HAPPY
elif action == ACTION_FEED:
new_mood = MOOD_BORED
return new_mood
def hungryAction (action):
new_mood = MOOD_HUNGRY
if action == ACTION_PLAY:
new_mood = MOOD_ANGRY
elif action == ACTION_IGNOR:
new_mood = MOOD_DEAD
elif action == ACTION_PET:
new_mood = MOOD_HUNGRY
elif action == ACTION_FEED:
new_mood = MOOD_SLEEPING
return new_mood
def setMood (action, mood):
new_mood = mood
if mood == MOOD_HAPPY:
new_mood = happyAction (action)
elif mood == MOOD_HUNGRY:
new_mood = hungryAction (action)
elif mood == MOOD_BORED:
new_mood = boredAction (action)
elif mood == MOOD_ANGRY:
new_mood = angryAction (action)
elif mood == MOOD_SLEEPING:
new_mood = sleepingAction (action)
return new_mood
def getAction (rec1, rec2, rec3, rec4, mouseClick):
if inBox(rec1, mouseClick):
return ACTION_PET
elif inBox(rec2, mouseClick):
return ACTION_FEED
elif inBox(rec3, mouseClick):
return ACTION_PLAY
elif inBox(rec4, mouseClick):
return ACTION_IGNOR
else:
return ACTION_ERROR
def drawDogMood (win, mood):
if mood == 1:
drawHappy(win)
elif mood == 2:
drawAngry(win)
elif mood == 3:
drawSleeping(win)
elif mood == 4:
drawBored(win)
elif mood == 5:
drawHungry(win)
elif mood == 6:
drawDead(win)
def clear_screen(win):
# overwrite the screen with a blank rectangle (clears the screen)
rec=Rectangle(Point(10,10),Point(600,440))
rec.setFill("white")
rec.draw(win)
# create the buttons at the bottom of the screen
def draw_buttons(win):
# draw line at bottom of screen
line1 = Line(Point(10,440),Point(600,440))# create line
line1.draw(win) # draw it
# draw the 6 buttons at the bottom of the screen
rec1 = drawRec(win, Point(5,450), Point(150,490), 'green', 'Pet')
rec2 = drawRec(win, Point(160,450), Point(300,490), 'green', 'Feed')
rec3 = drawRec(win, Point(310,450), Point(460,490), 'green', 'Play')
rec4 = drawRec(win, Point(470,450), Point(610,490), 'green', 'Ignor')
return rec1, rec2, rec3, rec4
# function to draw a button
# parameters: win - Window to draw in (GraphWin object)
# recTop - Top corner of button (Point object)
# recBot - Bottom corner of button (Point object)
# color - Color of button (string or Color object)
# mood - Text of button (string)
#
# return: a list of these paramters so we can save them of later use
def drawRec(win, recTop, recBot, color, mood):
"""(top corner, bottom corner, color, mood)"""
rec = Rectangle(recTop,recBot)# create rectangle
rec.setFill(color) # set fill color
rec.draw(win) # draw it
label = Text(Point((recTop.getX()+recBot.getX())/2,(recBot.getY()+recTop.getY())/2),mood)
label.draw(win) # draw label
return [recTop,recBot,color]
# function to determine of mouse click is in button box
# parameters: rec - The rectangle of the button box
# click - The Point coordinates of the mouse click
#
# return: True - If click is in the rectangle
# False - If click is NOT in the rectangle
def inBox(rec, click):
"""(rec, click) checks if click in rec"""
recTop = rec[0]
recBot = rec[1]
if (click.getX() > recTop.getX()) and (click.getX()< recBot.getX()):
if (click.getY() > recTop.getY()) and (click.getY() < recBot.getY()):
return True
return False
#
# Place your shared functions here so they can be used by the
# draw mood functions.
#
def drawbody(win):
lear = Oval (Point(175,125), Point(250,400))
lear.setFill('tan')
lear.setOutline('tan')
rear = Oval (Point (425,125), Point (350,400))
rear.setFill('tan')
rear.setOutline('tan')
head = Circle (Point (300,200), 100)
head.setFill('brown')
head.setOutline('brown')
nose = Polygon (Point (275,225), Point (325,225), Point (300,250))
nose.setFill('black')
lear.draw(win)
rear.draw(win)
head.draw(win)
nose.draw(win)
# draw happy dog (Place your code here)
def drawHappy(win):
"""draws happy dog"""
clear_screen(win)
drawbody(win)
leye = Circle (Point (250,175), 25)
leye.setFill('white')
leye.setOutline('white')
leyecolor = Circle (Point (250,175), 15)
leyecolor.setFill('blue')
leyecolor.setOutline('blue')
leyris = Circle (Point (250,175), 10)
leyris.setFill('black')
leyris.setOutline('black')
reye = Circle (Point (350,175), 25)
reye.setFill('white')
reye.setOutline('white')
reyecolor = Circle (Point (350,175), 15)
reyecolor.setFill('Blue')
reyecolor.setOutline('blue')
reyris = Circle (Point (350,175), 10)
reyris.setFill('black')
reyris.setOutline('black')
happymouth = Polygon (Point (275,265), Point (325,265), Point (325,275), Point (315,290), Point (285,290), Point (275,275))
happymouth.setFill('black')
leye.draw(win)
reye.draw(win)
leyecolor.draw(win)
leyris.draw(win)
reyecolor.draw(win)
reyris.draw(win)
happymouth.draw(win)
# draw angry dog (Place your code here)
def drawAngry(win):
"""draws angry dog"""
clear_screen(win)
drawbody(win)
leye = Circle (Point (250,175), 25)
leye.setFill('white')
leye.setOutline('white')
leyecolor = Circle (Point (250,175), 15)
leyecolor.setFill('red')
leyecolor.setOutline('red')
leyris = Circle (Point (250,175), 10)
leyris.setFill('black')
leyris.setOutline('black')
reye = Circle (Point (350,175), 25)
reye.setFill('white')
reye.setOutline('white')
reyecolor = Circle (Point (350,175), 15)
reyecolor.setFill('red')
reyecolor.setOutline('red')
reyris = Circle (Point (350,175), 10)
reyris.setFill('black')
reyris.setOutline('black')
mad = Polygon (Point (250,130), Point (350,130), Point (325,175), Point (275,175))
mad.setFill('brown')
mad.setOutline('brown')
teeth = Polygon (Point (250,265), Point (350,265), Point (338,245), Point (326,265), Point (314,245), Point (302,265), Point (290,245), Point (278,265), Point (266,245), Point (254,265))
teeth.setFill('white')
teeth.setOutline('white')
leye.draw(win)
reye.draw(win)
leyecolor.draw(win)
leyris.draw(win)
reyecolor.draw(win)
reyris.draw(win)
mad.draw(win)
teeth.draw(win)
# draw sleeping dog (Place your code here)
def drawSleeping(win):
"""draws sleeping dog"""
clear_screen(win)
drawbody(win)
leye = Circle (Point (250,175), 25)
leye.setFill('brown')
reye = Circle (Point (350,175), 25)
reye.setFill('brown')
sleepingmouth = Circle (Point (300,275), 10)
sleepingmouth.setFill('black')
leye.draw(win)
reye.draw(win)
sleepingmouth.draw(win)
# draw bored dog (Place your code here)
def drawBored(win):
"""draws bored dog"""
clear_screen(win)
drawbody(win)
leye = Circle (Point (250,175), 25)
leye.setFill('white')
leye.setOutline('white')
leyecolor = Circle (Point (250,175), 15)
leyecolor.setFill('blue')
leyecolor.setOutline('blue')
leyris = Circle (Point (250,175), 10)
leyris.setFill('black')
leyris.setOutline('black')
reye = Circle (Point (350,175), 25)
reye.setFill('white')
reye.setOutline('white')
reyecolor = Circle (Point (350,175), 15)
reyecolor.setFill('Blue')
reyecolor.setOutline('blue')
reyris = Circle (Point (350,175), 10)
reyris.setFill('black')
reyris.setOutline('black')
bored = Rectangle(Point (220,145), Point (375,165))
bored.setFill('brown')
bored.setOutline('brown')
bm = Polygon (Point (275,275), Point (325,275))
leye.draw(win)
reye.draw(win)
leyecolor.draw(win)
leyris.draw(win)
reyecolor.draw(win)
reyris.draw(win)
bored.draw(win)
bm.draw(win)
# draw hungry dog (Place your code here)
def drawHungry(win):
"""draws hungry dog"""
clear_screen(win)
drawbody(win)
leye = Circle (Point (250,175), 25)
leye.setFill('white')
leye.setOutline('white')
leyecolor = Circle (Point (250,175), 20)
leyecolor.setFill('blue')
leyecolor.setOutline('blue')
leyris = Circle (Point (250,175), 10)
leyris.setFill('black')
leyris.setOutline('black')
reye = Circle (Point (350,175), 25)
reye.setFill('white')
reye.setOutline('white')
reyecolor = Circle (Point (350,175), 20)
reyecolor.setFill('Blue')
reyecolor.setOutline('blue')
reyris = Circle (Point (350,175), 10)
reyris.setFill('black')
reyris.setOutline('black')
sad = Rectangle(Point (220,187), Point (390,205))
sad.setFill('brown')
sad.setOutline('brown')
feed = Oval (Point (275,265), Point (325,285))
feed.setFill('black')
leye.draw(win)
reye.draw(win)
leyecolor.draw(win)
leyris.draw(win)
reyecolor.draw(win)
reyris.draw(win)
sad.draw(win)
feed.draw(win)
# draw dead dog (Place your code here)
def drawDead(win):
"""draws dead dog"""
clear_screen(win)
lear = Oval (Point(175,125), Point(250,400))
lear.setFill('tan4')
lear.setOutline('tan4')
rear = Oval (Point (425,125), Point (350,400))
rear.setFill('tan4')
rear.setOutline('tan4')
head = Circle (Point (300,200), 100)
head.setFill('brown4')
head.setOutline('brown4')
nose = Polygon (Point (275,225), Point (325,225), Point (300,250))
nose.setFill('black')
leye = Circle (Point (250,175), 25)
leye.setFill('yellow')
leye.setOutline('yellow')
leyecolor = Circle (Point (250,175), 15)
leyecolor.setFill('green')
leyecolor.setOutline('green')
leyris = Circle (Point (250,175), 10)
leyris.setFill('black')
leyris.setOutline('black')
reye = Circle (Point (350,175), 25)
reye.setFill('yellow')
reye.setOutline('yellow')
reyecolor = Circle (Point (350,175), 15)
reyecolor.setFill('green')
reyecolor.setOutline('green')
reyris = Circle (Point (350,175), 10)
reyris.setFill('black')
reyris.setOutline('black')
teeth = Polygon (Point (250,265), Point (350,265), Point (338,245), Point (326,265), Point (314,245), Point (302,265), Point (290,245), Point (278,265), Point (266,245), Point (254,265))
teeth.setFill('white')
teeth.setOutline('white')
lear.draw(win)
rear.draw(win)
head.draw(win)
nose.draw(win)
leye.draw(win)
reye.draw(win)
leyecolor.draw(win)
leyris.draw(win)
reyecolor.draw(win)
reyris.draw(win)
teeth.draw(win)
# run main loop
main()
be sure to have a grahics mod in the file you save this to
from graphics import *
def main():
"""dog drawing program"""
win = GraphWin("CS1400 - Pet Dog", 610, 500) # create graphics window
clear_screen(win) # start with a clear screen
rec1, rec2, rec3, rec4 = draw_buttons(win) # create user buttons
mood = MOOD_HAPPY
# loop forever until dog is dead
while True:
drawDogMood(win, mood)
mouseClick = win.getMouse() # get mouse click
action = getAction (rec1, rec2, rec3, rec4, mouseClick)
mood = setMood (action, mood)
if mood == MOOD_DEAD:
drawDogMood(win, mood)
break
# wait for user to click one more time before ending the program
msg_location = Point(305, 430)
msg = Text(msg_location, "ZOMBIE DOG! Click anywhere to run.")
msg.setTextColor("red")
msg.draw(win) # draw message
mouseClick = win.getMouse()
win.close()
return
ACTION_PET = 1
ACTION_FEED = 2
ACTION_PLAY = 3
ACTION_IGNOR = 4
ACTION_ERROR = 5
MOOD_HAPPY = 1
MOOD_ANGRY = 2
MOOD_SLEEPING = 3
MOOD_BORED = 4
MOOD_HUNGRY = 5
MOOD_DEAD = 6
def happyAction (action):
new_mood = MOOD_HAPPY
if action == ACTION_PLAY:
new_mood = MOOD_HUNGRY
elif action == ACTION_IGNOR:
new_mood = MOOD_BORED
elif action == ACTION_PET:
new_mood = MOOD_SLEEPING
elif action == ACTION_FEED:
new_mood = MOOD_SLEEPING
return new_mood
def sleepingAction (action):
new_mood = MOOD_SLEEPING
if action == ACTION_PLAY:
new_mood = MOOD_ANGRY
elif action == ACTION_IGNOR:
new_mood = MOOD_BORED
elif action == ACTION_PET:
new_mood = MOOD_ANGRY
elif action == ACTION_FEED:
new_mood = MOOD_SLEEPING
return new_mood
def angryAction (action):
new_mood = MOOD_ANGRY
if action == ACTION_PLAY:
new_mood = MOOD_HUNGRY
elif action == ACTION_IGNOR:
new_mood = MOOD_ANGRY
elif action == ACTION_PET:
new_mood = MOOD_SLEEPING
elif action == ACTION_FEED:
new_mood = MOOD_BORED
return new_mood
def boredAction (action):
new_mood = MOOD_BORED
if action == ACTION_PLAY:
new_mood = MOOD_HUNGRY
elif action == ACTION_IGNOR:
new_mood = MOOD_SLEEPING
elif action == ACTION_PET:
new_mood = MOOD_HAPPY
elif action == ACTION_FEED:
new_mood = MOOD_BORED
return new_mood
def hungryAction (action):
new_mood = MOOD_HUNGRY
if action == ACTION_PLAY:
new_mood = MOOD_ANGRY
elif action == ACTION_IGNOR:
new_mood = MOOD_DEAD
elif action == ACTION_PET:
new_mood = MOOD_HUNGRY
elif action == ACTION_FEED:
new_mood = MOOD_SLEEPING
return new_mood
def setMood (action, mood):
new_mood = mood
if mood == MOOD_HAPPY:
new_mood = happyAction (action)
elif mood == MOOD_HUNGRY:
new_mood = hungryAction (action)
elif mood == MOOD_BORED:
new_mood = boredAction (action)
elif mood == MOOD_ANGRY:
new_mood = angryAction (action)
elif mood == MOOD_SLEEPING:
new_mood = sleepingAction (action)
return new_mood
def getAction (rec1, rec2, rec3, rec4, mouseClick):
if inBox(rec1, mouseClick):
return ACTION_PET
elif inBox(rec2, mouseClick):
return ACTION_FEED
elif inBox(rec3, mouseClick):
return ACTION_PLAY
elif inBox(rec4, mouseClick):
return ACTION_IGNOR
else:
return ACTION_ERROR
def drawDogMood (win, mood):
if mood == 1:
drawHappy(win)
elif mood == 2:
drawAngry(win)
elif mood == 3:
drawSleeping(win)
elif mood == 4:
drawBored(win)
elif mood == 5:
drawHungry(win)
elif mood == 6:
drawDead(win)
def clear_screen(win):
# overwrite the screen with a blank rectangle (clears the screen)
rec=Rectangle(Point(10,10),Point(600,440))
rec.setFill("white")
rec.draw(win)
# create the buttons at the bottom of the screen
def draw_buttons(win):
# draw line at bottom of screen
line1 = Line(Point(10,440),Point(600,440))# create line
line1.draw(win) # draw it
# draw the 6 buttons at the bottom of the screen
rec1 = drawRec(win, Point(5,450), Point(150,490), 'green', 'Pet')
rec2 = drawRec(win, Point(160,450), Point(300,490), 'green', 'Feed')
rec3 = drawRec(win, Point(310,450), Point(460,490), 'green', 'Play')
rec4 = drawRec(win, Point(470,450), Point(610,490), 'green', 'Ignor')
return rec1, rec2, rec3, rec4
# function to draw a button
# parameters: win - Window to draw in (GraphWin object)
# recTop - Top corner of button (Point object)
# recBot - Bottom corner of button (Point object)
# color - Color of button (string or Color object)
# mood - Text of button (string)
#
# return: a list of these paramters so we can save them of later use
def drawRec(win, recTop, recBot, color, mood):
"""(top corner, bottom corner, color, mood)"""
rec = Rectangle(recTop,recBot)# create rectangle
rec.setFill(color) # set fill color
rec.draw(win) # draw it
label = Text(Point((recTop.getX()+recBot.getX())/2,(recBot.getY()+recTop.getY())/2),mood)
label.draw(win) # draw label
return [recTop,recBot,color]
# function to determine of mouse click is in button box
# parameters: rec - The rectangle of the button box
# click - The Point coordinates of the mouse click
#
# return: True - If click is in the rectangle
# False - If click is NOT in the rectangle
def inBox(rec, click):
"""(rec, click) checks if click in rec"""
recTop = rec[0]
recBot = rec[1]
if (click.getX() > recTop.getX()) and (click.getX()< recBot.getX()):
if (click.getY() > recTop.getY()) and (click.getY() < recBot.getY()):
return True
return False
#
# Place your shared functions here so they can be used by the
# draw mood functions.
#
def drawbody(win):
lear = Oval (Point(175,125), Point(250,400))
lear.setFill('tan')
lear.setOutline('tan')
rear = Oval (Point (425,125), Point (350,400))
rear.setFill('tan')
rear.setOutline('tan')
head = Circle (Point (300,200), 100)
head.setFill('brown')
head.setOutline('brown')
nose = Polygon (Point (275,225), Point (325,225), Point (300,250))
nose.setFill('black')
lear.draw(win)
rear.draw(win)
head.draw(win)
nose.draw(win)
# draw happy dog (Place your code here)
def drawHappy(win):
"""draws happy dog"""
clear_screen(win)
drawbody(win)
leye = Circle (Point (250,175), 25)
leye.setFill('white')
leye.setOutline('white')
leyecolor = Circle (Point (250,175), 15)
leyecolor.setFill('blue')
leyecolor.setOutline('blue')
leyris = Circle (Point (250,175), 10)
leyris.setFill('black')
leyris.setOutline('black')
reye = Circle (Point (350,175), 25)
reye.setFill('white')
reye.setOutline('white')
reyecolor = Circle (Point (350,175), 15)
reyecolor.setFill('Blue')
reyecolor.setOutline('blue')
reyris = Circle (Point (350,175), 10)
reyris.setFill('black')
reyris.setOutline('black')
happymouth = Polygon (Point (275,265), Point (325,265), Point (325,275), Point (315,290), Point (285,290), Point (275,275))
happymouth.setFill('black')
leye.draw(win)
reye.draw(win)
leyecolor.draw(win)
leyris.draw(win)
reyecolor.draw(win)
reyris.draw(win)
happymouth.draw(win)
# draw angry dog (Place your code here)
def drawAngry(win):
"""draws angry dog"""
clear_screen(win)
drawbody(win)
leye = Circle (Point (250,175), 25)
leye.setFill('white')
leye.setOutline('white')
leyecolor = Circle (Point (250,175), 15)
leyecolor.setFill('red')
leyecolor.setOutline('red')
leyris = Circle (Point (250,175), 10)
leyris.setFill('black')
leyris.setOutline('black')
reye = Circle (Point (350,175), 25)
reye.setFill('white')
reye.setOutline('white')
reyecolor = Circle (Point (350,175), 15)
reyecolor.setFill('red')
reyecolor.setOutline('red')
reyris = Circle (Point (350,175), 10)
reyris.setFill('black')
reyris.setOutline('black')
mad = Polygon (Point (250,130), Point (350,130), Point (325,175), Point (275,175))
mad.setFill('brown')
mad.setOutline('brown')
teeth = Polygon (Point (250,265), Point (350,265), Point (338,245), Point (326,265), Point (314,245), Point (302,265), Point (290,245), Point (278,265), Point (266,245), Point (254,265))
teeth.setFill('white')
teeth.setOutline('white')
leye.draw(win)
reye.draw(win)
leyecolor.draw(win)
leyris.draw(win)
reyecolor.draw(win)
reyris.draw(win)
mad.draw(win)
teeth.draw(win)
# draw sleeping dog (Place your code here)
def drawSleeping(win):
"""draws sleeping dog"""
clear_screen(win)
drawbody(win)
leye = Circle (Point (250,175), 25)
leye.setFill('brown')
reye = Circle (Point (350,175), 25)
reye.setFill('brown')
sleepingmouth = Circle (Point (300,275), 10)
sleepingmouth.setFill('black')
leye.draw(win)
reye.draw(win)
sleepingmouth.draw(win)
# draw bored dog (Place your code here)
def drawBored(win):
"""draws bored dog"""
clear_screen(win)
drawbody(win)
leye = Circle (Point (250,175), 25)
leye.setFill('white')
leye.setOutline('white')
leyecolor = Circle (Point (250,175), 15)
leyecolor.setFill('blue')
leyecolor.setOutline('blue')
leyris = Circle (Point (250,175), 10)
leyris.setFill('black')
leyris.setOutline('black')
reye = Circle (Point (350,175), 25)
reye.setFill('white')
reye.setOutline('white')
reyecolor = Circle (Point (350,175), 15)
reyecolor.setFill('Blue')
reyecolor.setOutline('blue')
reyris = Circle (Point (350,175), 10)
reyris.setFill('black')
reyris.setOutline('black')
bored = Rectangle(Point (220,145), Point (375,165))
bored.setFill('brown')
bored.setOutline('brown')
bm = Polygon (Point (275,275), Point (325,275))
leye.draw(win)
reye.draw(win)
leyecolor.draw(win)
leyris.draw(win)
reyecolor.draw(win)
reyris.draw(win)
bored.draw(win)
bm.draw(win)
# draw hungry dog (Place your code here)
def drawHungry(win):
"""draws hungry dog"""
clear_screen(win)
drawbody(win)
leye = Circle (Point (250,175), 25)
leye.setFill('white')
leye.setOutline('white')
leyecolor = Circle (Point (250,175), 20)
leyecolor.setFill('blue')
leyecolor.setOutline('blue')
leyris = Circle (Point (250,175), 10)
leyris.setFill('black')
leyris.setOutline('black')
reye = Circle (Point (350,175), 25)
reye.setFill('white')
reye.setOutline('white')
reyecolor = Circle (Point (350,175), 20)
reyecolor.setFill('Blue')
reyecolor.setOutline('blue')
reyris = Circle (Point (350,175), 10)
reyris.setFill('black')
reyris.setOutline('black')
sad = Rectangle(Point (220,187), Point (390,205))
sad.setFill('brown')
sad.setOutline('brown')
feed = Oval (Point (275,265), Point (325,285))
feed.setFill('black')
leye.draw(win)
reye.draw(win)
leyecolor.draw(win)
leyris.draw(win)
reyecolor.draw(win)
reyris.draw(win)
sad.draw(win)
feed.draw(win)
# draw dead dog (Place your code here)
def drawDead(win):
"""draws dead dog"""
clear_screen(win)
lear = Oval (Point(175,125), Point(250,400))
lear.setFill('tan4')
lear.setOutline('tan4')
rear = Oval (Point (425,125), Point (350,400))
rear.setFill('tan4')
rear.setOutline('tan4')
head = Circle (Point (300,200), 100)
head.setFill('brown4')
head.setOutline('brown4')
nose = Polygon (Point (275,225), Point (325,225), Point (300,250))
nose.setFill('black')
leye = Circle (Point (250,175), 25)
leye.setFill('yellow')
leye.setOutline('yellow')
leyecolor = Circle (Point (250,175), 15)
leyecolor.setFill('green')
leyecolor.setOutline('green')
leyris = Circle (Point (250,175), 10)
leyris.setFill('black')
leyris.setOutline('black')
reye = Circle (Point (350,175), 25)
reye.setFill('yellow')
reye.setOutline('yellow')
reyecolor = Circle (Point (350,175), 15)
reyecolor.setFill('green')
reyecolor.setOutline('green')
reyris = Circle (Point (350,175), 10)
reyris.setFill('black')
reyris.setOutline('black')
teeth = Polygon (Point (250,265), Point (350,265), Point (338,245), Point (326,265), Point (314,245), Point (302,265), Point (290,245), Point (278,265), Point (266,245), Point (254,265))
teeth.setFill('white')
teeth.setOutline('white')
lear.draw(win)
rear.draw(win)
head.draw(win)
nose.draw(win)
leye.draw(win)
reye.draw(win)
leyecolor.draw(win)
leyris.draw(win)
reyecolor.draw(win)
reyris.draw(win)
teeth.draw(win)
# run main loop
main()
MEME!!! Stuff is messed up
Posted 16 years agoBored waiting for class so start stole from
Jef_Lunar
MY LIFE AS A MOVIE SOUNDTRACK
So, here's how it works:
1. Open your library (iTunes, Winamp, Media Player, iPod, etc)
2. Put it on shuffle
3. Press play
4. For every question, type the song that's playing
5. When you go to a new question, press the next button
6. Don't lie and try to pretend you're cool...just type it in
Opening Credits: The Diary- Hollywood Undead
Waking up: Motivation-sum41 (... okay i can see that... i guess)
First Day of School: That's not my name-the ting tings (What the hell would go on that would call for this song O.o)
Falling in Love : I run to you-Lady Antebellum (aw.... thats kinda cute)
Fight Song: Welcome Home-Cohed and Cambria (WIN JUST WIN!)
Break Up: Americas Sweet Hearts-Fall out boy (irony?)
Prom: Eat you alive-Limp Bizkit (wtf kind of prom is that?)
Life: The older i get-Skillet (hm lucky on that one)
Mental Breakdown: Come undone-Duran Duran (lmao awesome, i always knew if i lost my mind that crapy music would be playing in my head)
Driving: If today was your last day-Nickelback (thats kinda depressing to drive to)
Flashback: Bricks-Rise Against (that would be a rather intresting flash back)
Wedding: Here We are-Breaking Benjamin (o geeze that will last long =/)
Birth of a Child: Love Sex magic- Ciara (.... dirty)
Death Scene: Never going to be alone-Nickelback
Credits: When i come around-Green day
Title of this Journal: Stuff is messed up-The off spring

MY LIFE AS A MOVIE SOUNDTRACK
So, here's how it works:
1. Open your library (iTunes, Winamp, Media Player, iPod, etc)
2. Put it on shuffle
3. Press play
4. For every question, type the song that's playing
5. When you go to a new question, press the next button
6. Don't lie and try to pretend you're cool...just type it in
Opening Credits: The Diary- Hollywood Undead
Waking up: Motivation-sum41 (... okay i can see that... i guess)
First Day of School: That's not my name-the ting tings (What the hell would go on that would call for this song O.o)
Falling in Love : I run to you-Lady Antebellum (aw.... thats kinda cute)
Fight Song: Welcome Home-Cohed and Cambria (WIN JUST WIN!)
Break Up: Americas Sweet Hearts-Fall out boy (irony?)
Prom: Eat you alive-Limp Bizkit (wtf kind of prom is that?)
Life: The older i get-Skillet (hm lucky on that one)
Mental Breakdown: Come undone-Duran Duran (lmao awesome, i always knew if i lost my mind that crapy music would be playing in my head)
Driving: If today was your last day-Nickelback (thats kinda depressing to drive to)
Flashback: Bricks-Rise Against (that would be a rather intresting flash back)
Wedding: Here We are-Breaking Benjamin (o geeze that will last long =/)
Birth of a Child: Love Sex magic- Ciara (.... dirty)
Death Scene: Never going to be alone-Nickelback
Credits: When i come around-Green day
Title of this Journal: Stuff is messed up-The off spring
Gettign rid of old tablet!
Posted 16 years agoHey all!
Im gettign rid of my old tablet because i Got a bamboo board and CS4 60% off so im getting rid of my old one. If you have a friend or need one let me know. Send me the money for shipping and its all yours as soon as my new stuff gets in!
Im gettign rid of my old tablet because i Got a bamboo board and CS4 60% off so im getting rid of my old one. If you have a friend or need one let me know. Send me the money for shipping and its all yours as soon as my new stuff gets in!
Photoshop E4
Posted 16 years ago.... FUCK YOU!!!! lol
if ya have not noticed a trend been updating a lot as of late. And for the life of me could not figure out why the hell my line looked like crap and most people had sexy awesome smooth ones, and we have same ot the close process.
Then a bud from a class i took on photo shop hit me in the back of the head and said paths you retard. HUZA! i can do awesomeness!
.... turns out no my older then sin version of photoshop dose not have said paths of awesomeness. So an updated version of PS is in order. Only have use E4 and Cs3 and 4 but not looking to spend the $400 for CS anyone know a good cheaper version?
if ya have not noticed a trend been updating a lot as of late. And for the life of me could not figure out why the hell my line looked like crap and most people had sexy awesome smooth ones, and we have same ot the close process.
Then a bud from a class i took on photo shop hit me in the back of the head and said paths you retard. HUZA! i can do awesomeness!
.... turns out no my older then sin version of photoshop dose not have said paths of awesomeness. So an updated version of PS is in order. Only have use E4 and Cs3 and 4 but not looking to spend the $400 for CS anyone know a good cheaper version?
COMIC UPDATE!!! 4th of july edition!
Posted 16 years agohttp://shadesofgraycomic.com/index.html updated! TWICE in one week! Heres our 4th of July special! Happy explosions!
NEW COMIC UPDATE!!!!
Posted 16 years agohttp://shadesofgraycomic.com/ IS UPDATED!!!!! BE SURE TO CHECK IT OUT AND SEE HOW THE ADDICT IS DOING!!! and is it just me or dose Yusufu look like hes about to go zombie on Reds ass?
COMIC UPDATE!!!!
Posted 16 years ago http://shadesofgraycomic.com/ is updated!!! the first two comics are redone! taking the comic in a new direction and started over take a look updated weekly!!! GO FURRY COMICS!!
ARGGGGH! *Stabs my eyes*
Posted 16 years agoOkay i need a scanner. my cell phone makes my stuff look like bigger crap!!! It looks liek i dont have my contacts in!!!!!!!! ARGHHHHHHHHHHHH!
I AM NOW AT WAR WITH BIRDS!!!!!
Posted 16 years agoNew Furry web comic!!!!! **updated**
Posted 16 years agoMe and Globman from DA have our own web comic !
http://shadesofgraycomic.com/
take a look and give your opinion!
Up coming site contests where your Fursona Can be seen in the comic Keep us book marked to get all the updates!
http://shadesofgraycomic.com/
take a look and give your opinion!
Up coming site contests where your Fursona Can be seen in the comic Keep us book marked to get all the updates!
Stole from Frisby because i was bored
Posted 16 years agoExtraversion |||||||||||||||||||| 82%
Stability |||||||||||||||||||| 82%
Orderliness |||||||||| 38%
Accommodation |||||||||||| 50%
Interdependence |||||||||||| 43%
Intellectual |||||||||||| 50%
Mystical |||||||||||||| 56%
Artistic |||||||||||||| 56%
Religious |||||| 30%
Hedonism |||||||||||| 43%
Materialism |||||||||||||||||||| 83%
Narcissism |||||||||||| 43%
Adventurousness |||||||||||||||| 63%
Work ethic |||||||||||||| 56%
Humanitarian |||||||||||||| 56%
Conflict seeking |||||||||||||| 56%
Need to dominate |||||||||||||||||||| 83%
Romantic |||||| 30%
Avoidant || 10%
Anti-authority |||||||||||||| 56%
Wealth || 10%
Dependency |||||| 23%
Change averse |||||||||||| 50%
Cautiousness |||||||||||||||||| 76%
Individuality |||||||||||| 43%
Sexuality |||||||||||||| 56%
Peter pan complex |||||||||||| 43%
Family drive |||||||||||||||| 70%
Physical Activity |||||||||||||||| 70%
Histrionic |||||||||||||||| 70%
Paranoia |||||||||||||||||||| 83%
Vanity |||||||||| 36%
Honor |||||||||||||||||| 76%
Thriftiness |||||||||||||||| 63%
Stability results were high which suggests you are very relaxed, calm, secure, and optimistic..
Orderliness results were moderately low which suggests you are, at times, overly flexible, improvised, and fun seeking at the expense of reliability, work ethic, and long term accomplishment.
Extraversion results were high which suggests you are overly talkative, outgoing, sociable and interacting at the expense too often of developing your own individual interests and internally based identity.
trait snapshot:
messy, disorganized, social, tough, outgoing, rarely worries, self revealing, open, risk taker, likes the unknown, likes large parties, makes friends easily, likes to stand out, likes to make fun of people, reckless, optimistic, positive, strong, does not like to be alone, ambivalent about chaos, abstract, impractical, not good at saving money, fearless, trusting, thrill seeker, not rule conscious, enjoys leadership, strange, loves food, abstract, rarely irritated, anti-authority, attracted to the counter culture
I think its all good but the poor work ethic THATS A LIE!!!!
Stability |||||||||||||||||||| 82%
Orderliness |||||||||| 38%
Accommodation |||||||||||| 50%
Interdependence |||||||||||| 43%
Intellectual |||||||||||| 50%
Mystical |||||||||||||| 56%
Artistic |||||||||||||| 56%
Religious |||||| 30%
Hedonism |||||||||||| 43%
Materialism |||||||||||||||||||| 83%
Narcissism |||||||||||| 43%
Adventurousness |||||||||||||||| 63%
Work ethic |||||||||||||| 56%
Humanitarian |||||||||||||| 56%
Conflict seeking |||||||||||||| 56%
Need to dominate |||||||||||||||||||| 83%
Romantic |||||| 30%
Avoidant || 10%
Anti-authority |||||||||||||| 56%
Wealth || 10%
Dependency |||||| 23%
Change averse |||||||||||| 50%
Cautiousness |||||||||||||||||| 76%
Individuality |||||||||||| 43%
Sexuality |||||||||||||| 56%
Peter pan complex |||||||||||| 43%
Family drive |||||||||||||||| 70%
Physical Activity |||||||||||||||| 70%
Histrionic |||||||||||||||| 70%
Paranoia |||||||||||||||||||| 83%
Vanity |||||||||| 36%
Honor |||||||||||||||||| 76%
Thriftiness |||||||||||||||| 63%
Stability results were high which suggests you are very relaxed, calm, secure, and optimistic..
Orderliness results were moderately low which suggests you are, at times, overly flexible, improvised, and fun seeking at the expense of reliability, work ethic, and long term accomplishment.
Extraversion results were high which suggests you are overly talkative, outgoing, sociable and interacting at the expense too often of developing your own individual interests and internally based identity.
trait snapshot:
messy, disorganized, social, tough, outgoing, rarely worries, self revealing, open, risk taker, likes the unknown, likes large parties, makes friends easily, likes to stand out, likes to make fun of people, reckless, optimistic, positive, strong, does not like to be alone, ambivalent about chaos, abstract, impractical, not good at saving money, fearless, trusting, thrill seeker, not rule conscious, enjoys leadership, strange, loves food, abstract, rarely irritated, anti-authority, attracted to the counter culture
I think its all good but the poor work ethic THATS A LIE!!!!
a pyro....Fighting fires?
Posted 16 years agoI have my first Fire fighter meeting today XD thats right ill be fighting fire through school to be a doctor .... and starting my own biz what can i say i am motivated! And thats why i am Da Joe
I've seen 138 of 239 films... meme..... thing
Posted 16 years agoWell more waiting for class to start so i did this while the geek goon squad is trying to figure out what is wrong with my web site enjoy!!!
SUPPOSEDLY if you've seen over 85 films, you have no life. Mark the ones you've seen. There are 239 films on this list. Copy this list Then, put x's next to the films you've seen, add them up, change the header adding your number, and click post at the bottom. Have fun
( ) Rocky Horror Picture Show
(x) Grease
(x) Pirates of the Caribbean
(x) Pirates of the Caribbean 2: Dead Man's Chest (fish people WTF!)
(x) Boondock Saints
( ) Fight Club
(x) Starsky and Hutch
( ) Neverending Story
( ) Blazing Saddles
( ) Airplane
Total: 5
(x) The Princess Bride
(x) Anchorman (one of the few things ill watch with will farel in again)
(x) Napoleon Dynamite ( i grew up in idaho people dont know how true that movie is)
(x) Labyrinth
( ) Saw
( ) Saw II
(x) White Noise
( ) White Oleander
(x) Anger Management
(x) 50 First Dates
(x) The Princess Diaries
(x) The Princess Diaries 2: Royal Engagement
Total so far: 15 ... this dose not bod well for me
(x) Scream
( ) Scream 2
( ) Scream 3
(x) Scary Movie
(x) Scary Movie 2
(x) Scary Movie 3
(x) Scary Movie 4
(x) American Pie
(x) American Pie 2
(x) American Wedding
( ) American Pie Band Camp
Total so far: 23
(x) Harry Potter 1
(x) Harry Potter 2
(x) Harry Potter 3
(x) Harry Potter 4
( ) Resident Evil 1
(x) Resident Evil 2
(x) The Wedding Singer
(x) Little Black Book
(x) The Village
(x) Lilo & Stitch
Total so far: 32 TT_TT
(x) Finding Nemo
(x) Finding Neverland
(x) Signs
(x) The Grinch
( ) Texas Chainsaw Massacre
( ) Texas Chainsaw Massacre: The Beginning
( ) White Chicks
( ) Butterfly Effect
(x) 13 Going on 30
(x) I, Robot
(x) Robots
Total so far: 39
(x) Dodgeball: A True Underdog Story
( ) Universal Soldier
(x) Lemony Snicket: A Series Of Unfortunate Events
(x) Along Came Polly
(x) Deep Impact
( ) King Pin
( ) Never Been Kissed
(x) Meet The Parents
(x) Meet the Fockers
(x) Eight Crazy Nights
(x) Joe Dirt
(x) KING KONG
Total so far: 48
(x) A Cinderella Story
( ) The Terminal
( ) The Lizzie McGuire Movie
( ) Passport to Paris
(x) Dumb & Dumber
(x) Dumber & Dumberer
(x) Final Destination
( ) Final Destination 2
( ) Final Destination 3
( ) Halloween
(x) The Ring
( ) The Ring 2
( ) Surviving X-MAS
(x) Flubber
Total so far: 54
( ) Harold & Kumar Go To White Castle
( ) Practical Magic
(x) Chicago
(x) Ghost Ship
( ) From Hell
(x) Hellboy
( ) Secret Window
( ) I Am Sam
( ) The Whole Nine Yards
(x) The Whole Ten Yards
Total so far: 58
(x) The Day After Tomorrow
( ) Child's Play
( ) Seed of Chucky
( ) Bride of Chucky
(x) Ten Things I Hate About You
(x) Just Married
( ) Gothika
( ) Nightmare on Elm Street
( ) Sixteen Candles
(x) Remember the Titans
( ) Coach Carter
(x) The Grudge
( ) The Grudge 2
(x) The Mask
( ) Son Of The Mask
Total so far: 64
(x) Bad Boys
( ) Bad Boys 2
(x) Joy Ride
( ) Lucky Number Slevin
(x) Ocean's Eleven
(x) Ocean's Twelve
(x) Bourne Identity
(x) Bourne Supremecy
( ) Lone Star
(x) Bedazzled
(x) Predator I
(x) Predator II
(x) Ice Age
(x) Ice Age 2: The Meltdown
(x) Curious George
Total so far:76
(x) Independence Day
( ) Cujo
( ) A Bronx Tale
( ) Darkness Falls
( ) Christine
(x) ET
(x)Children of the Corn
(x) My Bosses Daughter
(x) Maid in Manhattan
(x) War of the Worlds
(x) Rush Hour
(x) Rush Hour 2
Total so far: 84 only one more to go till i have no life.... shit
( ) Best Bet
(x) How to Lose a Guy in 10 Days ( I knew i shouldn't have watched that!)
( ) She's All That
( ) Calendar Girls
( ) Sideways
(x) Mars Attacks
(x) Event Horizon (scared the shit out of me when i was little)
(x) Ever After
(x) Wizard of Oz
(x) Forrest Gump
(x) Big Trouble in Little China
(x) The Terminator
(x) The Terminator 2
( ) The Terminator 3
Total so far: 93
(x) X-Men
(x) X-2
(x) X-3 (LOVED IT!)
(x) Spider-Man
(x) Spider-Man 2
( ) Sky High
(x) Jeepers Creepers
(x) Jeepers Creepers 2
(x) Catch Me If You Can
(x) The Little Mermaid (<--Insert random Disney movie here--> and i have seen it)
(x) Freaky Friday
( ) Reign of Fire
( ) The Skulls
( ) Cruel Intentions
( ) Cruel Intentions 2
( ) The Hot Chick
(x) Shrek
(x) Shrek 2
Total so far: 105
(x) Swimfan
( ) Miracle on 34th street
(x) Old School
( ) The Notebook (I REFUSE TO WATCH IT!)
( ) K-Pax
( ) Krippendorf's Tribe
(x) A Walk to Remember
( ) Ice Castles
( ) Boogeyman
( ) The 40-year-old Virgin
Total so far: 108
(x) Lord of the Rings Fellowship of the Ring
(x) Lord of the Rings The Two Towers
(x) Lord of the Rings Return Of the King
(x) Indiana Jones and the Raiders of the Lost Ark
(x) Indiana Jones and the Temple of Doom
(x) Indiana Jones and the Last Crusade
Total so far: 114
( ) Baseketball
( ) Hostel
( ) Waiting for Guffman
( ) House of 1000 Corpses
( ) Devils Rejects
(x) Elf
( ) Highlander
(x) Mothman Prophecies
( ) American History X
( ) Three
Total so Far: 116
( ) The Jacket
( ) Kung Fu Hustle
( ) Shaolin Soccer
( ) Night Watch
(x) Monsters Inc.
(x) Titanic
(x) Monty Python and the Holy Grail ( you have not lived till you seen this)
( ) Shaun Of the Dead
( ) Willard
Total so far: 119
( ) High Tension
( ) Club Dread
(x) Hulk (the new one the old one looked like crap)
(x) Dawn Of the Dead
(x) Hook ( Robin williams in tights... ya i threw up a little bit but still good movie)
(x) Chronicles Of Narnia: The Lion the Witch and the Wardrobe
( ) 28 days later
( ) Orgazmo
( ) Phantasm
(x) Waterworld
Total so far: 124
( ) Kill Bill vol 1
( ) Kill Bill vol 2
(x) Mortal Kombat (MORTAL KOMBAT!!!!! dandandandandandandan)
( ) Wolf Creek
(x) Kingdom of Heaven
( ) the Hills Have Eyes
( ) I Spit on Your Grave aka the Day of the Woman
( ) The Last House on the Left
( ) Re-Animator
( ) Army of Darkness
Total so far: 128
(x) Star Wars Ep. I The Phantom Menace
(x) Star Wars Ep. II Attack of the Clones
(x) Star Wars Ep. III Revenge of the Sith
(x) Star Wars Ep. IV A New Hope
(x) Star Wars Ep. V The Empire Strikes Back
(x) Star Wars Ep. VI Return of the Jedi
( ) Ewoks Caravan Of Courage
( ) Ewoks The Battle For Endor
Total so far: 134
(x) The Matrix
(x) The Matrix Reloaded
(x) The Matrix Revolutions
( ) Animatrix ( it came with all my matrix movies but i have not watched it)
( ) Evil Dead
( ) Evil Dead 2
(x) Team America: World Police
( ) Red Dragon
(x) Silence of the Lambs
( ) Hannibal
Total so far: 138
Now Add them up and...
Put "I've seen blank out of 239 films" in the subject line and repost i
SUPPOSEDLY if you've seen over 85 films, you have no life. Mark the ones you've seen. There are 239 films on this list. Copy this list Then, put x's next to the films you've seen, add them up, change the header adding your number, and click post at the bottom. Have fun
( ) Rocky Horror Picture Show
(x) Grease
(x) Pirates of the Caribbean
(x) Pirates of the Caribbean 2: Dead Man's Chest (fish people WTF!)
(x) Boondock Saints
( ) Fight Club
(x) Starsky and Hutch
( ) Neverending Story
( ) Blazing Saddles
( ) Airplane
Total: 5
(x) The Princess Bride
(x) Anchorman (one of the few things ill watch with will farel in again)
(x) Napoleon Dynamite ( i grew up in idaho people dont know how true that movie is)
(x) Labyrinth
( ) Saw
( ) Saw II
(x) White Noise
( ) White Oleander
(x) Anger Management
(x) 50 First Dates
(x) The Princess Diaries
(x) The Princess Diaries 2: Royal Engagement
Total so far: 15 ... this dose not bod well for me
(x) Scream
( ) Scream 2
( ) Scream 3
(x) Scary Movie
(x) Scary Movie 2
(x) Scary Movie 3
(x) Scary Movie 4
(x) American Pie
(x) American Pie 2
(x) American Wedding
( ) American Pie Band Camp
Total so far: 23
(x) Harry Potter 1
(x) Harry Potter 2
(x) Harry Potter 3
(x) Harry Potter 4
( ) Resident Evil 1
(x) Resident Evil 2
(x) The Wedding Singer
(x) Little Black Book
(x) The Village
(x) Lilo & Stitch
Total so far: 32 TT_TT
(x) Finding Nemo
(x) Finding Neverland
(x) Signs
(x) The Grinch
( ) Texas Chainsaw Massacre
( ) Texas Chainsaw Massacre: The Beginning
( ) White Chicks
( ) Butterfly Effect
(x) 13 Going on 30
(x) I, Robot
(x) Robots
Total so far: 39
(x) Dodgeball: A True Underdog Story
( ) Universal Soldier
(x) Lemony Snicket: A Series Of Unfortunate Events
(x) Along Came Polly
(x) Deep Impact
( ) King Pin
( ) Never Been Kissed
(x) Meet The Parents
(x) Meet the Fockers
(x) Eight Crazy Nights
(x) Joe Dirt
(x) KING KONG
Total so far: 48
(x) A Cinderella Story
( ) The Terminal
( ) The Lizzie McGuire Movie
( ) Passport to Paris
(x) Dumb & Dumber
(x) Dumber & Dumberer
(x) Final Destination
( ) Final Destination 2
( ) Final Destination 3
( ) Halloween
(x) The Ring
( ) The Ring 2
( ) Surviving X-MAS
(x) Flubber
Total so far: 54
( ) Harold & Kumar Go To White Castle
( ) Practical Magic
(x) Chicago
(x) Ghost Ship
( ) From Hell
(x) Hellboy
( ) Secret Window
( ) I Am Sam
( ) The Whole Nine Yards
(x) The Whole Ten Yards
Total so far: 58
(x) The Day After Tomorrow
( ) Child's Play
( ) Seed of Chucky
( ) Bride of Chucky
(x) Ten Things I Hate About You
(x) Just Married
( ) Gothika
( ) Nightmare on Elm Street
( ) Sixteen Candles
(x) Remember the Titans
( ) Coach Carter
(x) The Grudge
( ) The Grudge 2
(x) The Mask
( ) Son Of The Mask
Total so far: 64
(x) Bad Boys
( ) Bad Boys 2
(x) Joy Ride
( ) Lucky Number Slevin
(x) Ocean's Eleven
(x) Ocean's Twelve
(x) Bourne Identity
(x) Bourne Supremecy
( ) Lone Star
(x) Bedazzled
(x) Predator I
(x) Predator II
(x) Ice Age
(x) Ice Age 2: The Meltdown
(x) Curious George
Total so far:76
(x) Independence Day
( ) Cujo
( ) A Bronx Tale
( ) Darkness Falls
( ) Christine
(x) ET
(x)Children of the Corn
(x) My Bosses Daughter
(x) Maid in Manhattan
(x) War of the Worlds
(x) Rush Hour
(x) Rush Hour 2
Total so far: 84 only one more to go till i have no life.... shit
( ) Best Bet
(x) How to Lose a Guy in 10 Days ( I knew i shouldn't have watched that!)
( ) She's All That
( ) Calendar Girls
( ) Sideways
(x) Mars Attacks
(x) Event Horizon (scared the shit out of me when i was little)
(x) Ever After
(x) Wizard of Oz
(x) Forrest Gump
(x) Big Trouble in Little China
(x) The Terminator
(x) The Terminator 2
( ) The Terminator 3
Total so far: 93
(x) X-Men
(x) X-2
(x) X-3 (LOVED IT!)
(x) Spider-Man
(x) Spider-Man 2
( ) Sky High
(x) Jeepers Creepers
(x) Jeepers Creepers 2
(x) Catch Me If You Can
(x) The Little Mermaid (<--Insert random Disney movie here--> and i have seen it)
(x) Freaky Friday
( ) Reign of Fire
( ) The Skulls
( ) Cruel Intentions
( ) Cruel Intentions 2
( ) The Hot Chick
(x) Shrek
(x) Shrek 2
Total so far: 105
(x) Swimfan
( ) Miracle on 34th street
(x) Old School
( ) The Notebook (I REFUSE TO WATCH IT!)
( ) K-Pax
( ) Krippendorf's Tribe
(x) A Walk to Remember
( ) Ice Castles
( ) Boogeyman
( ) The 40-year-old Virgin
Total so far: 108
(x) Lord of the Rings Fellowship of the Ring
(x) Lord of the Rings The Two Towers
(x) Lord of the Rings Return Of the King
(x) Indiana Jones and the Raiders of the Lost Ark
(x) Indiana Jones and the Temple of Doom
(x) Indiana Jones and the Last Crusade
Total so far: 114
( ) Baseketball
( ) Hostel
( ) Waiting for Guffman
( ) House of 1000 Corpses
( ) Devils Rejects
(x) Elf
( ) Highlander
(x) Mothman Prophecies
( ) American History X
( ) Three
Total so Far: 116
( ) The Jacket
( ) Kung Fu Hustle
( ) Shaolin Soccer
( ) Night Watch
(x) Monsters Inc.
(x) Titanic
(x) Monty Python and the Holy Grail ( you have not lived till you seen this)
( ) Shaun Of the Dead
( ) Willard
Total so far: 119
( ) High Tension
( ) Club Dread
(x) Hulk (the new one the old one looked like crap)
(x) Dawn Of the Dead
(x) Hook ( Robin williams in tights... ya i threw up a little bit but still good movie)
(x) Chronicles Of Narnia: The Lion the Witch and the Wardrobe
( ) 28 days later
( ) Orgazmo
( ) Phantasm
(x) Waterworld
Total so far: 124
( ) Kill Bill vol 1
( ) Kill Bill vol 2
(x) Mortal Kombat (MORTAL KOMBAT!!!!! dandandandandandandan)
( ) Wolf Creek
(x) Kingdom of Heaven
( ) the Hills Have Eyes
( ) I Spit on Your Grave aka the Day of the Woman
( ) The Last House on the Left
( ) Re-Animator
( ) Army of Darkness
Total so far: 128
(x) Star Wars Ep. I The Phantom Menace
(x) Star Wars Ep. II Attack of the Clones
(x) Star Wars Ep. III Revenge of the Sith
(x) Star Wars Ep. IV A New Hope
(x) Star Wars Ep. V The Empire Strikes Back
(x) Star Wars Ep. VI Return of the Jedi
( ) Ewoks Caravan Of Courage
( ) Ewoks The Battle For Endor
Total so far: 134
(x) The Matrix
(x) The Matrix Reloaded
(x) The Matrix Revolutions
( ) Animatrix ( it came with all my matrix movies but i have not watched it)
( ) Evil Dead
( ) Evil Dead 2
(x) Team America: World Police
( ) Red Dragon
(x) Silence of the Lambs
( ) Hannibal
Total so far: 138
Now Add them up and...
Put "I've seen blank out of 239 films" in the subject line and repost i
Cadavers
Posted 16 years agoIf any of you know me... and i know that like what... 2 of you maybe lol.
I LOVE work on Cadavers. cutting into them pulling things out studying them some say this is a problem but i would like to think my craving's are those that helped move medical knowledge forward. but back to what i was thinking. If you want to understand why we draw things the way we do to make them look right, okay my art is not the best example, BUT take an anatomy class you'll expand you knowledge of the body and the structure of the muscel system, after all you skin them.
AND ITS SUPER FUN!
I LOVE work on Cadavers. cutting into them pulling things out studying them some say this is a problem but i would like to think my craving's are those that helped move medical knowledge forward. but back to what i was thinking. If you want to understand why we draw things the way we do to make them look right, okay my art is not the best example, BUT take an anatomy class you'll expand you knowledge of the body and the structure of the muscel system, after all you skin them.
AND ITS SUPER FUN!
100 things
Posted 16 years agoburing time before anatomy at the school.
web site is going well playing with the css its being annoying.
still looking for a web master!
i dont like this because shows you how little you have done
1. Started my own blog: nope but i have a few art sites :D
2. Slept under the stars: yup it was cold... and wet
3. Played in a band: in jr high school
4. Visited Hawaii: nope buti want to ALOT
5. Watched a meteor shower? i wanted to but its was coldly i was pissed
6. Given more than I can afford to charity? i give my change to the poeple with the bells at stores or in the box things
7. Been to Disneyland/world: nope
8. Climbed a mountain:yes many its AWESOME! :D
9. Held a praying mantis: yup there cool!
10. Sung a solo. o god no!
11. Bungee jumped: no... wip lash seem like a bad thing maybe one day though
12. Visited Paris: one day
13. Watched lightning at sea: nope
14. Taught myself an art from scratch: drawing!
15. Adopted a child: nope
16. Had food poisoning: gahhhh yes! i was the living fountain of puke
17. Walked to the top of the Statue of Liberty: nope
18. Grown my own vegetables:dose moms count?
19. Seen the Mona Lisa in France: no
20. Slept on an overnight train: no
21. Had a pillow fight: like when i was little
22. Hitchhiked: yup
23. Taken a sick day when you’re not ill: from high school lol
24. Built a snow fort: YES! omg i have done something!
25. Held a lamb: ya its not to good its kinda bla
26. Gone skinny dipping? i hate being naked
27. Run a Marathon: one day!
28. Ridden in a gondola in Venice: no
29. Seen a total eclipse: nope
30. Watched a sunrise or sunset:yup there fun!
31. Hit a home run: i could not hit a ball off the T
32. Been on a cruise: i wish!
33. Seen Niagara Falls in person: no
34. Visited the birthplace of my ancestors: nope
35. Seen an Amish community: no but that would be way cool!
36. Taught myself a new language: i know very little swahili!
37. Had enough money to be truly satisfied: just depends what i need that day
38. Seen the Leaning Tower of Pisa in person: no
39. Gone rock climbing: LOVE IT!
40. Seen Michelangelo’s David: no
41. Sung karaoke:no
42. Seen Old Faithful geyser erupt: i think i did
43. Bought a stranger a meal at a restaurant: i think i did at Mc Donalds before
44. Visited Africa: OMFG I WANT TO!
45. Walked on a beach by moonlight: no
46. Been transported in an ambulance: yes... broke arm was not a fan lol
47. Had my portrait painted: nope
48. Gone deep sea fishing: no
49. Seen the Sistine Chapel in person: no
50. Been to the top of the Eiffel Tower in Paris: no
51. Gone scuba diving or snorkeling: no
52. Kissed in the rain: i am not sure
53. Played in the mud: long ago and it was fun!
54. Gone to a drive-in theater: yes! saw the matrix 2
55. Been in a movie: no
56. Visited the Great Wall of China: no
57. Started a business: kinda
58. Taken a martial arts class: yup
59. Visited Russia: no
60. Served at a soup kitchen: no... did turkey
61. Sold Girl Scout Cookies: *looks in pants* nope still a boy
62. Gone whale watching: no
63. Got flowers for no reason: no
64. Donated blood, platelets or plasma: YES! and i get REALLY REALLY hyper after words
65. Gone sky diving: no
66. Visited a Nazi Concentration Camp: nope
67. Bounced a check: no
68. Flown in a helicopter: yup
69. Saved a favorite childhood toy: my blue bear
70. Visited the Lincoln Memorial: no
71. Eaten caviar: on sushi
72. Pieced a quilt: no
73. Stood in Times Square: no
74. Toured the Everglades: no
75. Been fired from a job: yup
76. Seen the Changing of the Guards in London: no
77. Broken a bone: yup my left arm
78. Been on a speeding motorcycle: nope
79. Seen the Grand Canyon in person: no... and i live liek really close to lol
80. Published a book: maybe soon
81. Visited the Vatican: no
82. Bought a brand new car: no
83. Walked in Jerusalem: no
84. Had my picture in the newspaper: did once for when i broke my arm
85. Read the entire Bible: no
86. Visited the White House: no
87. Killed and prepared an animal for eating: no
88. Had chickenpox: no
89. Saved someone’s life: pulled ym sister out of a frozen canal once dont know if i saved her
90. Sat on a jury: no
91. Met someone famous: people in high school musical
92. Joined a book club: no
93. Lost a loved one: yup
94. Had a baby: no
95. Seen the Alamo in person: no
96. Swam in the Great Salt Lake: i think so
97. Been involved in a law suit: *eye twitch* SCREW MOPEDS
98. Owned a cell phone: yup
99. Been stung by a bee: many time
100. Ridden an elephant:no.
web site is going well playing with the css its being annoying.
still looking for a web master!
i dont like this because shows you how little you have done
1. Started my own blog: nope but i have a few art sites :D
2. Slept under the stars: yup it was cold... and wet
3. Played in a band: in jr high school
4. Visited Hawaii: nope buti want to ALOT
5. Watched a meteor shower? i wanted to but its was coldly i was pissed
6. Given more than I can afford to charity? i give my change to the poeple with the bells at stores or in the box things
7. Been to Disneyland/world: nope
8. Climbed a mountain:yes many its AWESOME! :D
9. Held a praying mantis: yup there cool!
10. Sung a solo. o god no!
11. Bungee jumped: no... wip lash seem like a bad thing maybe one day though
12. Visited Paris: one day
13. Watched lightning at sea: nope
14. Taught myself an art from scratch: drawing!
15. Adopted a child: nope
16. Had food poisoning: gahhhh yes! i was the living fountain of puke
17. Walked to the top of the Statue of Liberty: nope
18. Grown my own vegetables:dose moms count?
19. Seen the Mona Lisa in France: no
20. Slept on an overnight train: no
21. Had a pillow fight: like when i was little
22. Hitchhiked: yup
23. Taken a sick day when you’re not ill: from high school lol
24. Built a snow fort: YES! omg i have done something!
25. Held a lamb: ya its not to good its kinda bla
26. Gone skinny dipping? i hate being naked
27. Run a Marathon: one day!
28. Ridden in a gondola in Venice: no
29. Seen a total eclipse: nope
30. Watched a sunrise or sunset:yup there fun!
31. Hit a home run: i could not hit a ball off the T
32. Been on a cruise: i wish!
33. Seen Niagara Falls in person: no
34. Visited the birthplace of my ancestors: nope
35. Seen an Amish community: no but that would be way cool!
36. Taught myself a new language: i know very little swahili!
37. Had enough money to be truly satisfied: just depends what i need that day
38. Seen the Leaning Tower of Pisa in person: no
39. Gone rock climbing: LOVE IT!
40. Seen Michelangelo’s David: no
41. Sung karaoke:no
42. Seen Old Faithful geyser erupt: i think i did
43. Bought a stranger a meal at a restaurant: i think i did at Mc Donalds before
44. Visited Africa: OMFG I WANT TO!
45. Walked on a beach by moonlight: no
46. Been transported in an ambulance: yes... broke arm was not a fan lol
47. Had my portrait painted: nope
48. Gone deep sea fishing: no
49. Seen the Sistine Chapel in person: no
50. Been to the top of the Eiffel Tower in Paris: no
51. Gone scuba diving or snorkeling: no
52. Kissed in the rain: i am not sure
53. Played in the mud: long ago and it was fun!
54. Gone to a drive-in theater: yes! saw the matrix 2
55. Been in a movie: no
56. Visited the Great Wall of China: no
57. Started a business: kinda
58. Taken a martial arts class: yup
59. Visited Russia: no
60. Served at a soup kitchen: no... did turkey
61. Sold Girl Scout Cookies: *looks in pants* nope still a boy
62. Gone whale watching: no
63. Got flowers for no reason: no
64. Donated blood, platelets or plasma: YES! and i get REALLY REALLY hyper after words
65. Gone sky diving: no
66. Visited a Nazi Concentration Camp: nope
67. Bounced a check: no
68. Flown in a helicopter: yup
69. Saved a favorite childhood toy: my blue bear
70. Visited the Lincoln Memorial: no
71. Eaten caviar: on sushi
72. Pieced a quilt: no
73. Stood in Times Square: no
74. Toured the Everglades: no
75. Been fired from a job: yup
76. Seen the Changing of the Guards in London: no
77. Broken a bone: yup my left arm
78. Been on a speeding motorcycle: nope
79. Seen the Grand Canyon in person: no... and i live liek really close to lol
80. Published a book: maybe soon
81. Visited the Vatican: no
82. Bought a brand new car: no
83. Walked in Jerusalem: no
84. Had my picture in the newspaper: did once for when i broke my arm
85. Read the entire Bible: no
86. Visited the White House: no
87. Killed and prepared an animal for eating: no
88. Had chickenpox: no
89. Saved someone’s life: pulled ym sister out of a frozen canal once dont know if i saved her
90. Sat on a jury: no
91. Met someone famous: people in high school musical
92. Joined a book club: no
93. Lost a loved one: yup
94. Had a baby: no
95. Seen the Alamo in person: no
96. Swam in the Great Salt Lake: i think so
97. Been involved in a law suit: *eye twitch* SCREW MOPEDS
98. Owned a cell phone: yup
99. Been stung by a bee: many time
100. Ridden an elephant:no.
ARHG!!!!! technolgy you jack ass!
Posted 16 years agookay it should be no secret that i a am working on a website for web comics right now!
yes its true
i am currently in need of :
Web developer
Creative writer
inker and colorer
seeing how i only have one person currently inserted in filling a stop i have been trying to get my inking and color skills better. it has been going well its not to hard! buuuut my wacom keeps uninstall the soft ware and i want to stab it! any suggestions would help me greatly!
Also if you or anyone else you know is interested in filling the above positions please let me know!
yes its true
i am currently in need of :
Web developer
Creative writer
inker and colorer
seeing how i only have one person currently inserted in filling a stop i have been trying to get my inking and color skills better. it has been going well its not to hard! buuuut my wacom keeps uninstall the soft ware and i want to stab it! any suggestions would help me greatly!
Also if you or anyone else you know is interested in filling the above positions please let me know!
ABout meme
Posted 16 years agoTELL ME ABOUT YOURSELF - The Survey
thanks andy i am stealing this again lol. 2 hours break in classes= i r bored.
Name: Joe (Joseph F. Rozek IV)
Birthday: 1/29/88
Birthplace: West Palm Beach, FL
Current Location: Udvar hazzy graphics lab, dixie stage college, st. george ut
Eye Color: they change colors... and i cant see them so eat it
Hair Color: Brown
Height: 5'11''
Right Handed or Left Handed: right
Your Heritage: 1/2 polish, 1/4 irish, 1/4 english
The Shoes You Wore Today: brown dickies
Your Weakness: food, cell phones, WoW,
Your Fears: spiders and crabs
Your Perfect Pizza: LOTS OF SAUSAGE, cheese, extra sause, cream cheese bake under it all.
Goal You Would Like To Achieve This Year: pass anatomy and med term.
Your Most Overused Phrase On an instant messenger: LOL
Thoughts First Waking Up: week days: must stretch! week ends: DIE EMO DIE!!!! *throws alram clock* why dose god hate me!
Your Best Physical Feature: umm umm umm... hiar?
Your Bedtime: when i feel like it.... 9 on the week ends
Your Most Missed Memory: tim TT_TT
Pepsi or Coke: i dont drink soda
MacDonalds or Burger King: MACFATTY PANTS!
Single or Group Dates: what ever
Lipton Ice Tea or Nestea: tea!?!?! BLAAAAA
Chocolate or Vanilla: Vanilla
Cappuccino or Coffee: none taset liek butt!
Do you Smoke: cant i would die
Do you Swear: Fuck yes!
Do you Sing: onyl in the car
Have you Been in Love: i am in love :D
Do you want to go to College: in it.... am tired of it
Do you want to get Married: one day
Do you belive in yourself: on the out side WAAAAAAAAAAAAAAAAAY to much on the inside theres alot of dout
Do you get Motion Sickness: nope
Do you think you are Attractive:nope i see my self waaaay to much
Are you a Health Freak: working on it
Do you get along with your Parents: .... not currently
Do you like Thunderstorms: OMFG YES!
Do you play an Instrument: 3 VERY VERY poorly
In the past month have you Drank Alcohol: once yes lol stupid wisky tea shit! helped me sleep though
In the past month have you Smoked: nope
In the past month have you been on Drugs: nope
In the past month have you gone on a Date: yes ^^ I LURVE YOU TIM!
In the past month have you gone to a Mall: tim took me shopping
In the Last month have you eaten a box of Oreos: nope
In the past month have you eaten Sushi: YES!
In the past month have you been on Stage: nope
In the past month have you been Dumped: nope
In the past month have you gone Skinny Dipping: umm no ew i HATE being naked
In the past month have you Stolen Anything: yes the blankets :D
Ever been Drunk: nope
Ever been called a Tease: i don thinkg so
Ever been Beaten up: haha hell no BRING IT!!!
Ever Shoplifted: nope
How do you want to Die: i dont how about that
What do you want to be when you Grow Up: sexy!!!.... Doctor!
What country would you most like to Visit: SO MANY
in a boy or girl
Favorite Eye Color: dont care
Favorite Hair Color: dont care
Short or Long Hair: dont care
Height: dont care... but please no midgets
Weight: dont care
Best Clothing Style: umm the one i wear? i have no idea. i dont even buy my own cloths
Number of Drugs I have taken: 0... unless morphine in the hospital counts OMG that stuff is cool!
Number of CDs I own: liiiiike 30?
Number of Piercings: 0 if i was ment to have multiple holes in my body i would have a vagina
Number of Tattoos: 0
Number of things in my Past I Regret: none you cant change it way bother
EVIL CHIP MONK OMG!!!!!
Posted 16 years agohttp://www.youtube.com/watch?v=7N9V.....dzipw&NR=1 if you do not laugh at the evil sounding chip monks of this song your a commie! lol i so have a art idea from this song!
Deblucking
Posted 16 years agoIf the admins see the debluking pic as bad content plz let me knwo ill take it down. it a very educational pic and seeing how we see MANY MANY other organs every day. if any furs find i offensive plz let me know you worrys as well thanks!
pick meme
Posted 16 years agoBe recognized for saving 500 people's lives or be voted the no.1 sexiest person in your country?
i would go with sexy and sell my pants on ebay and donate that money to save the peoeple
Have an alarm clock that wakes you by slowly making your bed ice cold or an alarm clock that wakes you by shaking your bed violently?
o fuck yes the shaking! then i wouldnt feel so bad then i beat the shit out of it in the morning.
Run into a wall or fall down the stairs?
inot the wall.... done both already
Be a pirate or be a ninja?
pirate! THEY DO WHAT EVER THEY WANT gogog CANNONS HAHAHAHAHA!
Be the no. 1 entertainer for 4 years or be president of the U.S.
prez.... then i could bitch slap people who said i couldnt be bail out.... stupid gov.
Walk on the ocean floor or jump to the moon with moonboots?
ocean!!! because then all life would fear me!!!... even under the sea >:D
Be a superhero or be a super villan?
what ones get to do what ever they want and dose not live by an overly strick standers of perfection?
Be really creative or be really intelligent?
can i get a twist?
Be able to fly or be able to turn invisible?
fly! i would fly by and kick peopel in the head who were driving moped's... THOSES ARNT COOL YOU LOOK LIKE A MENTAL HANDICAPED PERSON!!!
Be super famous on YouTube or win 1 thousand dollars?
give me the money
Have cookies and milk or juice and crackers?
JUICE!!!
Go without watching TV for 2 weeks or without a computer for 2 weeks?
TV
Have a million friends that secretly hate you or have 1 best friend?
1
Live in hot weather for the rest of your life or cold weather for the rest of your life?
Hot can always go where its colder for partys :D
Take over the Playboy Mansion when Hugh Heffner dies or Win the Lottery?
lottery.... i would sooooo get a flat screen in the bath room!
Be a good singer or be a good dancer?
hmm dancer i think because good singers still suck its the great ones that peopel like
Be a famous singer or be a famous actor/actress?
actor! then i could get out of more trouble!
Sleep with a celebrity of your choice or not have to work for 5 years?
not work!!!!! finish ollege with not having to work yes plz!
Win 5 million dollars or find true love?
well seeing as how i have my love ill go with money... what? having two true loves would lead to bad things
Live in a house on the water or live in a castle?
I.... WANT.... CASTLE!!!!!!!!!
Be Jonny Depp's girlfriend or have Jonny Depp's salary?
MONEY!!!!*nom nom nom nom nom*
Be the same age forever or live to 100?
i wouldnt mind being 20 forever.
Become famous for having a meltdown on YouTube or never become famous?
NEVER!!!
Have lived in the 8th century or be born in the year 3000? (If the world still exists then)
3000 because i dont want the plague no thanks
Be a mad scientist or a private invertigator?
carzy peoepl are more fun!
Have rain for a year non-stop or have nothing but suns for a year non-stop?
I LOVE RAIN!!! liek no one has any idea!
Kill your own meal (meat) or become a vegetarian?
DIE DIE DIE DIE DIE!!!!!
Get stuck in an elevator for 34 hours or gain 15 pounds?
34 hours! think i could work out draw and push all the buttons with out getting yelled at.
Be too hot with all your clothes off or too cold with a winter coat on?
i dont like being naked not at all
Be allergic to your favorite food or never find true love?
I HAVE ME LOVE WHAT DONT YOU GET!!! lol
Be a dinosaur or be a penguin?
dinosaur! RAWR!
Be trapped in a haunted house alone or alone on a desterted island?
haunted house bcause i would annoy the fuck out of the ghosts!
Have love but no money or have money but no love?
HAS LOVE!!!
Do Elmo workout videos or be obese?
GOGOG ELMO!!!
Live in Paris as a bum for a year or live in Kansas and be rich?
OMG thats a hard one.. welll i am already king of the hobos so bring Kansas let see what kinda chaos i can start with money!
Get hit by a car going 8 miles per hour or fall down 2 flights of steps?
8miles plz! i can sue there asses off if i was in cali!
Give up alcohol or give up your favorite food?
alcohol! have not drank anhitng but that nasty ass wisky thing yet
Skip Christmas for a year or skip your birthday for a year?
christmas!!!!!!!! DAY OF FIRE IS MINE!!!!!
Own a MAC or own a PC?
pc plz
Never use MySpace again or never use Facebook again?
face boook
Only eat chicken for the rest of your life or only eat beef for the rest of your life?
i dont liek chicken to much like not at all! but its good for body building.... if only i would stick to that diet haha
Date the wrong people until you meet the right one or stay single til you meet the right one?
date more find what you liek so you know it when you see it!
Have muscular abs or have muscular arms?
give me the abbs!!!!!
Go to federal prison for 3 months or go through 4 years of high school all over again?
high school! i miss me friends!
Have a bird that curses or a dog that humps things?
OMFG GIVE ME THAT BIRD!
Be rich and lose it all or never become rich?
cant you jsut be hapy?
i would go with sexy and sell my pants on ebay and donate that money to save the peoeple
Have an alarm clock that wakes you by slowly making your bed ice cold or an alarm clock that wakes you by shaking your bed violently?
o fuck yes the shaking! then i wouldnt feel so bad then i beat the shit out of it in the morning.
Run into a wall or fall down the stairs?
inot the wall.... done both already
Be a pirate or be a ninja?
pirate! THEY DO WHAT EVER THEY WANT gogog CANNONS HAHAHAHAHA!
Be the no. 1 entertainer for 4 years or be president of the U.S.
prez.... then i could bitch slap people who said i couldnt be bail out.... stupid gov.
Walk on the ocean floor or jump to the moon with moonboots?
ocean!!! because then all life would fear me!!!... even under the sea >:D
Be a superhero or be a super villan?
what ones get to do what ever they want and dose not live by an overly strick standers of perfection?
Be really creative or be really intelligent?
can i get a twist?
Be able to fly or be able to turn invisible?
fly! i would fly by and kick peopel in the head who were driving moped's... THOSES ARNT COOL YOU LOOK LIKE A MENTAL HANDICAPED PERSON!!!
Be super famous on YouTube or win 1 thousand dollars?
give me the money
Have cookies and milk or juice and crackers?
JUICE!!!
Go without watching TV for 2 weeks or without a computer for 2 weeks?
TV
Have a million friends that secretly hate you or have 1 best friend?
1
Live in hot weather for the rest of your life or cold weather for the rest of your life?
Hot can always go where its colder for partys :D
Take over the Playboy Mansion when Hugh Heffner dies or Win the Lottery?
lottery.... i would sooooo get a flat screen in the bath room!
Be a good singer or be a good dancer?
hmm dancer i think because good singers still suck its the great ones that peopel like
Be a famous singer or be a famous actor/actress?
actor! then i could get out of more trouble!
Sleep with a celebrity of your choice or not have to work for 5 years?
not work!!!!! finish ollege with not having to work yes plz!
Win 5 million dollars or find true love?
well seeing as how i have my love ill go with money... what? having two true loves would lead to bad things
Live in a house on the water or live in a castle?
I.... WANT.... CASTLE!!!!!!!!!
Be Jonny Depp's girlfriend or have Jonny Depp's salary?
MONEY!!!!*nom nom nom nom nom*
Be the same age forever or live to 100?
i wouldnt mind being 20 forever.
Become famous for having a meltdown on YouTube or never become famous?
NEVER!!!
Have lived in the 8th century or be born in the year 3000? (If the world still exists then)
3000 because i dont want the plague no thanks
Be a mad scientist or a private invertigator?
carzy peoepl are more fun!
Have rain for a year non-stop or have nothing but suns for a year non-stop?
I LOVE RAIN!!! liek no one has any idea!
Kill your own meal (meat) or become a vegetarian?
DIE DIE DIE DIE DIE!!!!!
Get stuck in an elevator for 34 hours or gain 15 pounds?
34 hours! think i could work out draw and push all the buttons with out getting yelled at.
Be too hot with all your clothes off or too cold with a winter coat on?
i dont like being naked not at all
Be allergic to your favorite food or never find true love?
I HAVE ME LOVE WHAT DONT YOU GET!!! lol
Be a dinosaur or be a penguin?
dinosaur! RAWR!
Be trapped in a haunted house alone or alone on a desterted island?
haunted house bcause i would annoy the fuck out of the ghosts!
Have love but no money or have money but no love?
HAS LOVE!!!
Do Elmo workout videos or be obese?
GOGOG ELMO!!!
Live in Paris as a bum for a year or live in Kansas and be rich?
OMG thats a hard one.. welll i am already king of the hobos so bring Kansas let see what kinda chaos i can start with money!
Get hit by a car going 8 miles per hour or fall down 2 flights of steps?
8miles plz! i can sue there asses off if i was in cali!
Give up alcohol or give up your favorite food?
alcohol! have not drank anhitng but that nasty ass wisky thing yet
Skip Christmas for a year or skip your birthday for a year?
christmas!!!!!!!! DAY OF FIRE IS MINE!!!!!
Own a MAC or own a PC?
pc plz
Never use MySpace again or never use Facebook again?
face boook
Only eat chicken for the rest of your life or only eat beef for the rest of your life?
i dont liek chicken to much like not at all! but its good for body building.... if only i would stick to that diet haha
Date the wrong people until you meet the right one or stay single til you meet the right one?
date more find what you liek so you know it when you see it!
Have muscular abs or have muscular arms?
give me the abbs!!!!!
Go to federal prison for 3 months or go through 4 years of high school all over again?
high school! i miss me friends!
Have a bird that curses or a dog that humps things?
OMFG GIVE ME THAT BIRD!
Be rich and lose it all or never become rich?
cant you jsut be hapy?
Twitter. seems all the cool kids are doing it YA GRAVY TRAIN
Posted 16 years agohttp://twitter.com/joerozek
http://twitter.com/joerozek
http://twitter.com/joerozek
http://twitter.com/joerozek
seems to be a pop thing to do right now lol. i been doign it for a bit see, the 300 updates on there lol.
update all freaking day on my cell if you get confussed with some things i say follow everyone i am there liek 3 people all roomies of mine
if you dont have a twitter.... GET ONE!
http://twitter.com/joerozek
http://twitter.com/joerozek
http://twitter.com/joerozek
seems to be a pop thing to do right now lol. i been doign it for a bit see, the 300 updates on there lol.
update all freaking day on my cell if you get confussed with some things i say follow everyone i am there liek 3 people all roomies of mine
if you dont have a twitter.... GET ONE!
Joe Approved Cookie Awards!!!!
Posted 17 years agoThaaaaats RIGHT! the web award knwo as the Joe approved Cookie award is coming! i try to do it at the new year! it goes to anyone who has done epic idea for art (skill means NOTHING!!! but helps) or done something that makes them a cool person! only Doing 10 web ones this year. So if you think someone deserves one tell me and y. what makes them or what they did epic!