Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:people are going to be saying (Score 1) 737

so this copilot is a complete scumbag

You do not know enough to conclude this.

How often do suicidal bus drivers drive off a cliff? Suicidal operators of huge industrial machines take down their workplace? Pretty rare, even if there are hundreds of times as many bus drivers / heavy machine operators as compared to airline pilots.

Many countries have zero effective regulation on bus driver / machine operators sleep cycles. Lots of drivers / operators work without any social interaction which could have helped detect and even prevent suicidal tendencies. This pilot was at least working along with another human being. Was in Europe - which at least on paper had good sleep cycle regulations, and knowing Europe, regulations would have had some force of effect too.

There could have been other reasons for this event. Your ignorance of them do not make those reasons stop existing.

Comment Re:It depends (Score 2) 486

But except saying it "dramatically" improves results, the StringBuilder result wasn't worthy of a mention or a compare against disk performance.

Obviously, like any good "researcher" does, the conclusion was written first and then the "experiment" was performed. Any results contradicting the conclusion have to excluded.

Comment Re:It depends (Score 1) 486

The above explanation applies to any data structure that has to be stored contiguously and increases in size, or is immutable

But it was never necessary for the "in memory operation" (their words) to use an immutable data structure. If you use bad data structure when using in-memory, of course in-memory will be slower than disk.

Comment java string concatenation is O(N) (Score 1) 486

This "researcher" is an idiot. The java code given at the bottom of the "research paper" uses + operator to concatenate strings. This is O(N) in Oracle java. Total algorithm becomes O(N*N) in memory, and O(N) on disk.

Obviously N*N takes longer than N after a certain N even when N*N is running on faster memory.

Comment Re:It's simple. Eat less and eat less crap (Score 1) 496

You make it sound like starvation is necessary for effective weight loss. This is extremely incorrect.

The way fat (especially saturated) has been maligned by "experts" in 80s, 90s and early 2000s - millions of people have gained weight just by eating too much carbohydrate. Just replacing some of it by fat makes for tastier, more filling, body weight reducing, and health giving food. Quite the opposite of starvation.

For very rapid body fat loss, you might have to go on very low carbohydrates - which while not starving, does need to fight the other animal in the body which craves carbohydrates, simpler the better.

Slashdot Top Deals

"No matter where you go, there you are..." -- Buckaroo Banzai

Working...