April 16, 2003
Did CNN Turn Up Boos During Michael Moore's Speech?

An open letter from Ellison Horne:

To All:

I'm urgently calling for an investigation of the broadcast by CNN and CNN Headline News's reporting of Michael Moore's acceptance speech last month at the Academy Awards.

CNN and CNN Headline News aired a significantly different audio response to Mr. Moore's speech than was orginally broadcasted on ABC.

It seems that someone has manipulated the audio to give the impression there was constant loud "booing" throughout Moore's speech, when in reality, there was only marginal booing often overridden with cheers and applause.

This needs to be fully investigated.

As you may well know it is not easy to demonstrate how the corporate media influences mass opinion, but here we have a clear and shocking example of unethical behavior through manipulation of a historic event.

Let's help the public to better understand corporate media bias by making CNN and CNN Headline News face the REAL story.

Sincerely,
Ellison Horne

Horne and his friend Lisa Rein have built a web page housing digital clips of both ABC's live audio and CNN's rebroadcast, along with a waveform analysis of both clips. Decide for yourself.

Posted by Darren Wershler-Henry at April 16, 2003 12:32 PM | TrackBack
Comments

But variables get one benefit people do not

Posted by: Juliana on January 18, 2004 07:52 PM

Let's take a moment to reexamine that. What we've done here is create two variables. The first variable is in the Heap, and we're storing data in it. That's the obvious one. But the second variable is a pointer to the first one, and it exists on the Stack. This variable is the one that's really called favoriteNumber, and it's the one we're working with. It is important to remember that there are now two parts to our simple variable, one of which exists in each world. This kind of division is common is C, but omnipresent in Cocoa. When you start making objects, Cocoa makes them all in the Heap because the Stack isn't big enough to hold them. In Cocoa, you deal with objects through pointers everywhere and are actually forbidden from dealing with them directly.

Posted by: Heneage on January 18, 2004 07:53 PM

This will allow us to use a few functions we didn't have access to before. These lines are still a mystery for now, but we'll explain them soon. Now we'll start working within the main function, where favoriteNumber is declared and used. The first thing we need to do is change how we declare the variable. Instead of

Posted by: Valentine on January 18, 2004 07:53 PM

Each Stack Frame represents a function. The bottom frame is always the main function, and the frames above it are the other functions that main calls. At any given time, the stack can show you the path your code has taken to get to where it is. The top frame represents the function the code is currently executing, and the frame below it is the function that called the current function, and the frame below that represents the function that called the function that called the current function, and so on all the way down to main, which is the starting point of any C program.

Posted by: Hieronimus on January 18, 2004 07:53 PM

Seth Roby graduated in May of 2003 with a double major in English and Computer Science, the Macintosh part of a three-person Macintosh, Linux, and Windows graduating triumvirate.

Posted by: Ellois on January 18, 2004 07:54 PM
-->