Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
Government

Submission + - FCC ends 700 MHz auction

Apu writes: Having received bids totaling $19.5 billion over 260 rounds of bidding, the FCC has announced the closing of Auction 73. The Chairman's statement notes that the auction has "raised more money than any [FCC] auction has ever raised" besting the 2006 Advanced Wireless Service-1 auction that raised $13.9 billion and topping the $10.6 billion Congress estimated it would receive for the 700 MHz spectrum. The New York Times reports that "the last bid in the auction was $91,000 for frequencies around Vieques, Pureto Rico."

According to the FCC, "eight unsold licenses [...] remain held by the FCC and will again be made available [...] in a future auction." This includes the "D block" which was to be shared by commercial and public safety users and only received a single $472 million bid, below the $1.3 billion reserve price. However, as previously reported, the open access provisions will apply to one-third of the auctioned spectrum as the minimum $4.6 billion bid for the "C" block was received.

The names of the winning bidders have not yet been made public.
Mozilla

Firefox 3 May Be More Memory Efficient Than Either IE or Opera 370

Edy52285 writes "Ars Technica has an article showing benchmarks pitting Firefox 3 Beta 4 against other browsers. Contenders include IE7, Firefox 2, Opera 9.5 Beta, and Safari 3.0.4 Beta. The piece includes a graph depicting FF3's memory usage well below that of the other browsers. The in-testing browser even trumps Opera, which has long been regarded as the fastest browser around."

Comment Re:Hmm (Score 3, Funny) 485


float Q_rsqrt( float number )
{
                long i;
                float x2, y;
                const float threehalfs = 1.5F;

                x2 = number * 0.5F;
                y = number;
                i = * ( long * ) // evil floating point bit level hacking
                i = 0x5f3759df - ( i >> 1 ); // what the fuck?
                y = * ( float * )
                y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration // y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed

#ifndef Q3_VM
#ifdef __linux__
                assert( !isnan(y) ); // bk010122 - FPE?
#endif
#endif
                return y;
}

heh.
User Journal

Journal Journal: Journal?

Everything you've ever wanted to know, and more, is here .

Slashdot Top Deals

"The medium is the massage." -- Crazy Nigel

Working...