Slashdot Mirror


User: bunratty

bunratty's activity in the archive.

Stories
0
Comments
3,482
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3,482

  1. Re:Good day on GCC 5.2 Released · · Score: 1

    Not for me. I just finished downloading GCC 5.1 and Visual Studio 2014!

  2. But New Horizons was trying to avoid collisions, not create them!

  3. Re:It's larger than we thought, lets call it a pla on New Horizons Phones Home After Pluto Flyby -- Craft Healthy, Data Recorded · · Score: 4, Funny

    They did name Charon, Doofus.

  4. Re:Multiple multi-million dollar satellites. on Ask Slashdot: How Much Did Your Biggest Tech Mistake Cost? · · Score: 1

    So once she tried to break a satellite and she fixed it by mistake? Oops!

  5. Re:Almost on How Much Python Do You Need To Know To Be Useful? · · Score: 2

    I've written Python for years and have never used any special editor. The one problem I've had is when commenting out several lines of Python code -- you need to add a # character to the beginning of each line. It's a minor inconvenience. But Python could use a good multiline comment mechanism. I had the same problem in Perl, which uses curly braces, so it isn't really an indentation issue at all.

  6. Re:Exodus on Ask Slashdot: What Happens If We Perfect Age Reversing? · · Score: 1
  7. Re:Exodus on Ask Slashdot: What Happens If We Perfect Age Reversing? · · Score: 5, Insightful

    Even at the speed of light we can expand our territory at most proportional to the cube of the amount of time we have to spread. If the birth rate exceeds the death rate, the population growth will be exponential. No matter what technology we have, we won't be able to accommodate a geometrically growing population within a volume that grows no faster than a cubic formula. Here come the death panels. Thanks, Obama!

  8. Re:so, go back and mine old /. thread? on WHO Declares Liberian Ebola Outbreak Over · · Score: 1

    The US swamped (whatever that means) with infections in two weeks and "the majority of humanity being wiped out... taking out huge chunks of our population" are two entirely different events!

  9. Re:so, go back and mine old /. thread? on WHO Declares Liberian Ebola Outbreak Over · · Score: 1

    Huh. I don't remember seeing those. Maybe those comments were modded down, as they should have been.

  10. Re:Nobody dresses the gorilla in the room? on Autonomous Cars and the Centralization of Driving · · Score: 2

    You're seriously underestimating the connectedness and security of cars. They're already networked and hackable remotely.

  11. Re:Nobody dresses the gorilla in the room? on Autonomous Cars and the Centralization of Driving · · Score: 1
  12. If you include the fact that you never bought it, that's more information that affects the probabilities. It's just like in the Monty Hall problem where revealing a goat behind one door changes the probabilities of what's behind the other doors.

    Given the fact that cannabis was recently made legal where you live, you may be 5% less like to pass a class. Given the additional fact that you chose not to use cannabis, you may be 5% more likely to pass a class due to the curve being lowered by those who do smoke.

  13. Re:I'm gonna go out on a limb. on Cannabis Smoking Makes Students Less Likely To Pass University Courses · · Score: 1

    I thought we already knew the academic impact of canibus use from the documentary Fast Times at Ridgemont High

    I thought the characters drove their cars to school in that movie.

  14. Re:Why the bad rap? on America's Methane Mystery: NASA Set To Investigate Hotspot Over the 4 Corners · · Score: 2

    Oh, go blow it out your ass!

  15. Re:I wonder on A Robo-Car Just Drove Across the Country · · Score: 1

    We'll need human drivers in the loop for quite some time. Here's a radio interview with a robotics researcher who actually works on autonomous vehicles to tell you the same: http://www.newstalkzb.co.nz/on...

  16. Re:Pacific Decadal Oscillation (PDO) on El Nino Has Finally Arrived, Far Weaker Than Predicted · · Score: 2

    From that perspective there is absolutely nothing to be gained from getting out of bed either. That's why it's not a useful perspective.

  17. Re:Very informative article on Facebook AI Director Discusses Deep Learning, Hype, and the Singularity · · Score: 1

    When most AI people are talking about artificial intelligence, they are talking about narrow "intelligence". This is why in Russell & Norvig's book they quickly move away from the term "intelligence" and instead speak of "agents" working in a particular "task environment", and whether the agents behave rationally or not. For example, a chess program may be able to win chess games against a grandmaster chess player, so we say this agent is performing rationally within this specific task environment. The chess program is not "intelligent" in the sense that you and I are -- it's an incredibly dumb automaton, as is nearly every computer program. You can see this when it fails miserably when put in any different task environment.

    The intelligence that will bring about the singularity is artificial general intelligence, which is the same intelligence that you and I have, that is, the capability of performing well in a very wide variety of environments. This type of agent would be able to reason about how to improve itself and bring about that improvement. Very little AI research these days involves artificial general intelligence, and the progress in this area is slow.

  18. Re:Correlation and causation again on How Machine Learning Ate Microsoft · · Score: 1

    I think this is exactly why Andrew Ng started his machine learning Coursera course, because so many programmers in Silicon Valley were applying machine learning techniques without knowing what they're doing. His idea seems to be, "If I can teach the fundamentals of machine learning to thousands of programmers, then these so-called machine learning 'experts' will be seen for who they are." I hope that managers that think they can be armchair data scientists will also be seen for who they are.

  19. Exactly! The multiple return statements make the code easier to understand. Some programmers are so militant about having a single return statement in every function that they can't tolerate that code, though.

  20. The goto statement isn't the issue. The issue is non-structured programming, which includes the use of goto, break, continue, multiple returns from a procedure, exceptions, longjmp, and anything else that interrupts the normal control flow of a program. The idea is that to understand a program, you need to understand all the ways the flow of control can occur. Each time you conditionally break the flow of control, you're potentially doubling the number of ways control could flow through the program, making it potentially exponentially harder to understand and test.

    Once a co-worker proudly showed me how he wrote the following construct:
    do {
    //some code
    if (condition) break;
    //more code
    if (another condition) break;
    //yet more code
    } while (0);
    to avoid goto statements. My reaction is that goto statements would more clearly express the jumps in the control flow. A do-while indicates a loop, but it isn't a loop; it's gotos in disguise.

    Some programmers take this idea to an extreme and even write code such as:
    int abs(int x) {
    int retval;
    if (x >= 0) retval = x;
    else retval = -x;
    return retval;
    }
    In this case, multiple return statements would make the code simpler, not harder to understand. Similarly, using exceptions wisely can make code easier to understand, not harder.

    The bottom line is that as a general rule it's best not to break the flow of control. But a good programmer will know when it makes sense to do so, and if a goto statement makes sense, it can be the clearest way to express such a break.

  21. Re:w***e ? on Comcast Employees Change Customer Names To 'Dummy' and Other Insults · · Score: 5, Funny

    W****h!

  22. Re:w***e ? on Comcast Employees Change Customer Names To 'Dummy' and Other Insults · · Score: 1

    A very large marine mammal.

  23. Re:Hackers Obey the Law!! on Simple Rogue WiFi Hotspot Captures High Profile Data · · Score: 2, Insightful

    Most people who go to prison don't particularly care about obeying laws. That attitude doesn't seem to result in much leniency from the courts.

  24. Re:Stop trying to win this politically on Michael Mann: Swiftboating Comes To Science · · Score: 1

    She missed the "reasoned hypothesis" step. We know that burning fossil fuels produces carbon dioxide, and we know that carbon dioxide is a greenhouse gas. So of course burning fossil fuels will cause warming! And because we've observed the warming, we've confirmed this prediction beyond all reasonable doubt.

  25. Re:Stop trying to win this politically on Michael Mann: Swiftboating Comes To Science · · Score: 5, Informative

    That's ice surface area, which tells you only how spread out the ice is, not how much there is. You need to look at the ice mass, which is declining at an accelerating rate.