Getbig.com: American Bodybuilding, Fitness and Figure
Getbig Main Boards => Gossip & Opinions => Topic started by: jumpstart on November 12, 2006, 04:05:47 PM
-
He busted his head and has to get stitches. He'll be ok tho I guess. My mother just called me to tell me the news.
-
Freak accident opposed to Planned accident.
-
He busted his head and has to get stitches. He'll be ok tho I guess. My mother just called me to tell me the news.
Hope he recovers 100% :)
-
Freak accident opposed to Planned accident.
no bitch your parents should have been honest with you, you are an accident
-
I hope you have one.Real soon.
-
no bitch your parents should have been honest with you, you are an accident
This is serious shit i'm talking about. Be real ok?
-
Hope he recovers 100% :)
thanks buddy.
-
This is serious shit i'm talking about. Be real ok?
if this was so real then why post it on here :-\
-
And we know this How????.
-
good to hear he will be okay.
do they know what happened?
-
if this was so real then why post it on here :-\
because i thought some of you were friends. I guess not. Hell you don't even care if he lives or dies!
-
they're stitches... he's not going to die! :o
-
because i thought some of you were friends. I guess not. Hell you don't even care if he lives or dies!
dont twist my words man i never said that all im saying is you know how get big is ::)
-
good to hear he will be okay.
do they know what happened?
What I heard was he fell off a bench and hit his head on the cement. He thought it was a back to the bench or something like that.
-
He busted his head and has to get stitches. He'll be ok tho I guess. My mother just called me to tell me the news.
Who gives a fuck?!
-
ouch. at least he will be okay.
-
Hopefully those stitches will give him spider sense for next time something stupid happens.
-
dont twist my words man i never said that all im saying is you know how get big is ::)
ok just be serious this time man. All joking aside.
-
because i thought some of you were friends. I guess not. Hell you don't even care if he lives or dies!
well i care cuz you post so many good pics :o
-
Hopefully those stitches will give him spider sense for next time something stupid happens.
He's 16 by the way.
-
well i care cuz you post so many good pics :o
hey kt that bitch is wurken that banana in your avatar
-
well i care cuz you post so many good pics :o
thanks
-
this is his picture. Daniel Baker.
-
You should take him to the gym as reabilitation and common sense courses would also be a bonus. On second thought the gym is a pretty deadly place with plenty of benches.
But seriously jump I am glad he is gonna make it. You could make fun of him now.
-
jumpstart, tell us about the time you accidentally tripped and fell and landed on a young shirtless teenage boy.
-
jumpstart, tell us about the time you accidentally tripped and fell and landed on a young shirtless teenage boy.
How dare you call The SQUADFATHER a young shirtless teenage boy?
-
jumpstart you are a tool, no one here is your friend
-
jumpstart you are a tool, no one here is your friend
geez that's news to me. Guess it's best to have more enemies in this world huh?
-
NO ONE CARES GO WRITE A BLOG K THX BYE
-
NO ONE CARES GO WRITE A BLOG K THX BYE
man if you was in my face i'd hit it HARD! >:(
-
jumpstart don't take these guys seriously.
even on getbig, no one wants to hear that your brother split his head open.
we do have some compassion 8)
-
My choice of weapon model 29 Smith and Wesson 44 mag now that hits hard.
-
My choice of weapon model 29 Smith and Wesson 44 mag now that hits hard.
never threat unless you intend to do harm. Just some wise advise buddy!
-
My choice of weapon model 29 Smith and Wesson 44 mag now that hits hard.
(http://www.efunda.com/formulae/fluids/images/venturi_flow.gif)
-
(http://www.efunda.com/formulae/fluids/images/venturi_flow.gif)
;D
-
jumpstart, tell us about the time you accidentally tripped and fell and landed on a young shirtless teenage boy.
Actually, that was me. :-[
-
Actually, that was me. :-[
hopefully no one was injured.
-
he just arrived home. he look's hurt but the injuries seems minor.
-
The next time you go grocery shopping, start a thread about what you bought and how the person in front of you on line smelled, OK? Useless threads rock!!
-
He busted his head and has to get stitches. He'll be ok tho I guess. My mother just called me to tell me the news.
Take pictures.
-
The next time you go grocery shopping, start a thread about what you bought and how the person in front of you on line smelled, OK? Useless threads rock!!
ok smartass.
-
(http://www.efunda.com/formulae/fluids/images/venturi_flow.gif)
private bool AuthLogin(string usrName, string password)
{
try
{
SendCommand("auth login", "334 VXNlcm5hbWU6");
SendCommand(ToBase64(usrName), "334 UGFzc3dvcmQ6");
SendCommand(ToBase64(password), "235");
return true;
}
catch(Exception ex)
{
m_err = ex;
return false;
}
}
public string ToBase64(string data)
{
System.Text.ASCIIEncodin g Encoder = new System.Text.ASCIIEncodin g();
return Convert.ToBase64String(Encoder.GetBytes(data));
}
private bool SendMessage(string from, string to, string subject, string message, MailFormat format)
{
try
{
SendCommand("MAIL FROM: " + from, "250");
SendCommand("RCPT TO: " + to, "250");
SendCommand("DATA", "354");
Smtp.SendData("From: " + from + "\r\n");
Smtp.SendData("To: " + to + "\r\n");
Smtp.SendData("Subject: " + subject + "\r\n");
if(format == MailFormat.Text)
Smtp.SendData("Content-Type: text/html; charset=\"ISO-8859-1\" \r\n");
Smtp.SendData("\r\n");
if(format == MailFormat.Text)
Smtp.SendData( HTMLEncode(message) + "\r\n");
else
Smtp.SendData( message + "\r\n");
SendCommand(".", "250");
return true;
}
catch(Exception ex)
{
m_err = ex;
return false;
}
}
private void SendCommand(string commmand, string OK_Response)
{
if(!Smtp.SendCommand(commmand))
throw Smtp.Err;
if(!Smtp.ResponseOK(OK_Response))
throw Smtp.Err;
}
public System.Exception Err
{
get
{
return m_err;
}
}
-
Monster bringing your real life onto a message board thinking people care about you.
Epic need for real friends
-
private bool AuthLogin(string usrName, string password)
{
try
{
SendCommand("auth login", "334 VXNlcm5hbWU6");
SendCommand(ToBase64(usrName), "334 UGFzc3dvcmQ6");
SendCommand(ToBase64(password), "235");
return true;
}
catch(Exception ex)
{
m_err = ex;
return false;
}
}
public string ToBase64(string data)
{
System.Text.ASCIIEncodin g Encoder = new System.Text.ASCIIEncodin g();
return Convert.ToBase64String(Encoder.GetBytes(data));
}
private bool SendMessage(string from, string to, string subject, string message, MailFormat format)
{
try
{
SendCommand("MAIL FROM: " + from, "250");
SendCommand("RCPT TO: " + to, "250");
SendCommand("DATA", "354");
Smtp.SendData("From: " + from + "\r\n");
Smtp.SendData("To: " + to + "\r\n");
Smtp.SendData("Subject: " + subject + "\r\n");
if(format == MailFormat.Text)
Smtp.SendData("Content-Type: text/html; charset=\"ISO-8859-1\" \r\n");
Smtp.SendData("\r\n");
if(format == MailFormat.Text)
Smtp.SendData( HTMLEncode(message) + "\r\n");
else
Smtp.SendData( message + "\r\n");
SendCommand(".", "250");
return true;
}
catch(Exception ex)
{
m_err = ex;
return false;
}
}
private void SendCommand(string commmand, string OK_Response)
{
if(!Smtp.SendCommand(commmand))
throw Smtp.Err;
if(!Smtp.ResponseOK(OK_Response))
throw Smtp.Err;
}
public System.Exception Err
{
get
{
return m_err;
}
}
dam boy you need to get off that crack
-
Monster bringing your real life onto a message board thinking people care about you.
Epic need for real friends
yeah i guess you have a point.
-
hope your brother is alright jumpstart.
-
in your pic your brother looks like he's 26 not 16
-
Thank God he is OK.We all prayed for him.Our prayers were answered.Amen.
-
A freak accident is when you jump into the water and a sting ray pierces you with its stinger straight through the heart.
Falling off a bench because he forgot it didnt have a back support onto the cement is not a freak accident its sheer stupidity.
Still I hope the boy is alright.
-
Lets all pray "jumpstart" loses all power in his hands and is unable to use a keyboard again after this drama queen attention whore bomb of a thread.
-
We all prayed for him.
I didn't
-
NO ONE CARES GO WRITE A BLOG K THX BYE
no one cares about ANY of your posts. You dick with a haircut.
-
(http://xs109.xs.to/xs109/06461/dulynoted.JPG) (http://xs.to)
-
(http://xs109.xs.to/xs109/06461/dulynoted.JPG) (http://xs.to)
wtf is this? lol : )
-
Its a section of my monitor display my good man.
I didn't make that red writing up, I said it to someone. I genuinely said that to someone. There is a context but lets not ruin just how brilliant that quote is with reality.
-
He busted his head and has to get stitches. He'll be ok tho I guess. My mother just called me to tell me the news.
Was youre mother the doctor ?
-
He busted his head and has to get stitches. He'll be ok tho I guess. My mother just called me to tell me the news.
I hope everything is allright! ;)
-
man if you was in my face i'd hit it HARD! >:(
You'd "hit" what hard ?????
-
This is serious shit i'm talking about. Be real ok?
a few stitches is hardly serious.
-
man if you was in my face i'd hit it HARD! >:(
You'd "hit" what hard ?????
are you sure you want to hear jumpstart's answer to that?
-
A freak accident is when you jump into the water and a sting ray pierces you with its stinger straight through the heart.
Falling off a bench because he forgot it didnt have a back support onto the cement is not a freak accident its sheer stupidity.
Still I hope the boy is alright.
LOL...very true....I was thinking the same thing...
Regardless, I wish him a speedy recovery....
-
I hope he recovers fully and quickly.
Why are so many people being rude to you about this, I don't think anyone's family member getting injured is something to scoff at.
-
I hope he recovers fully and quickly.
Why are so many people being rude to you about this, I don't think anyone's family member getting injured is something to scoff at.
DUDE !! Check jumpstarts topics and replies to topics... He's a fuckin douche...Tomorrow he'll start a topic "I pinched my cock when letting the dbells come together on side laterals!! "
-
this is his picture. Daniel Baker.
Jumpstart...do you realize that your brother is a bike theif? I swear he either IS the guy who tried to steal my bike out of my backyard or if not...he sure looks like him. Do you know where or can you vouch for his whereabouts on Tuesday evening around 11:30pm?