Slashdot Mirror


User: mooingyak

mooingyak's activity in the archive.

Stories
0
Comments
1,757
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,757

  1. Psycho training? on Bringing Neurofeedback Gaming To the Masses · · Score: 1

    So the calmer you are in what would normally be an adrenaline producing situation, the better you are at the game? That's going to produce some scary people.

  2. Re:Europa was discovered in 1610 by Galileo... on Discovery Increases Odds of Life On Europa · · Score: 3, Interesting

    So thats 1000kg...

    Nobody ever says Megagram, or Megameter either for that matter. I for one would like to see that become commonplace.

  3. Re:Think you may want to look at his logs on Helena Airport Manager Blocks TSA From Taking Full-Body Scanner · · Score: 1

    He says the scanner provides an excuse for them to do "enhanced patdowns".

    I don't know what sort of people enjoy giving enhanced patdowns to other people, but know I don't want them in my airports.

    Actually, the summary is poorly worded. He says the opposite in the article:

    “People had become comfortable with the scanner. It certainly did speed the process and removed the need for the enhanced pat-down.”

  4. What?? on There Is Plenty To Cut At the Pentagon · · Score: 0

    And in an era in which aerial combat is of diminishing importance

    That's going to need a citation methinks.

  5. Re:Why not popular? on Wirelessly Charged Buses Being Tested Next Year · · Score: 1

    It is in NYC, but most of the US isn't a major population center.

  6. Re:You clearly didn't review the charts given. on NY Times' Broder Responds To Tesla's Elon Musk · · Score: 3, Funny

    I try not to be a grammar Nazi,

    And yet.... You are.

    Try harder. Nobody likes a pedantic ass. Technically correct or not.

    I lied. I don't really try.

  7. Re:You clearly didn't review the charts given. on NY Times' Broder Responds To Tesla's Elon Musk · · Score: 5, Funny

    For all intensive purposes

    I try not to be a grammar Nazi, but man you even italicized it.

  8. glad that's cleared up on Can You Do the Regular Expression Crossword? · · Score: 0

    In case you don't know what a regular expression is — it is a way of specifying what characters are allowed using wild-card characters and more.

    I mean... really?

    Have trouble parsing them? I get that. We all do.

    Not know what they are? Who in this audience?

  9. Re:There really are people like that on Making Sure Interviews Don't Turn Into Free Consulting · · Score: 1

    The thing is that won't end up with us being out of a job because there's always more to do. There are things people would like us to do, but we don't have time for, and if we free up more time we can move on to that.

    Amen to that. My wife got nervous when I described how things were going at work. We had a team of four, lost two people, hired one to replace them. We don't feel any need to hire more even though we're actually handling more responsibilities now than we did as a foursome. I'm currently reworking some legacy code that's been a timesink for us to constantly dance around. She asked me "Won't that come to a point where they don't need you?" I thought that was kind of funny. There are ALWAYS other projects to fill in the freed up resources.

  10. Re:Wow, at that rate if your an idiot on Google Announces 2,000 Schools Now Use Chromebooks, Up 100% In 3 Months · · Score: 4, Funny

    Hey man, thanks for explaining the joke to those without a sarcasm detector. I really appreciate it.

    Just to be clear, he's being sarcastic right there.

  11. Re:Tech is so far behind... on Fight You Own Muscles To Create Force-Feedback On Smartphones · · Score: 1

    Not to mention all the FTL tech that people thought of even before then. Seriously, this world is just full of slackers.

  12. Pets on Interviews: Ask Blendtec Founder Tom Dickson What Won't Blend? · · Score: 4, Funny

    Which household pets are tastiest after being blended?

  13. Re:Wait, what? on Perl's Glory Days Are Behind It, But It Isn't Going Anywhere · · Score: 1

    And my point is sigils are part of the name, which makes each name distinct.

    But they're not part of the name. To my original post on the subject:

    So you're saying that you can have @foo and %foo, and then assign @foo = @foo{('curly','larry','moe')}, and the lhs @foo refers to something different than the rhs @foo?

    not to mention cases where you can have
    $foo, @foo, and %foo, and then assignments like:

    $foo = $foo[5];
    $foo = $foo{bar};

    which is a more common case than the one above

    The sigils tell you what type to expect an expression to return, but they're not part of the name.

  14. Re:Hmmmmmmmm on Hacker Faces 105 Years In Prison After Blackmailing 350+ Women · · Score: 1

    Am i the only one who is confused by the wording of the summary?

    Far from it. From the summary, it sounds like he convinced women to strip for him in front of a camera, then used those pictures to blackmail the women into... sending him naked pictures of themselves.

  15. Re:Dutch Innovate on 5 Years After Major DNS Flaw Found, Few US Companies Have Deployed Long-term Fix · · Score: 1

    If you have a few hundred of domains the costs to implement are lower than the discount given till mid 2014 == profit for implementing dnssec

    I'm assuming there's some kind of catch in there so that it's not worthwhile for someone to register a few thousand new domains and then implement DNSSEC on them.

  16. Re:Wait, what? on Perl's Glory Days Are Behind It, But It Isn't Going Anywhere · · Score: 1

    To a Perl programmer this is all very clear despite having multiple things called 'file' in the same scope. What would you prefer? "$file, $file_handle, $file_array, $file_hash"? There are a lot of things you could do instead but they're not much clearer or easier to read, and this is more than sufficiently clear.

    Before I say anything else: I understand that your code is illustrative and not intended to be an example of how to read a file.

    That said, I do feel that discrete names provide better clarity, and don't believe that having distinct symbol tables for each variable type is beneficial. Clearly YMMV (and it seems, DOES vary).

    BTW, I think the guy who wrote the ruby version also understood what you were doing. His point (and mine, to a lesser degree) is that if you use distinct names, which he and I both appear to prefer, then the sigils become clutter.

  17. Re:Wait, what? on Perl's Glory Days Are Behind It, But It Isn't Going Anywhere · · Score: 1

    My complaint with your argument lies in reconciling that syntax with this statement:

    (we actually think of the sigil as *part* of the name, as in "dollar foo" and "percent foo")

  18. Re:Wait, what? on Perl's Glory Days Are Behind It, But It Isn't Going Anywhere · · Score: 2

    $foo is one (scalar) variable, which is not the same as @foo (array), and %foo (hash) and foo (file handle), which can coexist without interference, and no Perl programmer will be confused by that (we actually think of the sigil as *part* of the name, as in "dollar foo" and "percent foo"). So it's not redundant syntax, which Perl avoids like the plague.

    They're also there to ensure that you're getting the right kind of value when you build an expression, like @stooges = @people{('curly','larry','moe')} (stooges is an array, people is a hash). That is the kind of compact syntax that makes it popular as opposed to iterating over the keys to add the values to the array.

    So you're saying that you can have @foo and %foo, and then assign @foo = @foo{('curly','larry','moe')}, and the lhs @foo refers to something different than the rhs @foo? And that's not confusing?

  19. Re:Both songs suck. on Jonathan Coulton Offers Some Gleeful Turnabout · · Score: 2

    I've heard Coulton's version once. Or at least, about half of it, before I got bored. What I did not doubt was that he knew exactly how he was coming across. I figured it was a joke. Joke's not as funny if you only do half the song though.

    I've always felt the best done cover in the same concept (not the same song) was Dynamite Hack.

  20. Re:here we go on Lego Accused of Racism With Star Wars Set · · Score: 1

    no you do not "recall" correctly. the Eastern Roman empire sprawled over parts of what now is Turkey

    How is that not being colonized by the Romans?

    They were eventually removed, but I didn't exactly claim Turkey was still part of the Roman empire.

    IIRC you had broccoli growing in your underpants. now you write a post disputing that and we'll go at this ad infinitum

    Why would I want to dispute that? Free broccoli!

  21. Re:here we go on Lego Accused of Racism With Star Wars Set · · Score: 2

    Depending on whether Turks count as European the Turks were a) never colonized by Euros/Westerners or b) are by definition colonized by themselves. The Saudis always maintained significant autonomy from the Sultan in Istanbul.

    "Turks" as a people maybe not (not sure if colonization can apply to people rather than territory), but IIRC the Romans colonized a large chunk of Turkey.

  22. Re:here we go on Lego Accused of Racism With Star Wars Set · · Score: 2

    There are lots of problems in that list, but... Cuba? Really?

  23. Re:Oh thank god... on NASA and CSA Begin Testing Satellite Refueling On the ISS · · Score: 1

    Have they launched anything? What have they done? I ask this without intending any disrespect -- but if they've got some accomplishments under their belt then they need a better PR machine.

    Note to Canadians - try writing the word 'Canada' in even larger letters on vital components of NASA's manned space programme.

    Starts with a 'C', ends with 'a', has the words 'Made In' next to it.... about the only time Canada gets mixed up with China.

  24. Re:Oh thank god... on NASA and CSA Begin Testing Satellite Refueling On the ISS · · Score: 1

    CSA is the Canadian Space agency! I thought I took a nap and woke in a Turtledove-esq alternate universe where the south won the civil war and were in space!

    My first reaction was something like "Oh. The Canadians have a space agency?"

    Have they launched anything? What have they done? I ask this without intending any disrespect -- but if they've got some accomplishments under their belt then they need a better PR machine.

  25. Get management buy-in... on Ask Slashdot: How To Convince a Team To Write Good Code? · · Score: 1

    Get management buy in, and have them pad your estimates to allow a little bit of code rework in each release cycle.

    If that fails, lie about your estimates and use the extra time to rework the code in each release cycle.