Slashdot Mirror


User: Mateorabi

Mateorabi's activity in the archive.

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

Comments · 315

  1. Re:Insightful jokes on Ask Slashdot: VPN Setup To Improve Latency Over Multiple Connections? · · Score: 2
    I'd tell you a joke about TCP but I'd have to keep repeating it until you got it.

    I'd tell you a joke about UDP but you might not get it.

  2. Effing JS on Rosetta Hunts For Comet Touch Down Site For Philae Lander · · Score: 1

    Of the thirty some domains trying to execute javascript from that page, anyone have the secret combination to temporarily let through noscript so the right-arrow "next image" button works? Just discovery.com and their cdn is not sufficient.

  3. "Waste" on Two South African Cancer Patients Receive 3D Printed Titanium Jaw Implants · · Score: 3, Insightful

    While I find the 3d printing damn cool, the editorializing about the waste struck me as an odd comment for subby to make. I'm guessing that a lot of powder gets left over by this new process just as milling from a solid block leaves shavings. But those should be just as easily melted down and recycled in the next job, so not really wasted. (And if they are thrown away, it means that reusing them just isn't economical, so the 'waste' isn't that valuable anyway.)

    I think the better argument where 3D wins is the ability to get arbitrary shapes that could be impossible to make with traditional machining or casting.

  4. Re:Blaming Google on Following EU Ruling, BBC Article Excluded From Google Searches · · Score: 1

    There's another one with just one L, and he has NO sense of humor.

  5. Re:IANA Physicist, So... on Navy Debuts New Railgun That Launches Shells at Mach 7 · · Score: 1

    On it's problematic use as rocket fuel oxidizer: "...the operator is confronted with the problem of coping with a metal-fluorine fire. For dealing with this situation, I have always recommended a good pair of running shoes." -John Drury Clark

  6. Meh on Online Skim Reading Is Taking Over the Human Brain · · Score: 5, Funny

    tl;dr

  7. Re:Can I vote for.. on Why Darmok Is a Good Star Trek: TNG Episode · · Score: 1

    "Inner Light", a favorite. It still gets a little dusty in the room when it's on. The flute went for mondo-bucks at auction, and is one of the rare examples of actual continuity in the show. (Beverly remembering they had a freaking Sun Shield a few episodes later. And using it once! Being another rare example) I will say that the Wesley episode with Ashley Judd had....redeeming qualities. And disqualifies Wil Wheaton from complaining, ever, about being Wesley.

  8. Re:Google's Firing of a Recruiter Made Jobs Smile( on Apple, Google Go On Trial For Wage Fixing On May 27 · · Score: 1

    Perhaps it was a >:-) smiley?

  9. Re:Let me help on Jack A. Kinzler, Savior of the Skylab Mission, Dies At 94 · · Score: 1

    I saw a man with a telescope.

  10. Re:Lucky on Using Google Maps To Intercept FBI and Secret Service Calls · · Score: 1

    ...and here is your receipt for my receipt.

  11. Re:Space Seems Surprisingly Safe on How An Astronaut Nearly Drowned During a Space Walk · · Score: 1

    I prefer the "horseshoes, hand grenades, and tactical nuclear weapons" variant.

  12. Invisible Hand on New England Burns Jet Fuel To Keep Lights On · · Score: 5, Interesting

    So this wasn't an equipment failure requiring a backup, but just market price fluctuation: The cost of natural gas per Watt generated went above the cost per Watt of the fuel for the backup generators, due to the high demand for natural gas as demand rose as temperatures fell. Sounds like Econ 101.

    1. Why didn't the wholesale electric prices rise in tandem with the gas price to keep generation economical? Capped by fixed residential rates?

    2. Why didn't the generators use the derivatives market to hedge against spikes in gas prices so they'd be able to keep buying as demand/price rose?

  13. Re:Not enough, on Alan Turing Pardoned · · Score: 1

    The Queen (or rather, her representative) did have to dissolve Australian parliament in the 70s using the crown's reserve powers to resolve a political deadlock. Of course we fought a war or two so she can't pull that stunt here...for better or worse.

  14. Re:Not enough, on Alan Turing Pardoned · · Score: 1

    How do we know you aren't just a cleverly written perl script?

  15. 6x Budget on Ask Slashdot: Why Do Mobile Versions of Websites Suck? · · Score: 2

    Unfortunately the trend seems to be to optimize the site for mobile (all of them, at once) and say to-hell-with-PC-browsers. With extremely minimalist, Metro-like, stripped-of-any-useful-information pages now. So now the question has become "why do websites suck?". Lowest Common Denominator experience. Meetup.com went this way a few months ago and is now a shadow of its former self.

  16. Re:There were 10 types of ancient societies on Polynesians May Have Invented Binary Math · · Score: 5, Funny

    No there are 10 types of people:
    Those that understand binary
    Those that don't
    And those that don't realize the joke is base-3.

  17. Re:Fax machine on Ask Slashdot: How Would You Stop a Debt Collection Scam From Targeting You? · · Score: 4, Interesting

    You can purchase a commercial device that spoofs some sort of disconnected/out-of-service tone just as you pick up the receiver. To normal humans it sounds like a quick beep, but to the auto-dialer software it makes it think the number is no longer valid and removes you from the list without handing it off to a human rep. They tell you to expect some calls with no one on the other end for a bit, while you are in the process of being auto-removed from various lists.

  18. Re:They should upgrade the warning ... on Man In Tesla Model S Fire Explains What Happened · · Score: 5, Funny

    They should sample the "You have five minutes to reach minimum safe distance" ship's computer sound clip from Alien.

  19. Re:Big deal on Infosys Fined $35M For Illegally Bringing Programmers Into US On Visitor Visas · · Score: 4, Insightful

    Give H1B holders who blow the whistle on their employers violating the law (overworking them, or claiming and paying them as if it were a much lower skilled job that in reality is higher skilled, the employer just wanted to scare off US workers, etc.) either fast-path to a Green Card, double the pay (paid by fines) they would have earned, and/or freedom to move to a different employer for their stay.

    I.e. change the incentives for H1B visa holders to rat out misbehaving employers, rather than being scared to say anything because they loose if they do.

  20. Re:TFA does a poor job of defining what's happenin on How Your Compiler Can Compromise Application Security · · Score: 1

    This makes no sense. The dereference is undefined, and therefore sk may be undefined iff tun IS null but not tun.

    I.e. by the time execution reaches the if statement one of the two is true:
    tun != null && sk == {something valid} -or-
    tun == nul && sk == {undefined}

    sk being undefined is possible but that undefined-ness can't be used as a way to infer tun != null--the only thing that causes it is tun == null! It's illogical for the compiler to do what you say and remove the if check. The standard says sk can be undefined, therefore something being in an undefined state is possible, not that the compiler can presume that undefined is impossible to occur and put it's hands over its ears and go la-la-la.

  21. Re:Why? on The Cost of the US Government Shutdown To Science · · Score: 1

    It's not just life and limb. Protecting property is also considered "essential". So critical tests to prevent the loss of a billion dollar satellite that couldn't not be performed at any other time should have been essential enough to bring in the government employees needed. I like to blame the Republicans as much as anybody, but if the summary is true then it's the NASA manager who didn't call his people back and jeopardized the telescope work who done F'd up this one.

    That the potential loss in property was a future-cost is not relevant, the early Oct. time-frame was the only time the schedule would allow the tests, even if the failures wouldn't be noticed till after a (explosive?) launch. The THREAT to property was immediate if not the consequence.

  22. Re:Moo on Gravity: Can Film Ever Get the Science Right? · · Score: 1

    That article belongs on tvtropes, not wikipedia.

  23. Re:Where were the professionals. on More Bad News From Fukushima · · Score: 2

    I used to drive a Dodge Colt. That old rust bucket wouldn't get over 65 if you dropped it of a cliff.

  24. Re:It's not all one field on The STEM Crisis Is a Myth · · Score: 1

    At some point the divisions become so specialized, the sub-disciplines so fractal, that no college degree nor previous job is going to fully prepare you. At some point the companies have to stop being whiny and hire someone "merely" trainable and invest time to train them in-house. An unwillingness to do this, and a unrealistic expectation for STEM to produce them whole-cloth, being one of the several reasons for the "shortage."

  25. Re:Oh boy on First Asteroid Discovered At Uranus's Leading Trojan Point · · Score: 2

    According to Prof. Farnsworth they will have changed its name prior to the year 3000 to 'Urectum'.