March 26, 2003
Reuters: New Al Jazeera Web Site Runs Into Headaches

By Reshma Kapadia

NEW YORK (Reuters) - Hacker attacks and technical glitches caused a string of headaches on Tuesday for a new English-language Web site launched by Arab satellite TV network Al Jazeera.

The Qatar-based network, already controversial in the West for airing messages from Osama bin Laden (news - web sites), has faced a storm of criticism in the United States for broadcasting Iraqi footage of five U.S. prisoners of war and at least eight corpses.

Its new site (http;//english.aljazeera.net) went live on Monday, but was quickly hit by hacker attacks -- as was the Arabic-language site (www.aljazeera.net).

Staff were unable to update the English site for about four hours on Tuesday, said it managing editor Joanne Tucker.

"We've had a lot of obstacles thrown in our way," Tucker said. "I thought the launch of this site would be quite smooth and wouldn't make too many waves, but the reaction has been amazing. It has been almost surreal."

Al Jazeera's information technology manager Salah Al Seddiqui said the company was also told by its Qatar-based vendor that U.S.-based DataPipe could no longer host its site from the end of the month. Al Seddiqui said the company was moving its servers to Europe.

Tucker said war sensitivities may have been behind the decision, but DataPipe said in a statement it was ending its relationship with a company that manages Al Jazeera's site on March 31. It said it had no direct ties with Al Jazeera.

The new English-language site has no multi-media capability but carried photos from the footage showing the U.S. prisoners of war. The Arabic-language site had the video, prompting a flood of traffic on Sunday.

Lycos cited that video as the factor that made Al Jazeera the most searched term on search engine, generating three times as much search activity as anything else.

The surge traffic badly hit the site's performance. Product manager Roopak Patel of performance tracker Keynote Systems said the site's performance "went to hell" on March 23.

Tucker said the new site, which for now is devoted exclusively to the war on Iraq (news - web sites), was a temporary operation pending a full launch tentatively set for mid-April.

"Every story on the site now has a byline. It should have been (that way) from the first day but it was just one of the glitches," she said.

Yahoo! News - New Al Jazeera Web Site Runs Into Headaches

Posted by Circulars Admin at March 26, 2003 11:08 AM
Comments

Nice article

Posted by: Michael on November 29, 2003 07:38 AM

The most basic duality that exists with variables is how the programmer sees them in a totally different way than the computer does. When you're typing away in Project Builder, your variables are normal words smashed together, like software titles from the 80s. You deal with them on this level, moving them around and passing them back and forth.

Posted by: William on January 18, 2004 09:46 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: Benedict on January 18, 2004 09:47 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: David on January 18, 2004 09:47 PM

Note the new asterisks whenever we reference favoriteNumber, except for that new line right before the return.

Posted by: Machutus on January 18, 2004 09:51 PM
-->