Slashdot Mirror


User: Lxy

Lxy's activity in the archive.

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

Comments · 986

  1. Lemme think..... on In Stores Soon: Perishable DVDs · · Score: 3, Interesting

    Going from memory here.

    The earlier use of this mentioned in the article used some weird dye that was on the surface of the disc. After the laser hit it, it started a slow process of becoming opaque, and in a few days it was unreadable. Some college students discovered that a product called "soap" mixed with a catalyst "water" removed the dye and made the CD readable again.

    This uses a dye in the middle of the disc, between layers. If air can get in, why can't another solvent? Wouldn't the same technique be true of these discs as well as the previous attempt?

    While the future of non-returnable DVDs is dead in my mind, I'm glad to see that the RIAA is finally looking into "value added", giving me a reason to buy the CD instead of download it.

  2. Ask Slashdot on Is Mac OS X Slow? · · Score: 2

    Every time I post a question about clustering, I get a fury of posts about how I should "imagine a beowulf cluster of these". Sould I take this personally? Are these posters doubting my ability to visualize clustering technology? And what do Natalie Pr0tman and hot grits have to do with anything?

  3. mandatory on PPC Amigas Go On Sale · · Score: 3, Funny

    Amiga.. the only way a /.'er can get a chick.

  4. TCO varies with application on Open Source More Expensive In the Long Run? · · Score: 2

    I hate all TCO studies. I don't care who does it or what they're testing.

    TCO needs to be analyzed on a case by case basis. There is no magic number. Let's look at two companies.

    My company
    Software:

    Wordperfect
    Lotus
    Internet Explorer
    IBM Client Access (for AS/400)
    Groupwise
    Access

    Those are the core apps found on most machines. It's the web based apps and the custom apps that are killers. For instance, we have an 8 way contract with company A to develop an application. It needs SQL Server 2000 to run. That's a lot of cost, but it's split 8 ways. Now, let's get that same app to run on Linux and access a Postgres server. Crap... WE have to foot the cost. No other software, free or otherwise, does what this app needs to do. It needs to be custom. To move out company to a linux environment would be costly. VERY costly. Training and app development would cost us way more than getting screwed by MS.

    Friends's company:

    MS Office/Outlook/IE
    Semi-custom Access program for accounting
    1 NT server, does file and print sharing

    Here we go, linux would be cheaper! This company already is playing with Openoffice and Mozilla, in fact most users have MS Office just to do file conversions occasionally. They want to add a 7th workstation to their domain. They have a 5 user license, so currenly only 5 can be logged in simultaneously. The 6th rotates around, and they make it work. Their accounting app only runs on one computer, so at the very least we'd leave 1 Windows machine untouched. The rest are ready for linux. The PDC becomes a samba server, 6 of the 7 workstations are linux, the 7th just sits running Office and the accounting app as needed. There you have it, zero software cost and they're migrated to open source in a weekend.

    a move to OSS can be done cheaply, or it can be done at a huge cost. Anylize YOUR SPECIFIC REQUIREMENTS, you and only you can determine whether OSS is right for your business.

  5. sitting too close? on Your Eyes Will Melt Out Of Your Head · · Score: 2

    I'm wopndering.. are most monitor problems the result of sitting to close to it? If I sit 16" from my 17" CRT, I get eye strain because of the protons pounding my eyes. If I sit back a few feet, the image becomes smaller but my eyes feel more comfortable.

    Could it be said that a 20" flat panel mounted to the wall above my desk would give me the same results as the 17" CRT without the strain? It'd be 2 ft away, that seems reasonable.

  6. pre-emptive /.ing? on Windows Longhorn Screenshots Available Online · · Score: 4, Funny

    "In other news today, the launch of Microsoft's new conceptual OS, 'Longhorn', was brought to a screetching halt. A band of rebel hackers known only as 'slashdot' has taken measures to stop this OS from ever seeing the light of day. By using advanced DDoS techniques, the rebels have brought the server to its knees, preventing further interest from the public."

  7. I'm going to sue Hotmail on ISP Sued Over Suspended Email Account · · Score: 5, Funny

    Without even so much as asking, they just deleted my account with no backup of my inbox. Because of MSN/Hotmail, I've now lost these amazing oppurtunities to:

    Enlarge my penis
    Enlarge my breasts
    Meet Singles in my area
    Meet Sexy singles in my area
    Meet my former classmates all over again
    Refinance my house at a low, low interest rate
    Consolodate my debt
    Copy DVDs
    Lose weight while I sleep
    Work from Home
    Accept written guarantees of hundreds, if not thousands of dollars
    Get my .BIZ or .INFO domain while it's still available.

    Watch out Bill Gates... I've got about 100 million dollars in lost oppurtunity because of you, and I'm going to come and get it!

  8. This has potential on IBM Wants CPU Time To Be A Metered Utility · · Score: 2

    We're in the process of discussing a move to thin client. We have roughly 500 users. The maintenance costs of wandering around to 500 desks is tremndous. We're looking at going to a central cluster solution. Rather than each department buying a PC for their desks, we simply bill them for their CPU cycles. Those that use more cycles owe us more when it comes time to cluster in more machines. Cost effective in the long run, and a LOT less work for us admins.

    I realize that's not what IBM is proposing here, but the idea of charging for CPU cycles is quite intriguing, especially when it comes time to upgrade your $40,000 box. If you can bill the users for their usage, your upgrade costs go down considerably.

  9. MPEG? on Could CDRW Disks Replace Videotapes? · · Score: 2, Insightful

    Can MPEG really replace VHS? I know, VHS is pretty crappy too, but MPEG seems lossier than VHS.

    I use VCDs quite often, so I'm not dissing MPEG format by any means. I just don't see the attraction of replacing magnetic tape with a lossy format.

    The real solution is cheap DVD-RW.

  10. The title says it all... on Liquid Nitrogen Beats Air Cooling (Again) · · Score: 0, Insightful

    Liquid Nitrogen Beats Air Cooling

    Sorry, but this is high school physics.

  11. Re:umm.... yeah? on Smallest Possible ELF Executable? · · Score: 2

    Yes, but he continues to say that he's using a C library function to END the program, with is how he knocked off 2K+ of space when he wrote it in assembly, forcing incompatibility with othe platforms.

  12. umm.... yeah? on Smallest Possible ELF Executable? · · Score: 2, Insightful

    Basically what the other is saying is that by default, C is somewhat bloated (you need to include massive libraries just to use one function). Writing system level calls in assembly can replace the unnecesary bloat of a library that's only being used by one function.

    I remember this trick wehn I was learning x86 assembly. I wrote a hello world program in assembly. Assembled, it came to something like 35 bytes. In C++, it took over 10K.

    Now, also see the statement that he is abandoning portability, because he's using linux-specific system calls. So, in a nutchell, C++ makes big code that's portable, assembly makes tiny code that's static.

    Did I miss something or was this a long winded article about why assembly is better than C++?

  13. Trip to MIR? on Come on Up (to the ISS) You're the Next Contestant · · Score: 2

    Are these the same folks who were trying to start a game show on the same premise, but the grand prize was a trip to MIR? The show idea got tabled after MIR started growing space fungus and they ditched the thing in the ocean, but it sounds like the exact same thing. /. posted a story on it at the time, I can't seem to find the link.

  14. only 1 feature missing on Indian Linux PDA For $300 · · Score: 4, Interesting

    This thing is pretty impressive. Truly, I only see one flaw.

    It's BUTT UGLY.

    The antequated Palm III that /. uses for an icon is trendier than this beige/off-white case that this thing uses.

    I'm still waiting for a PDA that comes in a titanium cae. Yes, I know I can buy one for $100 or so and put my PDA in it, but seriously... why make a geek toy that looks so ugly?

  15. Re:Famous People? on Google's Search Results Degraded? · · Score: 5, Funny

    More importantly, was the mature content filter off? :-)

  16. Re:What's the plural of virus? on Bugbear Windows Virus Making the Rounds · · Score: 2

    At the very least it's virii, or viruses.

  17. Re:Katz? on High Score · · Score: 2

    As have I. I'm surprised that anyone still reads him at all.

  18. Re:Nice review on Review: Lindows 2.0 Dissected · · Score: 2

    I have installed Gentoo. I've also used the Gentoo Live CD. HOW THE HELL IS THAT FUNNY?????

  19. Re:There's no point to them anymore on Declaring The Death of Metatags · · Score: 2

    Dude, you have issues.

    Google hasn't sold out. They sell ad space, but it doesn't affect the ranking. That's not selling out. Altavista sold out, I'm still pissed at them.

  20. moderation rant on Ballmer Wants to "Stomp Linux" Using MS community · · Score: 2

    To whomever moderated me down as "redundant":

    Do you understand the word "redundant"? DO YOU KNOW WHAT THE WORD MEANS??!?!?!???

    Redundant means that it's been posted before. There are posts about the comment that linux started off bankrupt, but none of them share the same ideas as mine. Therefore, my comment is unique, not redundant.

    IF YOU DON'T LIKE WHAT I HAVE TO SAY, AT LEAST MODERATE IT INTELLIGENTLY!!!!!! Mod me down as a troll, falmebait, overrated, or off-topic. To mod me down with the wrong attribute shows your lack of understanding for the moderation system. It also shows me that you have no business moderating posts on Slashdot, if you don't even know what the term means.

    If you don't like my comment, that's fine. I used humor to express my opinion that MS in morally bankrupt. If you don't agree with that opinion, don't just wildly moderate me down. That shows that you just don't like what I have to say, and can't think of a real reason why. If that's the case, just leave it alone. Someone with a real opinion either positive or negative will moderate me appropritely. By moderating me as redundant when it's the only post of its kind makes me think you're too stupid to be given moderator priveledges.

  21. Re:Ahh Morality on Ballmer Wants to "Stomp Linux" Using MS community · · Score: 2

    Microsoft will crush you too

    All my base already belong to Microsoft, so it wouldn't really be a change, would it?

  22. Re:OT: "OMFG" on State of Online Music: RIAA's Efforts Paying Off · · Score: 3, Funny

    Dude, that was the point :-)

    "OMFG!" implies that it's a complete shock to me. "OMFG!" is my way of using sarcasm(n). It was meant to imply that the the 16 yr old girls who apparently run the RIAA these days have just, like, totally figured out the obvious.

  23. OMFG!!! on State of Online Music: RIAA's Efforts Paying Off · · Score: 4, Insightful

    Imagine that the record companies are supposedly finding success in what we've wanted all along.

    The answer has not been to stomp out the P2P networks. They will always be a fact of life, especially as consumer bandwidth gets faster. The answer is to look at this new technology and figure out how to embrace it as a business model.

    P2P networks have flaws. Most kiddes can't label their MP3s correctly. Inevitably, The 1 person who has the song you're really looking for is on dialup. It goes on and on, but with P2P, you get what you pay for. Having a centralized pay for download service overcomes these issues. By paying a hosting company to host your MP3s, you're almost guaranteed good download speeds and properly labeled MP3s.

    Now, if they RIAA had listened back in 1998 when people were telling them this, maybe they wouldn't be so hated.

  24. Re:And uhm.. after that? on Ballmer Wants to "Stomp Linux" Using MS community · · Score: 5, Funny

    If they stomped BSD, then where could they get code from?

  25. Bankruptcy on Ballmer Wants to "Stomp Linux" Using MS community · · Score: 2, Redundant

    Linux will always be financially bankrupt.

    Microsoft will always be morally bankrupt.

    So, "in a way", hasn't Microsoft always been bankrupt?