Slashdot Mirror


User: KumquatOfSolace

KumquatOfSolace's activity in the archive.

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

Comments · 37

  1. How many days does it take to move a folder? on Vivek Kundra On US Government Inefficiency · · Score: 1

    Are they using some kind of giant land-snails as intra-office couriers?

    Seriously, the delay must be due to the time the folders spend sitting untouched in a filing cabinet or on someone's desk, not in transit. They could just as easily store digital information, unprocessed, on a server or desktop computer for the same amount of time.

    Most likely they will blame all problems on lack of computerization, then spend $100 million on a new computer system (which will be obsolete by the time it is complete) and 10 years later the real problems still won't be fixed.

  2. Re:Crowdsourcing new name on Fujitsu Readies Lawsuit Over "iPad" Name · · Score: 1

    iGuessIJustLikeMakingLists:
    iSmudge
    iCanHas?
    (EvaCan)iStabLiveEvilBatsInACave?
    iWentToDubaiAndAllIGotMyWivesWereTheseLousyNetTablets
    iMightBuyOneIfItWereSlightlyCheaperAndHadTheWordsDONTPANIC InscribedInLargeFriendlyLettersOnItsCover
    iSomehowThoughtTheFutureWouldBeCoolerThanThis

  3. Crowdsourcing new name on Fujitsu Readies Lawsuit Over "iPad" Name · · Score: 3, Funny

    iScry
    iPon
    iBigger
    iViddy
    iDiddy
    iWantOne
    iCantBelieveItsNotActuallyUsefulForAnything
    iDroppedItLikeTwoDaysAfterIBoughtIt
    iThinkItLooksGreatOnMyCoffeeTable
    iBoughtANewCoffeeTableJustForIt

  4. Re:Sine waves? on Music By Natural Selection · · Score: 4, Insightful
  5. Re:Resolution on Apple Counter-Sues Nokia Over Patents · · Score: 1

    Yes, this is very much standard practice in the industry.  That's why big tech companies file so many patents -- ammunition in case they need it.

    Unfortunately it doesn't work against patent trolls because they have no product to sell.

  6. Re:Unconvincing statistics on AIDS Vaccine Is Partially Successful · · Score: 1

    I'm too lazy to do the math so I ran a simulation instead.

    With groups of size 8000, if the vaccine is ineffective, and if the probability of a subject becoming infected is (51+74)/2/8000=0.0078125, then the probability of getting >=23 FEWER infections in the vaccine group is around 2%.  I suspect this is low enough for a drug trial to be generally considered a success, but yes it could certainly happen by chance.  It's not a proof, it's a trial.

        MTRand rng(1);

        unsigned count = 0;

        double prob = 0.0078125;

        for(unsigned itr=0; itr<100000; itr++){
            int c1 = 0;
            int c2 = 0;

            for(unsigned i=0; i<8000; i++){
                if(rng.rand()<prob){
                    c1++;
                }

                if(rng.rand()<prob){
                    c2++;
                }
            }

            if(c1-c2>=23){
                count++;
            }
        }

        printf("count: %u = %.6f\n", count, (double)count/100000);

  7. Re:A complementary approach on A Galaxy-Sized Observatory For Gravitational Waves · · Score: 1

    That was my first thought...but maybe they are looking for signs that the space between us and the pulsar has been distorted.

  8. Re:Pardon my ignorance on Lorax Construction · · Score: 1

    I meant the Wikipedia article that I linked to :)

  9. Re:Pardon my ignorance on Lorax Construction · · Score: 4, Informative
    It's a bucket-wheel excavator, used for strip-mining coal.

    http://en.wikipedia.org/wiki/Bucket-wheel_excavator

    I think they're moving it from one mine to another, as described in the above article.

  10. Re:No mention of memmove... on Microsoft To Banish Memcpy() · · Score: 1

    I see the motivation (prevent buffer overflow exploit when programmer lazily uses a fixed-size buffer and doesn't check if the data is too big). But it will probably actually CAUSE bugs. More parameters = more confusion, more risk of mixing the parameters up and getting them wrong. The new parameter (destination size) does not add any functionality, yet if you get it wrong it will break your code. I guess the hope is that those bugs will be caught by QA, whereas buffer overflows might not (because overflow won't occur during normal use).

    Documentation for memcpy_s is rather confusing (naming of parameters is weird) increasing risk that a novice programmer will mess things up.

  11. It's always in the last place you look on Higgs Territory Continues To Shrink · · Score: 1

    So look there first.

  12. Aperture Science on Scientists Achieve Mental Body-Swapping · · Score: 5, Funny
    "It did not work when a non-humanoid object -- such as a chair or large block -- was used."

    No hope for test subjects who over-identify with Weighted Companion Cube.