Slashdot Mirror


User: maxwell+demon

maxwell+demon's activity in the archive.

Stories
0
Comments
12,279
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 12,279

  1. Re:This is the right response on This Isn't the Petition Response You're Looking For · · Score: 1
  2. Re:Nice on This Isn't the Petition Response You're Looking For · · Score: 2

    Of course they could just have replied "we are not going to build a death star because we are not on the dark side of the force."

  3. Re:The Administration does not support... on This Isn't the Petition Response You're Looking For · · Score: 1

    If those want something blown up, they'll not be content with a planet. They'll not do it below a suprnova.

  4. Re:Remind me again on Oracle Knew of Latest Java 0-Day Security Hole In August · · Score: 1

    It is useful that every class has it, rather than only those you plan to use reflection on?
    If something can be exploited, it should only be available when explicitly requested.

  5. Re:sad day, and sad reality on Aaron Swartz Commits Suicide · · Score: 4, Insightful

    Depression is an illness. An illness is not selfish. You cannot even decide to have or not have an illness.

    Of course it doesn't help that people often call a normal sadness a depression. But that's just a misnomer, just like calling the common cold a flu is.

  6. Re:Have some shame on Aaron Swartz Commits Suicide · · Score: 2

    How much can you get if you murder someone in the US, by the way?

    As far as I know, the highest possible penalty for murder in the U.S. is death penalty.

  7. Re:He Is Free Now on Aaron Swartz Commits Suicide · · Score: 3, Interesting

    According to that definition, you are more free in a totalitarian dictatorship than in a democracy: In the totalitarian dictatorship you are free from the need to make decisions and you are free from having to form your own opinion.

  8. Re:He Is Free Now on Aaron Swartz Commits Suicide · · Score: 2

    He chose to take his own life.

    Which is a strong hint that he wasn't free at the time when he made that decision, but rather has seen, rightly or wrongly, that decision as the only way out of his current situation.

    And of course whether he is free (or even exists) after having done it doesn't depend on whether it was his decision or not.

  9. Re:He Is Free Now on Aaron Swartz Commits Suicide · · Score: 0, Offtopic

    No, his body is dead. He isn't. He is simply not here. You can't prove I am wrong.

    And you can't prove that you are right.

    And if you're right, you still can't proof that he is free now. For all you know, he might be in hell.

  10. Re:This got a patent on Crowd Funding For Crank Physics · · Score: 1

    That one uses a right angle, while this one uses a pointed angle. That's wholly different!

  11. Re:It has been scientifically tested. on Crowd Funding For Crank Physics · · Score: 2

    Oh, the test was successful. More exactly, the test was successful in proving that it doesn't work. :-)

  12. Re:Art? on The Geek Art Movement · · Score: 1

    And of course, a true geek doesn't buy such a poster. A true geek produces it himself.

  13. Who? on The Geek Art Movement · · Score: 1

    Do you want art to reflect your geek?

    Reflect my geek? Who is my geek?

  14. Re:Sounds Too Good to Be True ... on All New Homes In China Must Have Fiber Optic Internet Connections · · Score: 2

    I don't see how the advance of the display technology is in any way linked to the internet infrastructure, other than producing more demand for bandwidth. Indeed, I'm pretty sure display technology would have advanced even without the internet; the gaming industry was probably much more a drive to this.

    Not to mention that displays are clearly not infrastructure, so it's irrelevant in this discussion anyway.

    And no, I'm not government-worshipping. But I'm also not government-demonising or market-worshipping. There are things which are better done by the market, and there are things better done by the government.

  15. Re:Advantages of Authoritarianism on All New Homes In China Must Have Fiber Optic Internet Connections · · Score: 1

    Oh of course, there's such a difference between the amount of censorship that can be done on DSL et al., versus fibre.

    Yes, there is. But the other way round: Since you can send less data over DSL, it's easier to censor it.

  16. Re:Too bad on All New Homes In China Must Have Fiber Optic Internet Connections · · Score: 2

    The question of freedom on the internet is completely different from the question of a free market building the infrastructure. You think that if the Chinese government would one day decide to give internet infrastructure into private hands, it would allow free usage of that net? The government would certainly still maintain its Great Firewall, it would still control what people do online, and it would probably mandate that every ISP, to get/keep a license, has to provide a way for the government to listen.

    On the other hand, you can build a government-supported infrastructure and still give complete freedom of what people do on it, just like in the U.S. you can drive to whereever you want when using state-built roads (well, assuming there's a road going to that place, of course).

  17. Re:Sounds Too Good to Be True ... on All New Homes In China Must Have Fiber Optic Internet Connections · · Score: 2

    Our system, far from inept, brought about the Internet itself

    The internet was developed by the free market? And I thought DARPA played a major role ...

  18. Re:The Linux Kernel is *NOT* "free for all". on Early Pirate Bay Server Immortalized In Museum · · Score: 1

    Back then, there was very little optimization. The compiled code very much resembled the source code. Today, the compiled code may look very different from the source code. Not to mention constructs which only exist at compile time; good luck with decompiling C++ template code.

  19. Re:The Linux Kernel is *NOT* "free for all". on Early Pirate Bay Server Immortalized In Museum · · Score: 1

    Yes, except reverse-engineering code or functionality would be explicitly legal.

    And so would be any tricks to make reverse-engineering harder. Not to mention that reverse-engineering the compiled code is an order of magnitude harder than reading the source code even without explicit measures to prevent it.

  20. Re:I dunno... on Ask Slashdot: Are Timed Coding Tests Valuable? · · Score: 1

    Oops, line 60 should of course read:

    60 IF fizz = 3 OR buzz = 5 THEN GOTO 90

  21. Re:I dunno... on Ask Slashdot: Are Timed Coding Tests Valuable? · · Score: 1

    That's not true BASIC. True BASIC looks like this:

    10 fizz = 0
    20 buzz = 0
    30 FOR i = 1 to 100
    40 fizz = fizz + 1
    50 buzz = buzz + 1
    60 IF fizz <> 3 AND buzz <> 5 THEN GOTO 90
    70 PRINT i
    80 GOTO 160
    90 IF fizz <> 3 THEN GOTO 120
    100 PRINT "fizz";
    110 fizz = 0
    120 IF buzz <> 5 THEN GOTO 150
    130 PRINT "buzz";
    140 buzz = 0
    150 PRINT
    160 NEXT i

  22. Re:I dunno... on Ask Slashdot: Are Timed Coding Tests Valuable? · · Score: 1

    What about this:

    for x in range(1, 100):
        message = ""
        if x % 3 == 0:
            message += "fizz"
        if x % 5 == 0:
            message += "buzz"
        if message == "":
            message = x
        print(message)

  23. Re:The Linux Kernel is *NOT* "free for all". on Early Pirate Bay Server Immortalized In Museum · · Score: 1

    That's "free for all". The only way to protect your work from having someone else copyright it then force you to pay for what you created is to copyright it first. If copyright (and software/business patents) didn't exist, then there'd be no GPL, no in fact, as the law wouldn't allow it, and not in theory, as it wouldn't be needed.

    Without copyright, how would you force people distributing derived works to supply source code for it?

    A world without copyright would be more as if everything were BSD licensed than as if everything was GPL licensed.

  24. Re:Opera Mini is supposed to be proxied on Nokia Redirecting Traffic On Some of Its Phones, Including HTTPS · · Score: 1

    You know something has gone wrong with the web when prerendering reduces the amount of data transmitted.

  25. Re:Many mobile browsers do this. on Nokia Redirecting Traffic On Some of Its Phones, Including HTTPS · · Score: 1

    No protocol can protect from someone having control of the end point.