Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
Google

Google Declines To Turn Over Harvested Wi-Fi Data 201

An anonymous reader writes "Google declined to submit data collected as part of the 'Spy-Fi' flap, and Connecticut Attorney General Richard Blumenthal is now promising further action: '"I certainly will be pressing for continued involvement at the federal level in coordination with the states," Blumenthal told Politico Monday, just days after promising to explore "additional enforcement actions" if Google does not share the data soon. Asked to describe what those federal efforts might include, the outgoing attorney general said, "There's a range of potential opportunities for oversight and scrutiny by a member of the US Congress – including letters, meetings, hearings, and potentially even legislation." For its part, Google has tried to defuse the issue by offering to delete the data. The company reaffirmed that position in a Friday statement, promising to work with Blumenthal in the coming weeks, but declined to comment further on Monday.'"
Games

Valve Announces Dota 2 128

RulerOf writes "Just over a year after hiring IceFrog, the lead developer of the wildly popular DotA Allstars mod for Warcraft III, and the speculation surrounding Valve's recent trademark filing for the 'DotA' name, Valve has officially announced Dota 2. Gameplay of Dota 2 is being ported 'exactly' from the current DotA Allstars and includes every hero, but vast improvements are being made to the game including VoIP, a coaching system, in-game rewards, and AI that takes over for disconnected players. Lastly, it all runs on top of the Source engine. (GameInformer's website appears to be struggling right now though, as they had an exclusive on this story.)"
Image

The Real 'Stuff White People Like' 286

Here's an interesting and funny look at 526,000 OkCupid users, divided into groups by race and gender and all the the things each groups says it likes or is interested in. While it is far from being definitive, the groupings give a glimpse of what makes each culture unique. According to the results, white men like nothing better than Tom Clancy, Van Halen, and golfing.
Image

The Push For Colbert's "Restoring Truthiness" Rally 703

jamie writes "A grassroots campaign has begun to get Stephen Colbert to hold a rally on the steps of the Lincoln Memorial to counter Glenn Beck's recent 'Restoring Honor' event. The would-be rally has been dubbed 'Restoring Truthiness' and was inspired by a recent post on Reddit, where a young woman wondered if the only way to point out the absurdity of the Tea Party's rally would be if Colbert mirrored it with his own Colbert Nation.'"

Comment This sounds great, but... (Score 1) 162

Density and cost may be the holy grail, but there are a number of other properties which important which can make the difference between marketplace success or failure.

1.) Data Reliability
2.) Data Lifetime
3.) Store element lifetime - do the individual storage locations 'wear out' like flash?
3.) Read/Write Speed - Although there is an article in Science Daily which reports 100ns
4.) Power Requirement

I didn't see any of these mentioned in the article. If these properties are all equal to or superior to flash, it could be the next big thing.

Comment Re:How about integers instead of floating point? (Score 3, Informative) 137

You can still use integer math to represent fractional values. For example, using the upper 16 bits as the integer part, and the lower sixteen as the fractional part.

    Something like this only implemented with inline assembly:

Int32 fMult( Int32 a, Int32 b)
{
      return (Int32) (((Int64) a * (Int64) b)>>32);
}

You don't have nearly the dynamic range of floating point, but you *can* implement rotation matrices, vectors, time and distance and physics calculations. You just have to be careful to keep the values in range.

Comment It's the Gaming Market, Stupid! (Score 1) 1067

I was just reading in Scientific American about a research group looking into the effects on vision done by 3D shooter gameplay. One of the points they mentioned was that it was quite difficult to find college students who does *not* play them. There are 6 PC's in our house, and they all run Windows because 4 of out the 5 family members play mainstream commercial games. We use Open Office, Firefox, Gimp for non-gaming applications, so it isn't Windows Application like Office that keeps us in the Microsoft camp. It is Oblivion, City of Heroes, Call of Duty etc. Yes, there are 3D games that run great in Linux. That's nice, but until EA and the others start taking the Linux platform seriously, it really isn't a choice the gamer.

We have tried running Red Hat or Ubuntu as dual-boot, or in VMWare Player. It is nice, but there really is no big reason to boot Linux, when we can do everything we want using Windows.

My son has a dual-boot Ubuntu with some fancy desktop thing where he can make his windows jiggle. That is really neat, but when he wants to play, it's back to Windows....

The key is the gamers. Microsoft works very hard on Direct 3D for a reason... I heard that the newest Direct 3D will only be for Vista. Now I wonder why that is? Hmmm.... Could it be they aren't stupid? -Jenny Z

Slashdot Top Deals

"Gravitation cannot be held responsible for people falling in love." -- Albert Einstein

Working...