Prosecutor: O.J. Simpson violated terms of bail
(http://img218.imageshack.us/img218/9675/ojartkp7.jpg)
LAS VEGAS, Nevada (CNN) -- O.J. Simpson was taken into custody in Miami, Florida, on allegations that he violated terms of his bail by trying to talk a co-defendant out of cooperating in a Las Vegas armed robbery case, court documents say.
Simpson, 60, was reportedly on board a flight to Las Vegas, Nevada, on Friday.
He is to go before a Las Vegas judge on Wednesday at the request of Clark County District Attorney David Roger.
The prosecutor filed a motion Friday asking to revoke Simpson's $125,000 bail.
Court documents obtained by CNN say Simpson allegedly tried to reach co-defendant Clarence Stewart though his bail bondsman. That was a violation of the terms of his release, according to a transcript of his bail hearing attached to the legal papers.
Authorities say they have a copy of a voicemail Simpson left for Stewart, the court documents say. Simpson is quoted as saying:
"I just want, want C.J. to know that the whole thing all the time he was tellin' me that (bleep), ya know. I hope he was telling me the truth. Don't be trying to change the mother (bleeping) (bleep) now, mother (bleeping) (bleep) holes. I'm tired of this (bleep). Fed up with the mother (bleepers) changing what they told me."
Stewart is not cooperating with prosecutors.
Simpson was freed on bail September 19 following his arrest on allegations he and several friends burst into a Las Vegas hotel room and robbed two sports memorabilia dealers at gunpoint.
Simpson has pleaded not guilty to 12 criminal counts in connection with what prosecutors contend was an armed robbery.
In November, a judge ordered the former football great and two co-defendants to stand trial.
The counts include conspiracy, kidnapping, robbery, burglary, coercion and assault with a deadly weapon.
Prosecutors allege Simpson and five other men burst into a room at the Palace Station Hotel, held two memorabilia dealers -- Alfred Beardsley and Bruce Fromong -- against their will and flashed at least one gun while removing items.
Simpson said he was merely taking back items that belonged to him, but one of the two alleged victims described it as a "military-style invasion."
Three other men initially charged along with Simpson in the incident -- Walter Alexander, Charles Cashmore and Michael McClinton -- testified against him during a preliminary hearing under the terms of a plea agreement with prosecutors.
http://www.cnn.com/2008/CRIME/01/11/simpson.bail/index.html
THIS GUY NEEDS TO JUST SIT DOWN AND BE QUIET!! ::)
or just go to jail.
I swear Killer360 is a bot...
Quote from: rabbit on January 12, 2008, 10:02:21 AM
I swear Killer360 is a bot...
I don't get it... why does everyone think that?
And iago.
I actually suspect that everybody on the Internet that I haven't met in real life is a bot. I figure it's the safer option.
iago.. I've texted you in the past... :P
Bots can text. I even suspect that bots might talk.
You can't make my value pointless, you never defined it!
First, you can't replace the word "is" with "=", that just doesn't make sense. You also can't use "==". "is" generally indicates a property, not equality.
In any case, about the whole topic, who cares? Some guy is being locked up for committing a crime. Big deal!
Quote from: rabbit on January 13, 2008, 12:24:37 AM
You can't make my value pointless, you never defined it!
int* pointless = 0;
pointless = 0x0000; // address, not value
int rabbit = *pointless;
Quote from: Joe[ix86] on January 13, 2008, 09:42:57 AM
Quote from: rabbit on January 13, 2008, 12:24:37 AM
You can't make my value pointless, you never defined it!
int* pointless = 0;
pointless = 0x0000; // address, not value
int rabbit = *pointless;
That doesn't mean anything..
Quote from: rabbit on January 13, 2008, 09:44:05 AM
Quote from: Joe[ix86] on January 13, 2008, 09:42:57 AM
Quote from: rabbit on January 13, 2008, 12:24:37 AM
You can't make my value pointless, you never defined it!
int* pointless = 0;
pointless = 0x0000; // address, not value
int rabbit = *pointless;
That doesn't mean anything..
It means you're 0. In fact, you're 0x0000. That's what people who think they're cool say instead of 0.
Quote from: iago on January 13, 2008, 11:01:43 AM
Quote from: rabbit on January 13, 2008, 09:44:05 AM
Quote from: Joe[ix86] on January 13, 2008, 09:42:57 AM
Quote from: rabbit on January 13, 2008, 12:24:37 AM
You can't make my value pointless, you never defined it!
int* pointless = 0;
pointless = 0x0000; // address, not value
int rabbit = *pointless;
That doesn't mean anything..
It means you're 0. In fact, you're 0x0000. That's what people who think they're cool say instead of 0.
He's a null address!
Quote from: iago on January 13, 2008, 12:27:00 AM
First, you can't replace the word "is" with "=", that just doesn't make sense. You also can't use "==". "is" generally indicates a property, not equality.
In any case, about the whole topic, who cares? Some guy is being locked up for committing a crime. Big deal!
Oh yeah? Well I'm going to say @ you that 4 right now using = is = to using is in Internet slang. lol
Quote from: Joe[ix86] on January 13, 2008, 09:42:57 AM
int* pointless = 0;
pointless = 0x0000; // address, not value
int rabbit = *pointless;
A) Something that is pointless doesn't point anywhere, unlike your pointer, which points to memory address zero.
B) You set pointless twice. It's double-pointed to zero.
C) Rabbit is still undefined, unless there's memory at address zero. A couple of years ago, I worked on an embedded system with a tiny heap and a bugged malloc()/free() system that could return zero without intending to indicate failure.