Slashdot Mirror


User: addaon

addaon's activity in the archive.

Stories
0
Comments
1,067
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,067

  1. Re:Info on county's voting machines on Aftermath Of Failed Electronic Voting · · Score: 1

    First screen of the demo:

    "To begin voting, press anywhere on the screen."
    "PRESS HERE TO BEGIN VOTING"

    I guess it's good that they think they're simple enough to use without instructions, since the instructions seem to have nothing to do with the actual software.

  2. Re:Real advantages over using Linux on Macs? on New Patches Let iMac G5 Boot Linux · · Score: 1

    Just give them their own account...

  3. Re:safari? on Penn State Tells Students To Ditch IE · · Score: 1

    Irony, huh?

    I do not think that word means what you think it means.

  4. Re:congrats on AOL Locks Out AIM Screen Names · · Score: 4, Funny

    ME TOO!

  5. Re:Hunh? on Windows CE R/C Transmitter · · Score: 1

    Which, of course, can't be done with this device.

  6. Re:give me permanence or give me bit-death! on New ChromaLife 100 Canon Printer Inkset · · Score: 1

    It's a garbage collection mechanism. If no one gives a damn about your data, entropy garbage collects it. If you really think your data is so important, you just need to convince human society that it's worth paying the refresh costs on the memory... Shakespeare did it, why can't you?

  7. Re:No wonder it's their most important profit on A Brief History of the iPod · · Score: 1

    What manufacturer would that be?

  8. Re:When are you going to get your info right? on HP Backs Blu-ray Disc Technology · · Score: 1

    Um... he's saying that DVD-R stores 5.5MB /more/ than DVD+R. Which is news to me, but far from unreasonable.

  9. Re:Question on Chinese Team Heading for Coldest Spot on Earth · · Score: 1

    Presumably. But how accurate is infrared imaging if the surface you're trying to read is essentially the same temperature as the air mass above it? Doesn't the atmosphere get in the way? Or can those things really focus down?

  10. Re:Question on Chinese Team Heading for Coldest Spot on Earth · · Score: 1

    Ooh. [forehead smack] Good point. Still must be bloody weird to have dry ice vaporizing under your boots when you step down.

  11. Re:Question on Chinese Team Heading for Coldest Spot on Earth · · Score: 5, Funny

    "the temperature plummets to around minus 90 degrees Celsius"... of course, we don't know how that measurement was made...

  12. Question on Chinese Team Heading for Coldest Spot on Earth · · Score: 4, Interesting

    So what happens when the temperature (down to -90C) goes below the sublimation temperature of CO2 (-76C, if I recall correctly)? Does it just freeze out of the air? I'm sure these guys will be heating (and probably humidifying) their air supply anyway, but do they need to add CO2 to keep the breathing reflexes working right?

  13. Re:More than just Audio Amps on Happy 100th To The Vacuum Tube · · Score: 1

    You've got to be organized if you want to offend everyone!

    (Reminds me of the guy in H2G2 who went around insulting everyone. What a fine country I live in!)

  14. Re:It's eventual use. on An Interplanetary Laser Communications System · · Score: 1

    4000000000/i am multitudes/duh

  15. Re:Variable structure for the lazy? on Fun with Prime Numbers · · Score: 1

    They're immutable (from reading the article, not previous knowledge) in the sense that "adding" an element really consists of creating a new vlist with the old vlist as its tail; references to the old ones can continue to be used unchanged, and will see an unmutated list.

  16. Re:Will Bush appoint a more conservative replaceme on U.S. Attorney General John Ashcroft Resigns · · Score: 1

    Nope, an absolute conservative will destroy others to avoid having to change himself.

  17. Re:Fire in the hole! on Understanding Earth's Magnetic Field · · Score: 1

    Way to get the joke...

  18. Re:Random noise? on 2004 Election Weirdness Continues · · Score: 1

    This sentence has cabbage six words.

  19. Fire in the hole! on Understanding Earth's Magnetic Field · · Score: 5, Funny

    I hope the sprinkler system doesn't go off.

  20. piece of mind on Microsoft Just Wants a Little Look · · Score: 4, Funny

    Ewww... does it at least come in a plastic baggie?

  21. Re:Add instruction sets size too on What Makes Apple's Power Mac G5 Processor So Hot · · Score: 1

    Of which 20% are nops.

  22. Re:Spoiler alert on Human Gene Count Slashed · · Score: 5, Funny

    He only posted a few lines of it, but it reproduced.

  23. Re:Only a few things missing on Tiger Early Start Kit · · Score: 1

    Hi Bill!

    -- Adam Berger

  24. Re: what product reaches 12.0? on Microsoft Plans New Server Products For Office v12 · · Score: 1

    (what product reaches 12.0?)
    Ummm... Emacs, for one.


    Yeah, but less has more!

    $ less --version
    less 378

  25. Re:one has to question the 80% speed claim on Cherry OS Claims Mac OS X Capability For x86 · · Score: 2, Informative

    Rename registers cannot be accesssed explicitly. The processor can use them so that a single named register (say, eax) maps to more than one rename register (say, numbers 7, 13, and 22) in different in-flight (that is, currently-being-processed) instructions. This is useful in the case that you have, say (using ppc assembly because I know it better):

    add r3, r3, r4
    ori r5, r3, r5
    xor r3, r3, r3

    (which puts r3+r4|r5 in r5, and 0 in r3; again, this is just an example, and kinda silly). here, r3 is used six times. For the first instruction, it is read in one context, and then written in another (writing always creates a new context). The ori then uses the r3 in the second context, and the xor uses it in the second context and makes a third. So, using tN as temporary (or rename) register N, this is the same as

    add t0, r3, r4
    ori r5, t0, r5
    xor t1, t0, t0

    The same could be done for the other registers, of course. The advantage of this is that, because the registers are used consecutively less often, scheduling is easier.

    If you're interested in more details, check out (google) Tomasulo's algorithm.

    Summary: Renaming is cool. Everyone does it. But it doesn't help you emulate more registers, particularly.