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:Good on Meet Firefox's Built-In PDF Reader · · Score: 1

    So when will we get a JavaScript implementation of Flash?

  2. Re:Who Cares on Microsoft Tried To Buy Netscape: Suppose They Had? · · Score: 1

    The standard browser on Unix was XMosaic (possibly also on other operating systems, that I don't know) before Netscape took over. So maybe our browsers would all be Mosaic based.

    Mosaic had a feature not found in Netscape, which was the ability to add annotations to web sites (personal ones worked for all web sites, shared ones AFAIK only for those which explicitly supported it). Maybe with Mosaic as dominant browser, Web 2.0 would have come much earlier, and with direct browser support.

  3. Re:While this one won't work, others do have a cha on 1 MW Cold Fusion Plant Supposedly To Come Online · · Score: 1

    I don't think you understand the limits of growth. Exponential growth never goes on forever. And in the case of hydrogen fusion it's not the fuel which will be the limiting factor.

  4. Re:Rossi is not a scientist on 1 MW Cold Fusion Plant Supposedly To Come Online · · Score: 1

    Wait, Rossi? Of course it won't work. :-)

  5. Re:Currency on World's Biggest Gold Coin Minted In Australia · · Score: 1

    While energy cannot be destroyed, it can be rendered useless.

  6. Re:Gold coins are so last century on World's Biggest Gold Coin Minted In Australia · · Score: 1

    Coins are never minted out of air. They are always minted out of some material (which previously has been mined).
    With bitcoins, you mine for numbers fulfilling certain mathematical properties. But then, you have to put those numbers into a special form, the bitcoins. In other words, you have to mint the bitcoins.

  7. Re:Gold coins are so last century on World's Biggest Gold Coin Minted In Australia · · Score: 2

    You may "mine" for some numbers with certain mathematical properties, but those numbers by themselves are not bitcoins. You must convert them into a special form recognized by the BitCoin system. In other words, you must "mint" them. The numbers are the material from which the bitcoins are minted.

  8. Re:dear moron on 1 MW Cold Fusion Plant Supposedly To Come Online · · Score: 2

    "Free energy", when used in a scientific (not pseudo-scientific) context, refers to a thermodynamic quantity, basically an entropy-corrected energy. It doesn't mean "Energy for free".

    "Zero energy" means just that, an energy value of zero (depending on the context, it doesn't need to mean the minimal energy, e.g. for bound systems the energy scale is usually taken so that the bound states have negative energy).

    Maybe you meant "zero point energy", which is basically the energy of the vacuum. Since effects like the Casimir effect can locally suppress some vacuum fluctuations, some people dream of extracting that energy from the vacuum. But generally the vacuum state is considered the lowest-energy state possible.

  9. Re:Quorum looks a lot like Pascal on Is Perl Better Than a Randomly Generated Programming Language? · · Score: 1

    Well, thinking of it, in C++ I like the following function template to easily add const to an object's access (to force calling const methods instead of non-const ones; especially for begin/end where those return different iterator types)

    template<typename T> T const& Const(T const& t) { return t; }

    I now notice that the comparison is a perfect place to apply it:

    if (Const(a) = Const(b)) // error
    if (Const(a) == Const(b)) // OK

  10. Re:Next question on Is Perl Better Than a Randomly Generated Programming Language? · · Score: 1

    Ah, I see you have a Perl executable named %@$&#@^UGSOWDYRO&F@#L(EGFGP*$TW in your root directory. :-)

  11. Re:It's the study participants. on Is Perl Better Than a Randomly Generated Programming Language? · · Score: 1

    And my suspicion is that they chose Perl exactly for that reason, to make their own language, Quorum, stand out.

  12. Re:Quorum looks a lot like Pascal on Is Perl Better Than a Randomly Generated Programming Language? · · Score: 1

    Well, Perl has some things which make it harder to learn even for people who know how to program.

    For example, you can have a variable $foo (a scalar), and a different variable @foo (an array). Array indexing is done with postfixing [n] (where n is the index). So far, so good. Now, how do you access element 1 of @foo? Well, everyone knowing programming (but not Perl) would of course say: @foo[1], but actually it's $foo[1] because the array element is a scalar. Of course despite having "$foo" inside, it does not access the variable $foo, but the variable @foo.

  13. Re:Quorum looks a lot like Pascal on Is Perl Better Than a Randomly Generated Programming Language? · · Score: 1

    Yes, languages generally distinguish between presence and absence of whitespace. But Python depends on the amount of whitespace. That's almost as bad as depending on distinguishing tab and space (make, I'm looking at you!).

    Here is a set of rules any programming language should IMHO adhere to (those rules of course don't apply inside strings):

    1. Except for newline, never depend on the type of whitespace.
    2. Two consecutive non-newline whitespace characters are equivalent to a single non-newline whitespace character.
    3. A newline character preceded or followed by whitespace is equivalent to just a newline character.
    4. Two or more empty lines (including lines which contain whitespace characters, but nothing else) are equivalent to a single empty line (giving empty lines significance at all is not ideal, but acceptable).
    5. Empty lines at the beginning or end of a file are always insignificant.
    6. If your language depends on the distinction between newline and other whitespace, give a way to escape newline (preferrably by treating it as normal whitespace).

  14. Re:Quorum looks a lot like Pascal on Is Perl Better Than a Randomly Generated Programming Language? · · Score: 1

    As a general rule, I like to put the rvalue on the left side so that there's no ambiguity:

    Of course that rule fails as soon as you compare two lvalues.

  15. Re:Yes.... on DNA May Carry a Memory of Your Living Conditions From Childhood · · Score: 1

    But shouldn't backwards reading read the other strand, i.e. the complements, as well as reversing the order?

  16. Re:Amazingly precise eruption period... on In Bolivia, a Supervolcano Is Rising · · Score: 1

    Obviously the conventions differ between countries; in Germany, 300000 has 6 significant digits (there's an official standard saying so, DIN 1333); if you want to write 1 significant digit, you have to write 3*10^5.

  17. Re:300.000 on In Bolivia, a Supervolcano Is Rising · · Score: 1

    No, scientific notation is what is used in science. If Wikipedia says something different, it's wrong and should be corrected.

  18. Re:Amazingly precise eruption period... on In Bolivia, a Supervolcano Is Rising · · Score: 0

    But 300000 years to 6 digits is also an amazing precision.

  19. Re:300.000 on In Bolivia, a Supervolcano Is Rising · · Score: 1

    It would be so much easier if we just used scientific notation:
    3e+5 years

    That's not scientific notation, but computer notation. Scientific notation would me 3×10^5 years (actually it would be a raised 5 instead of "^5", but Slashdot doesn't support the sup tag).

  20. Re:They need NASA's help on US Funds Aggressive Tech To Cut Solar Power Costs · · Score: 1

    Fine, if you believe this,

    Did you, by chance, see the last three characters of my post?

  21. Re:E-parasite, e-crime, e-jail, e-conomy on PROTECT IP Renamed To the E-PARASITE Act · · Score: 1

    I also find it especially heart warming that our leaders have time to draft this while the country is literally falling apart.

    You honestly think they drafted it themselves? More probably it's mostly drafted by the lobbyists.

  22. Re:China copies U.S. Intellectual Property... on PROTECT IP Renamed To the E-PARASITE Act · · Score: 1

    You're British, right?

  23. Re:They need NASA's help on US Funds Aggressive Tech To Cut Solar Power Costs · · Score: 1

    As soon as we have the space elevator, launching into space will be dirt cheap, and the equation will look different! ;-)

  24. Re:chill out, guys on PROTECT IP Renamed To the E-PARASITE Act · · Score: 1

    Well, I think for the laws in question here, Hollywood would be the correct place.

  25. Re:I am not an economist on Why Economic Models Are Always Wrong · · Score: 1

    It's an investment if you rent it to someone to live in, and expect to make your money (plus some) back from the rent. It's pure speculation if you buy in the hope of selling for more later.