Slashdot Mirror


User: Surt

Surt's activity in the archive.

Stories
0
Comments
8,792
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 8,792

  1. from the department of duh on Half Life of a Tech Worker: 15 Years · · Score: 1

    Big news, yet another random person discovers there is an intense age-bias in technology work.

  2. Re:Is this a problem? on Bufferbloat: Dark Buffers In the Internet · · Score: 2

    Umm ... your 1500 byte packet had best not take more than about 10 us to transmit. 10ms would be quite ridiculous.

  3. Re:Is this a problem? on Bufferbloat: Dark Buffers In the Internet · · Score: 1

    They don't pay taxes?

  4. Re:Is this a problem? on Bufferbloat: Dark Buffers In the Internet · · Score: 2

    And the right balance between buffer size, drop percentage, and throughput should be measurable. But I bet those lazy bastards at cisco have never thought to measure performance, which is why no one uses their equipment.

  5. Re:Money motivates mongers on Swiss Gov't: Downloading Movies and Music Will Stay Legal · · Score: 1

    He said real artists. What does that have to do with Metallica?

  6. Re:I don't get it on Swiss Gov't: Downloading Movies and Music Will Stay Legal · · Score: 1

    stop stop topmenu.
    (That's how you skip ads on just about 100% of players).

  7. Re:I don't get it on Swiss Gov't: Downloading Movies and Music Will Stay Legal · · Score: 1

    GPL exists precisely to do battle with the evils of copyright. If copyright didn't exist, GPL wouldn't just be unenforceable, it would be unnecessary.

  8. Re:I don't get it on Swiss Gov't: Downloading Movies and Music Will Stay Legal · · Score: 1

    If you want to win the argument with pirates, you can't call it theft, because (if we're not being ridiculous) it isn't theft. It's reduction of enforcement of monopoly rights granted by the state.

  9. Re:Go away, you're not 21 on Swiss Gov't: Downloading Movies and Music Will Stay Legal · · Score: 1

    Parks, libraries, community theatres. Plenty of people making money performing in those venues.

  10. Re:Sanity on Swiss Gov't: Downloading Movies and Music Will Stay Legal · · Score: 2

    I'd do exactly what artists should do: perform. In the music space, your music should motivate people to pay you to perform concerts. In the programming space, your code should motivate people to pay you to perform maintenance.

  11. Re:Understood as ...? on Stephen Wolfram Joins The Life Boat Foundation and Bets On Singularity · · Score: 1

    He seems to think that this modeling strategy will result in discoveries about the rules of the universe, essentially as emergent properties, that are difficult (in the extreme) for a human to imagine and design a simulation to test.

  12. Re:Understood as ...? on Stephen Wolfram Joins The Life Boat Foundation and Bets On Singularity · · Score: 1

    Well, down at the planck length it sure looks like things are discrete. But even if they aren't, the simulation errors that would accumulate from the difference would never be greater than the measurement error (Heisenberg uncertainty principle) that forbids us from having a truly perfect understanding of the initial conditions.

  13. Re:Understood as ...? on Stephen Wolfram Joins The Life Boat Foundation and Bets On Singularity · · Score: 1

    But it wouldn't, ever, depart measurably from reality. Even as errors do accumulate over iterations, because the errors are guaranteed to be indistinguishable from measurement errors on the inputs.

  14. Re:They're not really stealing from bank on Anonymous Threatens Robin Hood Attacks Against Banks · · Score: 1

    Well, in reality, yes. But in reality, at least around me, house prices are still falling, and are still going to fall for another couple of years at least. Plus rents are cheap because of all the vacant houses, much cheaper than the houses are currently selling for.

  15. Re:They're not really stealing from bank on Anonymous Threatens Robin Hood Attacks Against Banks · · Score: 2

    If you can buy it on credit now, why can't you save up for it and buy it later?

  16. Re:Nature... will find a way! on Fighting Mosquitoes With GM Mosquitoes · · Score: 0

    LOL.

  17. Re:Do I get to say... on Fighting Mosquitoes With GM Mosquitoes · · Score: 1

    There are numerous other factions out trying to wipe out mosquitos in the largest possible numbers. I think the scientists presume they have just as much right to attempt the feat.

  18. Re:Nature... will find a way! on Fighting Mosquitoes With GM Mosquitoes · · Score: 5, Funny

    Umm ... your parent poster complained about bat guano. Which of ignorance or superstition was it to claim that a large number of bats were responsible for his unwanted surplus of bat guano?

  19. Re:How 'bout 21st century homesteading? on Stephen Wolfram Joins The Life Boat Foundation and Bets On Singularity · · Score: 1

    Vehicles? Why do you need to go anywhere in this scenario?

  20. Re:Understood as ...? on Stephen Wolfram Joins The Life Boat Foundation and Bets On Singularity · · Score: 1

    If you approximate it to below the plank length in precision, are you done?

  21. If that socio-political impact is severe enough, it could result in enough nukes going off to pose a decent existential threat to humanity.

  22. Re:How fast for Angry Birds? on NVIDIA Launches GeForce GTX 560 Ti 448-Core GPU · · Score: 1

    There actually is an easter egg in there for owners of high end graphics cards. If you have a sufficiently good one your speedy bird will cross the light speed barrier, creating a warp wake that creates a wave of destruction. Sorry if you're missing out with your wimpy card though.

  23. Re:Great, but how many cores does it have? on NVIDIA Launches GeForce GTX 560 Ti 448-Core GPU · · Score: 1

    It's not the summary's fault. 448 cores is actually in the product title.

  24. Re:The summary doesn't make it clear... on NVIDIA Launches GeForce GTX 560 Ti 448-Core GPU · · Score: 1

    Worse, the 448 core thing is actually in the product title, so it isn't even the fault of the summary.

  25. Re:"Truly random numbers" on Physicist Uses Laser Light As Fast, True-Random Number Generator · · Score: 1

    Modern games do not call their random source often enough for its performance to be a big deal. That's why pretty much everybody moved to MT when it came out: it was less than an order of magnitude slower than LCG, and the quality of the random numbers was well established, and there was an acceptable commercial license on a very good implementation. You could trivially run tests against that library to verify you had it implemented correctly as well. It was a 'just-right' trade-off between performance and better quality random numbers.

    For most multi-player games, the seeding of the players is irrelevant. The server decides all important outcomes, so only its seed matters. The players' clients are just informed of the outcomes. Whether or not the players see a randomly-shaped explosion exactly the same is usually too trivial to matter, but if you do care, then you actually want synchronized seeds, and those are used in some places.