Slashdot Mirror


User: mypalmike

mypalmike's activity in the archive.

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

Comments · 706

  1. Stop the presses! on Verizon's Aggressive New Spam Filter Causing Problems · · Score: 1

    This is a major PR issue! I'm sure if you contact them, the New York Times will run a front page article about the lack of a guaranteed response time for Verizon's whitelisting service. That is, unless anything else at all happens on the planet today.

  2. Re:NIMBY on Tilting At Windmills · · Score: 1

    Everybody wants cheap renewable energy, nobody wants to have it generated in their own back yard.

    Actually, I'd be thrilled if my back yard was large enough to site a windmill for personal energy generation.

  3. Re:Saw it last night on Ebert Reviews 'Silent Hill' · · Score: 1

    But didn't you like the headless nurses with big boobs minigame scene? Brilliant stuff.

  4. Re:Could it be... on Run Windows Applications Natively in OS X? · · Score: 1

    Really the most shocking part of this whole article is the fact the Cringely said something that actually kinda makes sense. I guess a stopped clock really can be right once in a while.

    Comparing Cringely to a stopped clock is an insult to stopped clocks everywhere.

  5. Re:sucks on G4 Moves Further From Technology Roots · · Score: 1

    "Wasn't Spike TV supposed to be the channel for men?"

    What, we only get one? You guys have Lifetime, that Oprah channel, and that other one whose name escapes me at the moment.


    I think you are referring to the Estrogen channel.

  6. I'd download it... on Ubuntu 6.06 'Dapper Drake' Beta Available · · Score: 4, Funny

    But I'm still waiting for the last Ubuntu release to finish compiling on my computer!!!

    Oh, wait... Wrong distro joke.

  7. Texas is the reason on Microsoft, Autodesk Guilty of Patent Infringement · · Score: 1

    A Texas jury has awarded $133 million in damages

    In this world nothing can be said to be certain, except death in Texas. - Oscar Wilde

  8. Re:Where does all that money go? on Facebook Raises Another $25M · · Score: 1

    I have to wonder what exactly is the money spent on? Does anyone know?

    I know. The answer is http://www.hermanmiller.com/aeron/

  9. Re:Xbox is for fratboys...? on Xbox 360 Doesn't Want To Be Hardcore · · Score: 5, Funny

    Nintendo's for people with good taste and who appreciate the finer things in life.

    Darling, don't forget that after the polo match, we have dinner with the Addisons, then cocktails on the veranda, followed by the fundraiser at the Museum of Modern Art, and then the Pokemon tournament. Don't forget to bring a couple bottles of Dom and the DS.

  10. Re:Isn't Duo Core an SMP system? on Dell Aims for Gamers with XPS M1710 · · Score: 1

    I thought it just distributed the workload as evenly as possible across the two processors regardless of how many processes are running. That's wouldn't really lead to a game on one proc and scan on the other proc scenario the article implies, or am I missing something and/or assuming incorrectly?

    To some extent, you are correct: it isn't a simple one process to one processor mapping. Indeed, any modern OS has many processes that need to get CPU time on occasion. However, if you have 2 processes that are CPU-bound, a dual-proc machine will have CPU available for each most of the time - they will spend much more time running than waiting in the OS scheduler. So it works out to each having roughly the equivalent of a dedicated processor.

  11. The sequel we're really looking forward to... on LucasArts Aims for #1 · · Score: 1

    Rescue on Fractalus II.

    No, seriously.

  12. Re:apes? on Missing Link Found Between Human Ancestors · · Score: 1

    To be even more accurate, the apes are subdivided into two groups; the great apes(humans, chimps, gorillas, etc) and the lesser apes(gibbons)

    You missed the third category. The great grape ape.

  13. Re:Too little momentum on Sun Opens Modeling Tools · · Score: 1

    You aren't getting it then.
    What's this "it" that I don't get? I was simply saying that Eclipse is an IDE for Java development. I was responding to someone who seemed to think it was primarily a "gateway drug" to WSAD. None of the developers I've worked with see it this way.

    Eclipse is an application framework that makes developing applications (I mean complete end to end applications) much easier.
    Indeed. We use the Eclipse framework for our GUI applications. Like you said, not WSAD applications. But when a developer tells me he's using Eclipse, 99% of the time they mean the IDE.

  14. Re:Freedom and Liberty on Global Warming Dissenters Suppressed? · · Score: 2, Funny

    Is everyone on Slashdot insane?

    You're new here, aren't you?

  15. Re:None conformist on Global Warming Dissenters Suppressed? · · Score: 2, Funny

    the surrounding area suffered more dessertification

    Indeed. Several bushes near the Altamont Pass wind farm turned into ice cream sundaes, and some of the rocks became chocolate chip cookies.

  16. Re:Too little momentum on Sun Opens Modeling Tools · · Score: 1

    Eclipse is not what you may think it is. Eclipse is the community front-end for the expensive IBM WSAD environment.

    I find your definition odd. Eclipse is an IDE for Java development. My team and I use it to develop server applications, JBoss services, and SWT - based GUIs. At a previous job, I worked with people who were using it as a C++ development environment. I actually had to google for "WSAD" to even know what you were even talking about.

  17. Re:Fairly simple fix on D-Link Firmware Abuses Open NTP Servers · · Score: 1

    He could change the DNS name, but then every legitimate user would have to change their configuration, and there's no guarantee D-Link wouldn't just update the firmware with the new name.

    How many end users actually update their router firmware, or even know what that means? Even if D-Link makes a firmware update, he will still have all those non-updated routers banging on his ntp server. I'm not saying he shouldn't try to push D-Link (legally or through bad PR) to fix their firmware - they should. But server administrators who run BGP sessions to DIX are far more likely to fix their ntp configuration than several million home router end-users, disbursed globally, who aren't even aware there's a problem.

  18. WiFi, not Cash on Google/Earthlink Wins San Francisco WiFi Deal · · Score: 5, Funny

    The project, championed by Mayor Gavin Newsom, is intended to boost the city's technology credentials and help bridge the digital divide between the Internet haves and have-nots.

    The folks sleeping on the streets of the Tenderloin want their WiFi!

  19. The actual claim on the website on New 25x Data Compression? · · Score: 1

    "1. Reduces backup storage capacity 25X or more!"

    So, after you buy their product, you'll have less backup storage capacity than you had before.

  20. Re:I love this on The 2006 Underhanded C Contest Begins · · Score: 1

    >> I wish there was a nice library function 'char *readfile(stream)' in ANSI C

    > Again, try getline. Really, none of this is hard, unless I miss your intentions.

    His intentions are clear. ANSI C. Right there in the sentence you quoted. getline is C++.

    Now post C code for implementing the same functionality, making sure it's O(n log n) in time or better, where n is the number of characters in the stream, which you don't know in advance. The parent obviously recognizes this as a nontrivial problem, whereas you don't. Who's the "real" programmer?

  21. O the uname -a tee! on Unisys Smoking Hot Demo at Linux World Boston · · Score: 1

    uname -a | tee > o

  22. Goodby DVRs on Life or Death for Tivo · · Score: 1
  23. Re:Some other expensive technology... on World's Most Expensive Mp3 Player · · Score: 2, Informative

    The Dreamcast computer game Shenmue cost $20 million to develop

    "Enter the Matrix": estimated $30 million
    http://www.armchairempire.com/Reviews/PC%20Games/e nter-matrix.htm

    "Daikatana": estimated $25 million (from an article on my former employer, LGS)
    http://dir.salon.com/story/tech/feature/2000/06/20 /dark_glass/index.xml

  24. Journalism on 10 Million Nintendo DS Units Sold Since Launch · · Score: 5, Funny

    Forbes:
    "With more than five million units sold in Japan since its December 2004 regional launch, the DS has become the fastest-selling gaming machine in the country's history. Japanese gamers have also bought more than a million copies of four different titles within one year of the system's launch: Nintendogs--a game where users play with, train, pet, and wash a virtual dog, Animal Crossing, Wild World, Brain Age, and Brain Flex."
    - Chris Noon

    Gamespot:
    "With more than 5 million units sold in Japan since its December 2004 regional launch, the DS has become the fastest-selling gaming machine in Japan's history. In another first, Japanese gamers have scooped up more than a million copies of four different titles within one year of a system's launch: Nintendogs, Animal Crossing: Wild World, Brain Age, and Brain Flex."
    - Tim Surette

  25. Smiles all around on Panasonic R&D 'House of the Future' To Open · · Score: 1

    This is exciting news. Perhaps Panasonic's US R&D division employees can use their Christmas bonuses to go visit the new facility.