Author Topic: My younger brother was in a freak accident this evening.  (Read 6879 times)

alexxx

  • Getbig V
  • *****
  • Posts: 10129
  • Don't hate..
Re: My younger brother was in a freak accident this evening.
« Reply #25 on: November 12, 2006, 04:38:00 PM »
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?
just push some weight!

Irongrip400

  • Getbig V
  • *****
  • Posts: 22364
  • Pan Germanism, Pax Britannica
Re: My younger brother was in a freak accident this evening.
« Reply #26 on: November 12, 2006, 04:41:26 PM »
jumpstart you are a tool, no one here is your friend

jumpstart

  • Getbig V
  • *****
  • Posts: 6798
  • Getbig!
Re: My younger brother was in a freak accident this evening.
« Reply #27 on: November 12, 2006, 04:43:26 PM »
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?

Army of One

  • Getbig V
  • *****
  • Posts: 30388
Re: My younger brother was in a freak accident this evening.
« Reply #28 on: November 12, 2006, 04:51:03 PM »
NO ONE CARES  GO WRITE A BLOG K THX BYE

jumpstart

  • Getbig V
  • *****
  • Posts: 6798
  • Getbig!
Re: My younger brother was in a freak accident this evening.
« Reply #29 on: November 12, 2006, 04:52:25 PM »
NO ONE CARES  GO WRITE A BLOG K THX BYE
man if you was in my face i'd hit it HARD! >:(

Hulkster

  • Getbig V
  • *****
  • Posts: 22972
  • ND ran away from me
Re: My younger brother was in a freak accident this evening.
« Reply #30 on: November 12, 2006, 04:56:16 PM »
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)
Flower Boy Ran Away

Miss Karen

  • Time Out
  • Getbig IV
  • *
  • Posts: 1261
Re: My younger brother was in a freak accident this evening.
« Reply #31 on: November 12, 2006, 04:58:45 PM »
My choice of weapon model 29 Smith and Wesson 44 mag now that hits hard.

jumpstart

  • Getbig V
  • *****
  • Posts: 6798
  • Getbig!
Re: My younger brother was in a freak accident this evening.
« Reply #32 on: November 12, 2006, 05:16:50 PM »
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!

TheAnimal

  • Getbig IV
  • ****
  • Posts: 2015
Re: My younger brother was in a freak accident this evening.
« Reply #33 on: November 12, 2006, 05:17:32 PM »
My choice of weapon model 29 Smith and Wesson 44 mag now that hits hard.

Debussey

  • Getbig IV
  • ****
  • Posts: 2707
  • The shadow braggs about hitting women
Support DEBUSSEYWORLD!

Mark Foley

  • Getbig I
  • *
  • Posts: 13
  • Do I make you horny?
Re: My younger brother was in a freak accident this evening.
« Reply #35 on: November 12, 2006, 05:27:33 PM »
jumpstart, tell us about the time you accidentally tripped and fell and landed on a young shirtless teenage boy.


Actually, that was me.  :-[

jumpstart

  • Getbig V
  • *****
  • Posts: 6798
  • Getbig!
Re: My younger brother was in a freak accident this evening.
« Reply #36 on: November 12, 2006, 05:28:41 PM »

Actually, that was me.  :-[
hopefully no one was injured.

jumpstart

  • Getbig V
  • *****
  • Posts: 6798
  • Getbig!
Re: My younger brother was in a freak accident this evening.
« Reply #37 on: November 12, 2006, 05:33:15 PM »
he just arrived home. he look's hurt but the injuries seems minor.

figgs

  • Getbig IV
  • ****
  • Posts: 3925
  • from realization to infinity
Re: My younger brother was in a freak accident this evening.
« Reply #38 on: November 12, 2006, 05:36:06 PM »
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!!
~

Alex23

  • Guest
Re: My younger brother was in a freak accident this evening.
« Reply #39 on: November 12, 2006, 05:38:23 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.

Take pictures.

jumpstart

  • Getbig V
  • *****
  • Posts: 6798
  • Getbig!
Re: My younger brother was in a freak accident this evening.
« Reply #40 on: November 12, 2006, 05:40:44 PM »
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.

Alex23

  • Guest
Re: My younger brother was in a freak accident this evening.
« Reply #41 on: November 12, 2006, 05:41:12 PM »


 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;
            }
        }

xpac2

  • Getbig IV
  • ****
  • Posts: 1242
  • Getbig!
Re: My younger brother was in a freak accident this evening.
« Reply #42 on: November 12, 2006, 05:42:07 PM »
Monster bringing your real life onto a message board thinking people care about you.

Epic need for real friends

RUDE BUOY

  • Getbig V
  • *****
  • Posts: 6227
  • The Franchise
Re: My younger brother was in a freak accident this evening.
« Reply #43 on: November 12, 2006, 05:43:01 PM »
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

jumpstart

  • Getbig V
  • *****
  • Posts: 6798
  • Getbig!
Re: My younger brother was in a freak accident this evening.
« Reply #44 on: November 12, 2006, 05:45:40 PM »
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.

Jr. Yates

  • Getbig V
  • *****
  • Posts: 4646
Re: My younger brother was in a freak accident this evening.
« Reply #45 on: November 12, 2006, 07:56:48 PM »
hope your brother is alright jumpstart.
bodybuildersreality.com

Hunter86

  • Getbig III
  • ***
  • Posts: 844
Re: My younger brother was in a freak accident this evening.
« Reply #46 on: November 12, 2006, 08:03:04 PM »
in your pic your brother looks like he's 26 not 16

Miss Karen

  • Time Out
  • Getbig IV
  • *
  • Posts: 1261
Re: My younger brother was in a freak accident this evening.
« Reply #47 on: November 12, 2006, 08:03:28 PM »
Thank God he is OK.We all prayed for him.Our prayers were answered.Amen.

Theoak*

  • Getbig IV
  • ****
  • Posts: 1436
Re: My younger brother was in a freak accident this evening.
« Reply #48 on: November 12, 2006, 09:02:33 PM »
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.

Army of One

  • Getbig V
  • *****
  • Posts: 30388
Re: My younger brother was in a freak accident this evening.
« Reply #49 on: November 12, 2006, 09:04:36 PM »
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.