Slashdot Mirror


User: tool462

tool462's activity in the archive.

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

Comments · 773

  1. Re:software dev? on Ask Slashdot: What To Do With a Math Degree? · · Score: 1

    That was a real sin(b)/tan(b) joke...

  2. Re:News Corp making a play for Rovio? on Fox News Ties 'Flame' Malware To Angry Birds · · Score: 2

    I don't see the Queen denying it. Do you? If she isn't an accomplice, why doesn't she just come out and say so???

  3. Re:Hooray. on ISS Captures SpaceX Dragon Capsule · · Score: 2

    Being able to commandeer and board somebody else's spaceship will be a tremendous feat of engineering. If a little rape and pillaging is the motivation someone needs to solve that problem, I think I might actually be okay with that. :)

  4. Re:It didn't do that for me... on Apple Tells Siri To Stop Recommending Nokia · · Score: 5, Informative

    Pretty much. We recently switched cell providers, and my wife opted to get an iPhone. Here is one of her conversations with Siri (details paraphrased/redacted):

    W: Find me a mexican restaurant in __city name__.
    S: I found 23 places near you
    W: (looking at list) Where is __first restaurant in list__.
    S: I can't help you with that.
    W: Habla Espanol?
    S: I don't want to argue with you.

    That was more or less the gist of every conversation she attempted w/ Siri. Never any really useful information. She frequently got "I can't help you with that" or something similar. The only value seems to be the entertainment when you stumble across one of the easter egg phrases. It's like playing around with the old Alice AI bots. It can be fun for a bit, but the novelty wears off quickly, at which point, it's useless.

  5. Re:Contest on Judge to Oracle: A High Schooler Could Write rangeCheck · · Score: 1

    Somebody has been spending too much time on TopCoder...

  6. Re:Another ridiculous lawsuit on Nokia Faces Class-Action Suit Over Windows Phone Deal · · Score: 1

    but it's still a plan in motion

    Just a plan? How about doing more research, dammit? Without research in motion, they have no hope of success.

  7. Re:ARGH! on Bethesda Announces Elder Scrolls MMO · · Score: 1

    Absolutely. I'm old now. I don't have the patience to make nice with a bunch of teenagers calling everyone f@gs and saying they took an arrow in the knee. But I would like to play with friends. Especially if we can do it without a monthly fee. Something more like SC2 on Battle.net rather than WoW. They can monetize with downloadable content for new quests and such. Monthly fees will kill it for people like me who can burn a bunch of time on one weekend, but then can't play for another 6 weeks.

  8. What I heard... on Australian Billionaire Plans To Build Titanic II · · Score: 3, Funny

    I heard he's consulting with Abercrombie & Fitch on aesthetics and design. As I understand it, the hull will be pre-distressed and cost twice what a typical cruise ship costs.

  9. Re:Robert Heinlein on New Study Suggests Wind Farms Can Cause Climate Change · · Score: 1

    I believe this perfectly captures what people mean by "externalities" when discussing business regulation.

  10. Re:Duh, removal of enegy from enviro affects envir on New Study Suggests Wind Farms Can Cause Climate Change · · Score: 2

    That makes two things entropy has in common with my ex. (The first: both are always increasing)

  11. Re:Habit on Hobbit Film Underwhelms At 48 Frames Per Second · · Score: 4, Insightful

    I think this is the case. I remember the transition to HDTV. When shows started airing in HD, I remember everything looking unnaturally crisp. It looked fake compared to the "real" 480i I was used to. By the time most shows went HD that effect went away for me, and the SD stuff started looking fake and crappy. I have roughly the same reaction watching SD shows now as I did watching the handful of B&W shows that were still airing when I was a kid. Yeah, it still works, but it definitely feels inferior and old fashioned.

    My guess is 48fps movies will be about the same, unless they induce epileptic seizures or something...

  12. Technology Prognosticator on Is Siri Smarter Than Google? · · Score: 4, Insightful

    You mean "bullshit artist" right?

  13. Re:Gaming the system on Pay Less If You're a Nice Person: Valve's Freemium Model For DOTA 2 · · Score: 1

    Note to self: mod capnchicken Troll every time he posts for outing our ruse!

    ***Extra note to self: don't post "notes to self" on a public form***

  14. Re:Bad Bots on Amazon's Cloud Now 1% of Internet Traffic · · Score: 2

    I was gonna say...

    Is this Cloud to Cloud, or Cloud to ground traffic?

  15. Re:The science of test design on Florida Thinks Their Students Are Too Stupid To Know the Right Answers · · Score: 4, Interesting

    Absolutely. My wife is a 5th grade teacher. I'm a physicist by training, engineer by trade, so she'll often bring home some of their testing materials to have me take a look. There have been quite a few "That's not right. That's not even wrong" moments where the question and answers were clearly written by somebody who did not fully understand the material. A lot of it appeared to be misguided attempts to put something from a textbook into their own words. Confusion on similar terms like meteor, meteorite, comet, asteroid, etc.

    It's the kind of mistakes I would never fault an individual for making (5th grader or not). It's easily corrected, and not harmful in and of itself. However, when teaching this problem is amplified. You end up with students who are even more confused, and the one person who is supposed to alleviate that confusion can not. You end up reinforcing the "science is hard" mantra and have a disengaged class as a result.

  16. Re:Normally C but... on Ask Slashdot: Best Book For 11-Year-Old Who Wants To Teach Himself To Program? · · Score: 4, Interesting

    I disagree. I was 10 when I started programming, and when I did it was in C. There are some advantages in being close to the hardware like you are with C, as opposed to the higher level languages like Java, Perl, Python, etc. Just like how everyone learns arithmetic by hand to start, but once that's mastered most people just use a calculator for anything they can't do in their heads. Without learning the manual process first, you wouldn't understand the guts of how arithmetic works. The calculator would just become a magic box that spits numbers out at you.

    Just like with math I MUCH prefer to spend my time in a high level language like Perl or Python, but I'm much better at using them because of my early experiences with C. An example:

    One of the early C programs I wrote was an implementation of Conway's Game of Life. It's a fairly simple program, conceptually, but it hits a lot of major gotchas in programming. At by "it", I mean me :)
    - array bounds checking
    - data integrity (you have to have a buffer array to create the next generation or you'll get very screwy results)
    - array copying (pointers are both powerful and dangerous)
    - static vs. dynamic memory allocation (free your pointers, kids)

    All of these things can cause issues in most programming languages, but the bugs they cause can be a lot more subtle in some of the higher level languages.
    Consider a one-dimensional array
    C-style
    int a[3] = {1,2,3};
    int b[3];
    b = a;
    a[1] = 5;
    *** b is now {1,5,3}

    Perl style
    @a = (1,2,3)
    @b = @a;
    $a[1] = 5;
    *** b is still (1,2,3)

    For this, Perl seems better since it matches what the user likely wanted to do.
    However, now look at 2d:
    C-style
    int a[3][3] = {{1,2,3},{4,5,6},{7,8,9}};
    int b[3][3];
    b = a
    a[1][1] = 10;
    *** b[1][1] is also 10

    Perl-style
    @a = ([1,2,3],[4,5,6],[7,8,9]);
    @b = @a
    $a[1][1] = 10
    *** $b[1][1] is ALSO 10

    Why the difference? Array assignment in perl only copies the top level structure, which happens to consist of array refs in the second case. So after the assignment both $a[1] and $b[1] point to the same array ref. If you're already familiar and comfortable with C pointers, this kind of bug is a lot easier to find and fix. You're less likely to make this mistake anyway, though, because you have that intuition that array copying is a hard thing to implement and that different languages will do so differently. So if you need to copy some kind of complex data structure, you better look into how that particular language does it.

  17. One way on Ask Slashdot: My Company Wants Me To Astroturf, Should I? · · Score: 4, Insightful

    You could always try the app yourself then give it an honest review. If you genuinely like it, it's not astroturfing.
    If you don't like it, you could consider feeding that back to the developers as that may reveal more fundamentally why it's not selling well.

  18. Precedent on Google Actually Patenting Its April Fools' Joke · · Score: 4, Insightful

    It's quite the achievement turning an April Fool's joke into an actual product.

  19. Re:Can't have it both ways on Larry Page Issues Public Update On Google Changes · · Score: 1

    I'm in full blown creepy-land too.

    I recently took a trip to SF and booked a hotel from a particular chain. I found it via a google map search by searching for "hotel" in the vicinity of the event I was attending. The bubble that popped up had a reasonable price and a link to their site so I clicked it and booked a room. Ever since then, I see nothing but ads for this particular hotel chain on every website I visit. If there are spots for, say, 3 different ads on a website, all three of them will be advertising this same chain.

    Seriously disturbing stuff...

  20. Re:Murder Weapon on Self-Sculpting "Sand" Can Allow Spontaneous Formation of Tools · · Score: 5, Funny

    No, just fat.

  21. Well done. on 1.9 Billion Digits: Brazil's Bid For Biometric Voting · · Score: 1

    Imagine this happening in the U.S

    Thanks for including that in there. Most of us were going to do that anyway, but now we won't have any of those "Hey Idiot, this is in Brazil, not America. The Constitution doesn't apply there" comments and the brain-dead road that goes down. Huzzah!

    My scathing critique:
    What about people without fingerprints?
    Are burn victims disenfranchised?
    Mobsters will just cut off people's fingers and use them to vote.
    Mythbusters proved that fingerprints are easy to fake.

    Bam.
    Busted.

  22. Re:minor issues on 11-lb Robot Can Jump 30 Feet Into the Air · · Score: 1

    In addition to what others have pointed out, the part of the article that had the words in it mentioned that it is accurate enough to jump through a window two stories up.

  23. Re:Works every time. on Ask Slashdot: How To Give IT Presentations That Aren't Boring? · · Score: 1

    Applied to the average IT guy, the audience will WISH their eyes glazed over...

  24. Ahh, I see how this works... on George Takei Helps Facebook Troubleshoot MySQL · · Score: 5, Funny

    This just in--Slashdot helps load test web servers.

  25. Re:50 years ago... on Final Analysis Suggests Tevatron Saw Hint of the Higgs Boson · · Score: 1

    These things are expensive. The 50-years-ago golden age (1950s-1970s) had the top income tax bracket between 70 and 90%.
    http://ntu.org/tax-basics/history-of-federal-individual-1.html

    Something to think about...