Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×
DRM

10-Year-Old iTunes DRM Lawsuit Heading To Trial 246

itwbennett writes Plaintiffs in the Apple iPod iTunes antitrust litigation complain that Apple married iTunes music with iPod players, and they want $350 million in damages. The lawsuit accuses Apple of violating U.S. and California antitrust law by restricting music purchased on iTunes from being played on devices other than iPods and by not allowing iPods to play music purchased on other digital music services. Late Apple founder Steve Jobs will reportedly appear via a videotaped statement during the trial, scheduled to begin Tuesday morning in U.S. District Court for the Northern District of California.

Comment Re:The Gripping Hand? (Score 1) 77

These arms could be programmable to continue doing whatever you were doing, whether it be static, dynamic, or include aspects of both. For example, clamping two items together, operating a pump, or holding a camera steady, respectively.

That's a weird way to say masturbation.

Well, considering what Shirow has been up to lately it's probably the first thing that comes to mind...

Comment Re:You can just buy a sim (Score 4, Informative) 146

Oh, and don't forget this in your research - there are at least three popular SIM card sizes roaming (no pun intended) in the wild these days, and they are mutually incompatible. So don't expect to take the full-sized SIM out of your feature phone and transfer it to the micro SIM slot of a Galaxy S4 or the nano SIM slot of an iPhone 5s ... although of course you can buy adapters that will make smaller SIMs fit into larger slots.

Except of course that SIM cards are mostly plastic, with a smart-card-y bit where the contacts are, so it's perfectly possible to cut a regular SIM card down to whatever size you need as long as you use a template and a pair of scissors or one of the cheap SIM cutters you can get on Amazon or ask the guys in the next phone shop to do it for you...

I used a mini SIM in my Motorola Milestone until I got a Samsung S3 when it came out and I needed a micro SIM card - converting my SIM was a rather short and simple home crafting project.

Comment This won't work on so many levels... (Score 2) 311

Thunderf00t summed up a lot of arguments why this is futile and/or a scam in this video. From the summary:

Solar FREAKIN roadways is a nice idea, but then again is a pogostick that can hop to the moon as a cheap, reusable trans-orbital vehicle.

Is it plausible though. Well it basically proposes the union of 3 or 4 technologies. LED lights, solar panels, and glass roads.

Glass really isn't a feasible material to make roads out of.

1) its too expensive. Just coating the US road system with roads would cost many times the federal budget.
2) Its too soft. Even with a textured surface for traction, it will wear away too quickly. Dirt on roads is basically small rocks, which are generally much harder than glass. Imagine taking a handful of dirt and rubbing it [on] a window. Now imagine doing that with the wheels of a 20 ton tractor/trailer.
3) I have doubts about the physical properties of the glass to take the load and mechanical heat stress required of a road making material.

Solar panels under the road is a bad idea from the start. If they are under the roads, they are hard to maintain. They will have reduced light from parked cars etc. They are fragile. Not really congenial to the conditions you are likely to get on a road. In many ways building a shed over the road, or just having solar panels by the side of the road is a far better idea. However the power transport really isnt practical. One of the most efficient ways to transport electricity around is as high voltage AC. However to build those lines would probably double the cost of any construction. To bury the cables is even more expensive.

LEDs for variable road marking have been partially implemented. They are usually only cost effective in dynamic traffic management systems. For most roads its utterly pointless as the road markings almost never need to be altered. These LED are usually not easy to see (especially in full daylight when the solar panels are meant to be generating power).

However solar powered roadways has generated well over a million dollars for Julie and Scott Brusaw (a therapist and an engineer).

I'm still on the fence as to if they are just delusional dreamers or (now millionaire) con artists. A lot of this looks like just direct 'what if' daydreaming, but then you get the part of the promotional video where they are shoveling ground up coloured glass into a wheelbarrow, while narrating that they use as many recycled materials as possible in this project. It's very difficult to not see that as a direct lie. They must know full well that they did not use any of that material in the construction of their glass tiles.

(And yes, he's got a PhD in chemistry, so I trust he might have more of a clue or two what happens when a truck hits the road than an electrical engineer(!)...)

Games

'The Door Problem' of Game Design 305

An anonymous reader writes "Game design is one of those jobs everybody thinks they can do. After all, they've played a few games, and they know what they liked and disliked, right? How hard could it be? Well, professional game designer Liz England has summed up the difficulty of the job and the breadth of knowledge needed to do it in what she calls 'the door problem.' Quoting: 'Premise: You are making a game. Are there doors in your game? Can the player open them? Can the player open every door in the game? What tells a player a door is locked and will open, as opposed to a door that they will never open? What happens if there are two players? Does it only lock after both players pass through the door? What if the level is REALLY BIG and can't all exist at the same time?' This is just a few of the questions that need answering. She then goes through how other employees in the company respond to the issue, often complicating it. 'Network Programmer: "Do all the players need to see the door open at the same time?" Release Engineer: "You need to get your doors in by 3pm if you want them on the disk." Producer: "Do we need to give everyone those doors or can we save them for a pre-order bonus?"'"
XBox (Games)

Titanfall Dev Claims Xbox One Doesn't Need DX12 To Improve Performance 117

MojoKid writes: "One of the hot topics in the wake of Titanfall's launch has been whether or not DirectX 12 would make a difference to the game's sometimes jerky framerate and lower-than-expected 792p resolution. According to Titanfall developer Jon Shirling, the new Microsoft API isn't needed to improve the game's performance, and updates coming down the pipe should improve Xbox One play in the near future. This confirms what many expected since DX12 was announced — the API may offer performance improvements in certain scenarios, but DX12 isn't a panacea for the Xbox One's lackluster performance compared to the PS4. It's an API that appears to mostly address scenarios where the CPU isn't able to keep the GPU fed due to draw call bottlenecks."

Comment Re:Mmm (Score 1) 266

Did you know it took 10+ years for Mozilla to fix the alert() denial loop [mozilla.org]? That bug is older than Mozilla itself, and the most obvious fix of "checkbox to stop further dialogs" was dismissed as a hack (compared to the destructive hack of force-killing Mozilla.)

Yeah, and it should be reverted to the prior behavior because it doesn't fix the issue.

Last I checked alert()s were tab-modal in Firefox, so where's the problem?

If you're giving someone an infinite alert loop, then your code is bad or malicious.

Whether it is bad or malicious this "fix" doesn't fix the issue at all. The very same "denial of service" is easily produced by wrapping an infinite loop in a short window.setInterval(...);. Then instead of an alert() popup you get a never-ending stream of "would you like to stop the script?" dialogs. So, if it's a pop-up dialog denial of service attack you're fixing, then that fucking moronic patch, didn't do jack shit, dingus.

That's why the "would you like to stop the script" dialog kills any and all JavaScript running in that tab, INCLUDING your setInterval...

Protip: Application Level Modal Dialogs are the problem -- That they prohibit you from using your browser functions, like the refresh button or address bar, and not just the page itself is the issue.

A "modal dialog" is a DENIAL OF SERVICE to all other application features. The fix should really happen at the OS UI level. Just fire all the UI designers who think modality is grand.

Protip: check to see if the dialog you're moaning about is even still modal before moaning about it. (Hint: it isn't)

Slashdot Top Deals

Kleeneness is next to Godelness.

Working...