Slashdot Mirror


User: p3d0

p3d0's activity in the archive.

Stories
0
Comments
3,023
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3,023

  1. Re:Laughable assertions on Defending Open Source Security · · Score: 1

    Indeed, but if my government blindly accepted and used your binaries, I would be mighty upset.

  2. Re:Mirror on Mozilla Firebird gets .8 Release, and New Name · · Score: 0, Offtopic

    Question: how can one trust a BitTorrent link from an untrusted source? What's the best way to ensure you're getting the real deal?

  3. Re:Why I'm not surprised... on BBC Links Linux To MyDoom · · Score: 1
    A little bit of reality check here: you are comparing /. comments to a BBC article and expect them to follow the same journalistic integrity?
    No he's not. He's explaining why the BBC's impressions of the Linux community may not be unfounded.
  4. Re:Right, that's his real name. on Author signs MyDoom virus · · Score: 1

    Dude, the joke is over.

  5. Re:Good for Cameron, NASA, and us on James Cameron's Illustrated Mars Reference Design · · Score: 1
    Oh, ok, so it wasn't a cut-and-paste job. But I still don't understand the "better movies" angle. Are you talking about that one reference to a "3-D movie"?

    Thanks for the explanation.

  6. Re:Good for Cameron, NASA, and us on James Cameron's Illustrated Mars Reference Design · · Score: 1

    I think you cut and pasted that comment into the wrong article. This is not about Cameron going into space. It's about commissioning drawings.

  7. Re:Connective tissue on Scientists Create New Form of Matter · · Score: 1

    Uh, no it didn't. Read the parent post he replied to, not the grandparent post.

  8. Re:Litigious Bastards! on Linus Speaks Out, Calls SCO 'Cornered Rat' · · Score: 2, Informative
  9. Web site terms of use on Microsoft Launches RFID Software Project · · Score: 2
    I just have to link to these RFID boneheads because their web site's terms of use contain the following absurd little nugget:
    You may not link this site with any other site without the prior written consent of SMARTCODE Corp.
  10. Re:separating content and presentation on Developing a Standards-Compliant Web App? · · Score: 1

    So what exactly is your advice? Basically do a bit of everything, but not too much? I don't see how that's helpful.

  11. Re:Standards Compliance on Developing a Standards-Compliant Web App? · · Score: 2, Interesting

    You're right, of course, but I think she was talking about web applications, where most people's browser doesn't support the standards. This problem is far worse with web apps than with Scheme, Java, or C++, although the latter did suffer severely with this problem a while back.

  12. Re:REPLY to this if you are a C/C++ programmer on Athlon64 Motherboards And Chips Compared · · Score: 1

    I can't think of any reason a game would use 64-bit integers. The advantage of AMD64 for games would be from the extra registers.

  13. Re:doing it right on Joel Rants About Resumes · · Score: 1
    Plural possessive should be spelled " peoples' ".
    Only for something that belongs to several peoples. In the sense it was used, either "people's" or "persons'" would be correct.
  14. Re:!opteron == no dual proc on Athlon64 Motherboards And Chips Compared · · Score: 1

    That's great advice, since clearly there couldn't possibly be anyone who would want a uniprocessor machine.

  15. Sheesh on Athlon64 Motherboards And Chips Compared · · Score: 1

    Some dingbat makes this argument every time computer performance is mentioned. I swear I'm going to start making all you dummies as Foes.

  16. To anyone worried about this image... on Microsoft Patenting Office XML Formats · · Score: 1

    The image is just a man's face.

  17. Re:6502? Not a chance on Are 64-bit Binaries Slower than 32-bit Binaries? · · Score: 1
    If everything else were the same, an 8-bit CPU would blow the pants off of a 32-bit CPU, for benchmarks that don't need more than 8 bits.
    Explain it to me: where does the speed come from?

    I can think of only one way in which a souped-up 6502 would beat a 32-bit processor: the 6502's pointers are only 16 bits. That makes the data structures smaller. Therefore, if you can find a 6502 program whose data structures fit in 64KB, but don't fit in the 64KB L1 cache of a modern 32-bit CPU, and doesn't suffer from the suffocating lack of registers, and spends most of its time doing 8-bit math, then the 6502 might have an advantage on that particular program.

    In other situation, to say the 6502 would beat a moden processor is pure nostalgia.

    A 64-bit processor isn't going to be inherently faster than a 32-bit processor, except for code that needs 64 bits.
    By similar logic, a 32-bit processor is likely to be inherently faster than an 8-bit processor on any code that "needs" more than 8 bits, which is practically all code.
  18. Re:There's always a trade-off on Are 64-bit Binaries Slower than 32-bit Binaries? · · Score: 1
    The fastest 64-bit AMD is rated 2.0ghz while the fastest AMD 32-bit is 2.2ghz.
    First, that certainly doesn't mean the 64-bit chip is slower. AMD is not like Intel: they don't focus their design on stratospheric clock speeds, but on overall performance. The K8 core is faster cycle-per-cycle than the K7.

    Second, there is a 2.2GHz Opteron, as these SPECjbb2000 results show.

    Third, even if there weren't, Moore's law tells us that a 10% clock speed difference amounts to, what, 11 weeks? So the K8 would be caught up by April. So who cares?

    Using modern technology to build a 386 chip would result in one of the highest clock speeds ever but it would be practically useless.
    This doesn't make any sense. If you use modern technology, it's not a 386, it's a Xeon. That's what a Xeon is.

    Maybe I just don't understand what you're saying.

  19. 6502? Not a chance on Are 64-bit Binaries Slower than 32-bit Binaries? · · Score: 1
    A 2GHz 6502 would be a screamer.
    Ok, let's think about this. For starters, the 6502 needed something like 2-8 clock cycles per instruction. In contrast, the Athlon 64 can execute 3 instructions per cycle.

    Besides, you couldn't possibly run a 6502 at 2GHz with today's technology. The chip is not pipelined, so there is way to much logic to complete in each 500ps clock cycle.

    Even if you made a new 6502-compatible design that runs at 2GHz, it only had one 8-bit general-purpose register, so to do any useful math would require a lot of arithmetic instructions and a hell of a lot of spills. And where would these spills go? The stack is only 256 bytes.

    Want to multiply two 32-bit numbers? Be prepared to do 16 individual multiply operations. And guess what? 6502 has no multiply instruction, so each of those 16 multiplies requires a series of shifts and adds. Plus, the result of each multiply is 16 bits long, so it won't fit in your one GPR. You either need to keep part of the result in memory or in one of the index registers, and either of those is painful. I remember tuning an 8 x 8 -> 16-bit multiply and getting it down to about 200 clock cycles, and that was the best I could do. So, you can expect your 32 x 32-bit multiply to take something like 3000 clock cycles and involve dozens or hundreds of loads and stores.

    The moral of the story is, almost every architectural difference between the 6502 and modern CPUs exists for one reason: speed. Still think a 2GHz 6502 would be a screamer?

  20. Re:Flash Speed on Photographing Exploding Edibles · · Score: 1

    A millionth of an inch? The rifle bullet is only travelling about five times the speed of sound, so you only need to move the microphone one inch for each five inches the bullet moves. The electronic tuning might still be easier, but it's not really necessary.

  21. Re:Flash Speed on Photographing Exploding Edibles · · Score: 1

    No need for an electronic delay, I think. Just put the microphone in the appropriate place. The bullet travels faster than the sound anyway.

  22. Re:64 bit embedded processors? on Effect of Using 64-bit Pointers? · · Score: 1

    Yes.

  23. Answer: yes on Effect of Using 64-bit Pointers? · · Score: 2, Interesting
    A while back, I was looking into more efficient heap storage of Java objects, and found that the heap of a variety of Java programs consist of about half pointers and half ints. The next most common type was booleans, and they were under 1%. Everything else was vanishingly small.

    Thus, you can expect Java heaps to expand by about 50% when moving from 32-bit to 64-bit pointers. What effect this has on your program's performance depends on the relation between the program's resident sets and the machine's cache. For instance, if your program has a resident set of 200KB on a machine with a 256KB cache, then the extra 50% will blow the cache and kill your performance. If the resident set were 150KB, the performance impact would probably be minimal.

    Disclaimer: I was doing this as a pet project in my spare time, so take these numbers with a grain of salt.

  24. Re:2 bad... on Crack the Code and Win a Million Bucks · · Score: 0

    Did you read his business proposal?

  25. Re:good for everyone on 64 Bit Athlon Notebooks Hit the Market · · Score: 1
    Neither does it change the simple fact that the processor has twice as many architected registers, and so will likely show a substantial performance boost from a simple recompile (assuming the code is 64-bit clean).

    Point taken though.