Slashdot Mirror


User: tristes_tigres

tristes_tigres's activity in the archive.

Stories
0
Comments
96
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 96

  1. Good on Busybox Deletes Systemd Support · · Score: 1

    Good. Let more projects follow suit.

  2. Re:Ugh on Ubuntu 15.10 'Wily Werewolf' Released (omgubuntu.co.uk) · · Score: 1

    The latest releases now have sustemd, so it is getting worse.

  3. No, he is not. He work for a long time for the bank of notorious criminal oligarch Khodorkovsky, and that's where he build capital to start his internet businesses. Also, the Mail.ru service he is associated with happens to be the shittest, most unsecure and spam-riddled e-mail service in Russia.

  4. But his money are gained by plundering Russian state assets, so that "good use" is tainted by such funding source.

  5. Re:x/0 does not equal 0. on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    Well, I am sorry, but you are factually wrong about this. Your "proofs" show that division by zero may be undefined for some cases, which does not change the fact that it is quite well defined for some other cases. IEEE 754 is quite clear on that too. You may wish to eduacte yourself beyond pre-calc before sounding off.

  6. Re:I'm tired, too on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    Good example of a wrong way to solve the problem.

  7. Re:Floating point on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    And if it's weight of a piece of cheese, you go to your mommy for another one.

    Slashdot these days, it's amazing. It's like perpetual September

  8. Re:x/0 does not equal 0. on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    You know, your aplomb is actually quite amazing, given your degree of ignorance. I bet you failed your freshmen calculus.

  9. Re:x/0 does not equal 0. on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    > e know that for all numbers, a multiplication by zero will always equal zero

    Not for machine floating point. 0*Inf = NaN, as required by standard IEEE 754

  10. Re:Simple on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    Eigenvalue finding by bisection using Sturm sequence.

  11. Re:x/0 does not equal 0. on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    No, it's you that are factually wrong. Pick a book on intro calculus or floating-point numerics before spreading your ignorance on public forum.

  12. Re:I want my division by zero errors to be errors on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    Please, do not use your ignorance as an argument

  13. Re:Floating point on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    Bingo!

    And if those people are writing code for twitter and facebook, I have no objection. But over yonder someone claims that he wrote a flight control software. Now that's scary thought (even if it is for a hobby drone)

  14. Re:Sounds like a plan! on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    Well, no, I did not. If the result Inf occurs in computations that must be passed to control mechanisms, it must be caught at this point, and not where it occured. Throwing exception on arithmetic operation is bad idea that seems good if you do not think about it carefully. Which authors of IEEE754 did, and produced a very good standard.

  15. Re:I want my division by zero errors to be errors on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    Fortunately, your vote did not count when IEEE754 was created by the top numerical experts. Unfortunately, far too many programmers are voefully ignorant about proper FP math.

    > And how many times exactly have you been happy to get "Infinity" as a result?
    > Pretty much every time I've gotten that there has been an error in my logic.

    I believe you that there're lots of errors in your logic. One of them is ignoring mathematical fact that 1/0=Inf as per IEEE standard implemented in hardware by (virtually) all modern processors

  16. Re:Sounds like a plan! on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    The code that generated an exception was not useful by the time rocket left the launch pad. Yet because the designers, like you, incorrectly thought that division by zero must throw an exception, the flight controller crashed, and with it, the rocket.

  17. Re:Sounds like a plan! on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    No, you are wrong that the error was in the code handling flight trajectory computations. It was in the part of software that was needed before the launch, and not at all during the flight. The results of that computation were not needed for guidance, and yet unhandled exception caused the controller to crash.

    Secondly, you are wrong when you assume that the division by zero is necessarily an error. There are valid and useful numerical algorithms that rely on division by zero being well-defined operation.

  18. Re:Math doesn't approve on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 2

    Nope. Division by zero is NaN if and only if the numerator is zero as well.

  19. Re:I want my division by zero errors to be errors on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    Wrong wrong wrong misguided and wrong again. division of non-zero by zero is quite meaningful and is defined by IEEE standard for floating point arithmetic to return infinity (wtih appropriate sign depending on the signs of the zero and numerator).

    In the rare cases when exception is needed IEEE compliant fp math implementation provides mechanism for it

  20. Re:x/0 does not equal 0. on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 2

    No he isn't. He is right, too.

  21. Re:x/0 does not equal 0. on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 0

    We need a special big stick to slap morons like RackinFrackin for ignorant comments like the one above . What's worse, he is "correcting" someone who knows better than him.

  22. Re:Sounds like a plan! on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    Yes, you (almost always) do NOT want to throw exceptions on division by zero. Doing otherwise resulted in billion-dollar explosion of Arian 5 rocket.

  23. Re:Simple on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 1

    Yep, well, it simiply does not mean that your code is wrong. There are valid reasons to divide by zero.

  24. Re:Floating point on Ask Slashdot: What's the Harm In a Default Setting For Div By Zero? · · Score: 4, Interesting

    Oh my god, this whole discussion is so misguided it hurts my eyes to look at. Why don't you people go educate yourself about floating-point arithmetics? IEEE754 standard was designed by top-notch numerical expert and YOU IGNORE IT AT YOUR AND YOUR USERS' PERIL.

    And yeah, division of nonzero by +zero must give Inf, and there are actual useful numerical algorithms that make use of that.

  25. "Unfair to students" on Microsoft To Teachers: Using Pens and Paper Not Fair To Students · · Score: 1

    More to the point, it's unfair to Microsoft's sales