Comment Re:Very old news. (Score 1) 393
Except that car travels at 2.85 times the speed of the wind, when directly downwind, ie. when the boat and wind velocity vectors are on the same axis.
Of course, since the "sails" (the propeller blades) are moving on a different trajectory, their apparent wind is not directly downwind.
Zombie Pigs First, Hibernating Soldiers Next 193
Comment Re:Some, not all... (Score 1) 731
That would be merge sort, not quicksort.
Quicksort is (basically) :
- choose a pivot value
- quicksort the list of elements with a value lower than the pivot value (list 1)
- quicksort the list of elements with a value higher than the pivot value (list 2)
- add the pivot and list 2 to list 1
Max Payne 3 Announced For Next Winter 73
Inventor Open Sources "TV-B-Gone," and Why 340
Comment Re:That's because... (Score 1) 450
Raven killed people saying he was an Eskimo instead of an Aleut... Check your back!
Comment Re:Mathematically provably secure? (Score 1) 234
As to the randomisation stuff - yes I've got examples, and we've hit the same thing in Linux with randomisation. You get cases where memory scribbles cause a problem only if the layout happens to be a specific variant (especially with stack randomisation). From "either it dies or it works" you get "1 in 10,000 times xyz app blows up". That does make debugging much much harder. Of course a good reply to that is "so improve the debugging tools".