Slashdot Mirror


User: emarkp

emarkp's activity in the archive.

Stories
0
Comments
420
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 420

  1. Re:Intel fanboys around the world do a 180... on Intel Releases New Pentium M Processors · · Score: 1

    Alternatively, it's possible that even Intel fanboys around the world have come to realize that clock speed isn't the only (or even most) useful metric. Intel wouldn't ditch GHz if the marketing team could successfully use it.

  2. Re:fascinating on 526 Years On, Da Vinci's Clockwork Car Constructed · · Score: 2, Interesting
    Yes, the Greeks knew the world was round because the shadow on the moon during a lunar eclipse was always round. Also, a greek librarian (Eratosthenes of Cyrene) figured out the size of the Earth from his books and a little measurement.

    Columbus' success was based on two things: 1) He vastly underestimated the size of the Earth (even compared to other estimates of the time) and 2) got really lucky that the Americas were in the way.

  3. Re:Polyethylene Glycol? on Military Develops Liquid Body Armor · · Score: 4, Informative

    Not only is it "non-toxic", but it's an ingredient of one of my favorite carbonated beverages, Dr Pepper.

  4. Re:So? on Satellites Show That Earth Has a Fever · · Score: 1

    And we are the product of a big rock doing that same thing about 65 million years ago. What might come if we get wiped out?

  5. Re:To boldly split the infinitive on Berman Confirms Star Trek Prequel Film Project · · Score: 1

    Oops. Mean to post this link.

  6. To boldly split the infinitive on Berman Confirms Star Trek Prequel Film Project · · Score: 2, Informative

    Fortunately English isn't Latin, and we can feel free to boldly split the infinitive.

  7. Re:full C compatability? on C, Objective-C, C++... D! Future Or failure? · · Score: 2, Interesting
    I think the "full C compatability" is a problem. It's -not- a feature.
    Actually it's both. C compatibility leads to early and widespread adoption, but it also carries tons of baggage--at least that's been the case in C++.

    One of the biggest problems in C++ is backwards-compatibility with integer promotion rules. It appears to cause more confusion than templates and name lookup combined.

  8. Re:Biased Article ? on Positive Reviews For Nvidia' GeForce 6800 Ultra · · Score: 1
    Wouldn't that mean that the limiting factor for fps is NOT the card but some other thing (processor, memory bandwidth) ?

    Not necessarily. It could be a fill rate issue, but more likely with DirectX 9 games you're seeing the performance of the pixel shaders. For instance, Halo on the PC is very sensitive to resolution because of heavy pixel shader use, and you can see that in the benchmarks.

  9. Debian is easy to install on THG On Migrating To Linux · · Score: 1
    I just installed Debian to replace Mandrake 9, and it was far easier to install.

    Of course, I installed Knoppix and then installed to the hard drive. But I didn't have to go through the tons of menus in Mandrake to select packages, hardware, etc. Knoppix just worked.

  10. Alienware graphic chipset upgrades on Dell's Gaming Monster · · Score: 2, Interesting
    When you want a better video card in 2 years, then you have to go spend another $3k for a whole new laptop.
    At least Alienware is offering a video module that you can change yourself.

    I'd love it if an OEM produced a standard form-factor laptop that could swap all (or most) of the components, even if it was bulkier/heavier. More people are using laptops as desktop replacements (or 2nd computer) and would like this (I've counted 10+ at our office who would buy something like this if it were available and somewhat reasonably priced).

  11. Performance laptops not just for gaming on Dell's Gaming Monster · · Score: 1
    At my company, we write scientific simulation software using OpenGL for visualization. We need a fast CPU and powerful video card (with good drivers). A good laptop solution is what some people want, and when they're paying $50K+ for each license, a $3K laptop vs. a $2K desktop is chump change to them.

    We've found that the gaming laptops have just the right combination of CPU/Video power.

  12. Re:Can't Outsource me on Outsourcing As A Source Of U.S. Jobs · · Score: 1
    The outsourcing only spells the end to abundant positions as low level code monkeys.
    And unfortunately, there go the entry-level positions that help train people to be software architects.

    Where will we get our next generation of engineers and architects? Hint: once all the low-level positions are outsourced, who will get trained for the advanced positions?

  13. How many registrations? on Opera Browser Creators Planning IPO · · Score: 2, Insightful
    Apparently enough to grow their revenue by 108.7%. Well, registrations plus embedded sales.

    I have registered version 6 and 7. See, I'm supporting software I use and love. My only complaint is that they don't have a port to PocketPC.

  14. pseudo-compiled languages can't fix logic errors on How C# Was Made · · Score: 1
    In many cases, pseudo-compiled languages, or languages that use a VM are a better choice. No worrying about memory management, buffer overflows, etc.
    Memory management (GC, smart pointers, etc.) are all available with C++ right now. Buffer overflows are logic errors, not syntax errors. Learn to write correct code and you won't get a silent buffer overrun or a thrown exception (available in C++ as well, see std::vector::at() member function). The biggest problem with all GC languages I've seen is the issue of lifetime management. I don't care so much about when memory is reclaimed (that is after all just a resource the OS should manage). I do care when the object's life ends--it is then that the object must take care of any logic that must follow if it is going away. The C# model is that once you're being garbage collected, you have no guarantee about any object which you might have a reference to. Hence you need to differentiate between being disposed of by the program vs. by the system. Oh, and if you want to check that reliably, you need to worry about muliple threads disposing of the object, etc. Some of the most exciting developments I've seen in the C++ community arise (ironically) with Herb Sutter's suggestions about how to make Managed C++ better (that is, make a C++ variant that is GC friendly). He separates the ideas of lifetime management and memory management. And although I disagree with some of his conclusions, he clearly gets it.
    There will always be a place for C and C++ in places where you *NEED* low-level control over things like memory management, or where performance is very critical. But for most applications, this is simply not the case. You want a language that can do all you need it to do, and you don't want to worry about the rest of the details.
    But I don't worry about details in C++ anymore. And haven't for several years now. The problem with languages which "take care of the details" is that they don't let you take care of the details. I much prefer an expressive language which allows me to do what I need to with minimal fuss, but lets me get into the details if necessary over a language (or environment) which ties my hands. Especially when it really doesn't fix things, like Java's null-pointer exception, or C#'s brain-dead 'using'.
  15. Why I didn't play the demo, buy the game, etc... on Uru Live Cancelled, Expansion Packs Promised · · Score: 1

    The first time I tried to play it I got the BSOD. I don't give programs a second chance once they do that. Period.

  16. Eureka Phenomenon on 'Just Sleep On It' Solves Tricky Problems? · · Score: 1
    Isaac Asimov wrote about this 30 years ago and called it the "Eureka Phenomenon" referring to Archimedes' discovery about water displacement, and I've found it to be true. IIRC he compared it to letting your autonomous functions control breathing instead of trying to control your breathing conciously.

    Also he said (again IIRC) that to turn off his conscious brain and let his subconscious work he'd watch a brainless action movie.

  17. Re:HL2 should not have been #1... on 2003 Vaporware Awards · · Score: 1
    HL2 had the source code stolen thing, and that's an understandable delay in shipping.
    Sure, except that steam (Valve's online gaming/distro network which replaced WON and patches) sucks rocks, and no one in the community with a brain expected an on-time ship date.

    I'm betting HL2 is vaporware for 2004 as well.

  18. Extremely Timely on Obtaining Replacement Parts for Your Laptop? · · Score: 1

    Just last week my Compaq Presario 2800T display failed (after about 18 months). That is, I was opening the lid and saw 1/2 of the pixel columns disappear (actually went to mid-level gray I think). I'm pretty sure it's just the cable connection. I bought it nearly-new from another person, so an extended warrantee wasn't an option.

    I checked where the nearest service center is, and the phone message listed the two Radio Shacks in town (I'm in a smaller city in Northern California--about 100,000 people). Yeah, like I'm going to trust my $1800 laptop to the guys at Radio Shack. Sure.

    I checked the parts list, and my screen is a 1400x1050 (SXGA+) display, so replacing it would cost nearly $1000. If that's the cost to fix it, I'll end up getting a replacement, and give this to my wife as her machine (hooked up to monitor, etc.). You can bet the replacement won't be from HP/Compaq. I would have purchased a Thinkpad in the first place, but I can't stand that stiking eraser-head of a mouse interface.

  19. Re:bin laden.. on Saddam Hussein Arrested · · Score: 1
    The War is illegal because it was never declared. In a legal sence, the United States of America has only been at war with Iraq one time. 1991. Since then we've bombed a soverign state for shits and giggles, but haven't really declared war. War has fairly cristiline properties in international law.
    And because Saddam didn't comply with the treaty that ended that war, we were still at war.
  20. 1,054 users? on RIAA Extends Legal Action · · Score: 2, Funny

    Actually it was just one user sharing 1,054 files. For a total of 1,054 user equivalents.

  21. I've had my DVR for over a year now... on Will TiVo Destroy Ad-Supported TV? · · Score: 1

    ... and a 30-sec forward button. All I have to say is: TV has ads?

  22. Re:Ummmm...I don't think so! on Magnetic Induction Technology Headset Reviewed · · Score: 1

    Sounds like a bigger reason to have a magnetic bubble around your head to me...

  23. Good grief on AT&T Sues PayPal and eBay for Patent Infringement · · Score: 3, Funny

    I e-think I'm going to be e-sick.... (apologies to Foxtrot)

  24. Re:Microsoft = freedom?? on Brazil Moves Away From Microsoft · · Score: 2, Funny

    Of course, when I make a significant change in Linux, I have to recompile the FSCK'ing kernel.

  25. Re:Lots of them here on What's the Worst Job Posting You've Seen? · · Score: 1

    Yes. A CEO should be paid based on the value he adds to the company, not based on how hard the work is, or how many hours he works. A good CEO adds huge value to the whole company.