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

 



Forgot your password?
typodupeerror

Comment Re: I was just thinking about snake oil. (Score 1) 124

The moon's orbit is getting wider because it orbits slower than the Earth rotates.

The tides aren't just 'pulled up' by the moon, they also pull on the moon. The changing shape of the Earth('s oceans) due to the tides being moved by the speed of the Earth's rotation, adds energy to the Moon's orbital motion. The added energy forces the moon into a higher orbit. That energy isn't free, it's extracted from the rotational energy of the Earth itself. So as the Earth's rotation slows, so does the Moon get pushed into ever higher orbit.

Iphone

Man Sues Apple For Terminating Apple ID With $24K Worth of Content (appleinsider.com) 156

According to a complaint filed on Tuesday, Apple user Matthew Price spent nearly $25,000 on content attached to his Apple ID, which was terminated by the company for unknown reasons. The lawsuit targets a clause in Apple's media services terms and conditions, which states a user with a terminated Apple ID cannot access media content that they've purchased. AppleInsider reports: "Apple's unlawful and unconscionable clause as a prohibited de facto liquidated damages provision which is triggered when Apple suspects its customers have breached its Terms and Conditions," the lawsuit reads. Additionally, the complaint claims that users with Apple devices will find their products "substantially diminished in value" if their Apple IDs are terminated, since they won't be able to access Apple services or purchased content.

According to the complaint, the $25,000 worth of media included apps, in-app purchases, programs and platform extensions, and related services. The plaintiff also alleges that Apple prevents users from accessing unused funds attached to an Apple account. Price, for example, had about $7 in iTunes credit. The lawsuit doesn't specify why Price's account was terminated. However, it does claim that Apple shut down the Apple ID "without notice, explanation, policy or process." It goes on to claim that Apple's conduct -- specifically, the clause and resulting terminations -- are "unfair, unlawful, fraudulent, and illegal," and alleges that Apple is in violation of several consumer regulations in California. The lawsuit is seeking class action status, with a Nationwide Class consisting of people in the U.S. who have had their Apple IDs terminated.

Comment Re: Problems with non-CS majors... (Score 2) 473

Then whoever they are they are not experienced or they donâ(TM)t know what they are talking about. This demonstrates what Iâ(TM)m talking about. NP complete problems are not unsolvable they are non polynomial. The solutions are done via heuristic approaches. For example: your cars gps is solving an np complete problem (routing) by using what is called a greedy algorithm. It will find itâ(TM)s way from point a to point b, but it may not always be guaranteed to find the optimal solution. It can only find an acceptable solution in polynomial time. Finding the optimal solution (I e the absolute best solution) is what takes non-polynomial or NP time. So whoever was stopped in his tracks is full of shit.

Comment Problems with non-CS majors... (Score 2) 473

Non-CS majors are likely not to recognize intractable (NP-complete) problems when faced with them. I have seen many non-CS majors who call themselves programmers ignore (or just plain not be knowledgable of) simple approaches / heuristics to solve these problems. Also, non-CS majors tend to be unaware of time saving solutions to problems and will often go for the "straight forward" or "brute force" approach which ends up being more costly algorithmically (the difference between solving something in O(n) vs O(1) can be horribly expensive).

I don't know why questions or assertions like this come up every so often within the community, but I find it deeply concerning that many people hold the opinion that CS isn't needed or that an institutional education makes you arrogant. By definition, someone who is intelligent is flexible and willing to change... if they are not, then it's a problem with the person, not the institution.

CS is needed. Make no mistake. If you don't have someone who is a problem solver and knows what they are doing on your staff, you're wasting time and, possibly, lots of money. There is a reason why Google looks for the best of the best from CS programs all over the world.

Comment Re:ISPs should meter their customers (Score 1) 107

Your numbers and/or units are wrong.

> 33,480,000 bytes

That is only 33.48 megabytes.

But your error is before that.

3600 * 24 * 31 = 2678400 sec/month (that one you got right)
2678400 sec/month * 100,000,000 bits/sec = 267,840,000,000,000 bits/month (you had an error here)
267,840,000,000,000 bits/month / 8 bits/byte = 33,480,000,000,000 bytes/month
33,480,000,000,000 bytes/month / 1,000,000,000 bytes/gigabyte = 33,480 gigabytes/month
33,480 gigabytes/month * 15 $/gigabyte = $502,200

Comment Re: Who? (Score 1) 688

How do you know there aren't patches that are much more effective than those which were adopted? Can you say that he has managed it optimally? No management strategy based on ego will ever survive. I worry about the future.

Additionally, with respect to his hatred of BSD. I find that hatred of anything technological is stupid. I would hope that he has some technical / logical reasons for rejecting such things rather than just saying "it's stupid".

GC

Comment Re:Also, who does not separate drive control? (Score 2) 192

Normally there are two _separate_ CAN busses, one which handles all the critical crap, and one which handles the infotainment and comfort stuff. There's a module which connects the two, providing read-only queries from the second to the first. None of the hacks breached this system.

Oh really? Then how did that Jeep Cherokee hack via the infotainment system work?

from http://www.wired.com/2015/07/h... (emphasis mine)

As the two hackers remotely toyed with the air-conditioning, radio, and windshield wipers, I mentally congratulated myself on my courage under pressure. That's when they cut the transmission.

Immediately my accelerator stopped working. As I frantically pressed the pedal and watched the RPMs climb, the Jeep lost half its speed, then slowed to a crawl. This occurred just as I reached a long overpass, with no shoulder to offer an escape. The experiment had ceased to be fun.

Comment Re:More proof... (Score 1) 60

Is it any different then say apt-get using unsecured http or ftp connections?

In addition to the package .deb files being signed, the official package repositories have signed package indexes. I suppose one could just serve up a modified index without a signature, but apt might warn or error on that. (I haven't checked this part)

Slashdot Top Deals

"What man has done, man can aspire to do." -- Jerry Pournelle, about space flight

Working...