Slashdot Mirror


User: dnoyeb

dnoyeb's activity in the archive.

Stories
0
Comments
2,086
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,086

  1. Re:Repent, Sinners! on Windows Upgrade, FAA Error Cause LAX Shutdown · · Score: 1

    You have to love a system that requires downtime as part of uptime.

    Yea, i gotta go through 4-5 hours of downtime every day. And I'm only getting worse...

  2. Re:Security Functionality on AOL Moves Beyond Single Passwords for Log-Ons · · Score: 1

    naa, the advantage of using AOL is the perceived customer support. I thought MCI tought us years ago that large ISPs couldn't provide anywhere near the support of small ISPs. But some don't learn.

  3. Re:Security Functionality on AOL Moves Beyond Single Passwords for Log-Ons · · Score: 1

    I see a lot of merchants using yahoo for their transactions. Maybe this is aol trying to get into the same.

    Also I know Ford uses this technology for remote logins.

  4. Re:Yes but.... on Is "Marketingspeak" Killing Technology? · · Score: 1

    Man, I been hearing this phrase for about 10 years now. At first I thought I would pick up the meaning like any slang term I did in my youth (ebonics).

    It never happened. Finally I realize its because nobody knows what the hell it means and just throws it in wherever...

  5. Re:Mature industry on Is "Marketingspeak" Killing Technology? · · Score: 1

    oh, then whats a monologue?

    or were you making some deep joke about diarrhea and speech?

  6. Re:Press Release... funding on Antarctic Telescope? · · Score: 0

    Yea, I heard this claim probably 6 months ago. 'Software' algorithms could compensate for the effects of the atmosphere. (probably by using data gather by Hubble)

    I'd be more than willing to pay for this if they would offer a money back refund.

  7. Re:Wrong on Mambo Users Threatened · · Score: 1

    but his point is not about distribution. His point is that the derived code belongs to the deriver, and can not be appropriated in the name of the GPL because the GPL lets him keep it.

    The point is, if he distributes the work, then the source must become available and useable. If he does not, then the source is his own.

  8. Re:bad presumption.... on Cringely: MS To Hurt Linux Via USB Enhancements · · Score: 1

    The consumers do have a certain expectation about technology. If a CD fits into it, they think its a CD player. If it don't play, they think its broken.

    Pretty simple.

    In my experience, people expect more from their high tech devices that they don't understand, not less.

  9. Re:stupid response #1 on Lexar JumpDrive Password Scheme Cracked · · Score: 1

    Or Jesus of Nazareth "We heard him say, I will destroy this temple that is made with hands, and within three days I will build another made without hands."

  10. Re:I don't understand... on SVP : More Video Anti-Copying Technology · · Score: 2, Insightful

    i think he was suggesting that since they intend to block both illegal and legal copying, anti-piracy is not the right term.

  11. Re:Complicated Treo? on Treo Bluetooth Bounty Efforts Unsuccessful · · Score: 2, Funny

    Since they offered $5000 for it? LOL

  12. Re:Misleading on Mushroom Cloud Reported Over North Korea · · Score: 1

    probably because a conventional explosion of that magnitude would be near the practical end of deliverability in a missile. But a nuclear explosion could be ratcheted up much easier.

  13. Re:Controlled/Monitored Networks on NYT Promotes File Sharing · · Score: 1

    naa, what this will do is ensure only major companies can ever comply with the regulations to run p2p networks. Thus squeezing out the little guy.

    Then come the advertisements and fees.

  14. Re:Do you really watch fox news? on Third-Party and Independent Ballot Status · · Score: 1

    I guess we can also blame it on the media that you think of Nader as the 3rd party candidate.

    I was under the impression he was running as an independent. Ignoring his former party the Green Party, and running even against their candidate.

  15. Re:RTFA. on Busted For Using Library Wi-Fi Outside The Library · · Score: 1

    Its kind of like a woman walking down the street naked and me receiving a ticket for being a peeping tom.

    I think its silly to ask the law to do something that you can do yourself quite easily.

  16. Re:Bloody shame they were pressured... on XM Radio Pulls PC Hardware · · Score: 4, Insightful

    XM is not in any position to expend any amount of money on law suits or even legal wrangling. They will probably revisit this 5 years out...

    Did they ever hang that new satellite?

  17. Re:oh please on Open-Destination Quantum Teleportation · · Score: 1

    because the speed of light is the speed of time?

    How about, send messages from one time reference to another? The part I dont get is how anything can cross time references without making up the difference?

  18. Re:But it's still mechanical. on New Lubricant Leads To Faster Hard Drives · · Score: 1

    The current solid state storage technologies are optimized for cost not use cycles. So while they can take enormous number of reads, they have limited number of writes. This is probably why the palm pilot does not have a replaceable battery. When the battery is dead the life of the ROM is probably over as well.

    If you get a flash drive/pen drive/ whatever, don't presume to use it like a harddrive. You will kill it within the year.

  19. Re:Implementation is important on The Python Paradox, by Paul Graham · · Score: 1

    there is a java compiler. you can analyze the java byte codes produced.

    with c you have to worry about the OS and the CPU, with java you have to worry about the JVM. same difference.

  20. Re:Maybe because it's slow ? on Why is Java Considered Un-Cool? · · Score: 1

    Another point i wanted to add is that Netbeans and Eclipse have both botched their GC behaviors. Both seeming to hope the JVM creaters magically create a awesome Garbage collector.

    But sun has stated that this is not possible because the JVM can not know what the app or user is really doing and that running the GC should be handled by the application.

    For me, its obvious. You run the GC in a seperate thread when all other tasks are idle. If you do not the JVM will run the GC when it gets full and bring your app to a screatching halt! Or you can do what server mode does and run the GC all the time slowing down your app all the time.

    Bad decisions makes bad performance. Why Sun cant write an app to take into account the philocophy of GC of their JVM is beyond me...

  21. Re:Maybe because it's slow ? on Why is Java Considered Un-Cool? · · Score: 1

    Typically any slowness has been tied to poor garbage collector usage, and/or poor understanding of Swing.

    I believe Java 'appears' so easy to write in, it entices people to write apps that really do not know what they are doing.

    Apps I have written in Java going back about 8 years have run just fine and have had no speed issues.

    New Java versions are bringing speed because they have improved GC behaviors, but still people need to write good code.

  22. Re:Why is Java Considered Un-Cool? on Why is Java Considered Un-Cool? · · Score: 1

    Platform independence is not a load of crap. Its a Job that somebody has to do. And in the case of Java that somebody is Sun, or whoever writes youu JVM. So while you may have to make some allowances, using Java simply means you have a whole team of people working to make the JVM itself cross platform, and you can easily piggy-back on that effort. Or you can roll your own in another language. Choice is yours.

    I'll take CLASSPATH over header files _ANY_ day.
    Sure, both are just as workable, but I find CLASSPATH issues easier to diagnose than header ones, especially in libraries.

    I can NOT disagree with you where the Java versioning is concerned. Sun is FOS. They publicly claim backward compatability, but when you submit your bug report and ask how in the hell its backward compatible with this altered behavior, don't expect a response...

    When they say backward compatable they mean the specifications. But they completely ignore the ongoing deviations.

  23. Re:Also Speed on Why is Java Considered Un-Cool? · · Score: 1

    Actually, Java can be just as fast as C or C++ code in the right situations.

    Java is exactly as fast as C or C++ because its JVMs are written in C or C++.

    Its like arguing that assembly is faster than C. Its not because they are not comparable.

  24. Re:Also Speed on Why is Java Considered Un-Cool? · · Score: 1

    Let us also not forget that Java JVMs are written in C or C++ or objective C or whatever you like, so the whole Java vs. C speed comparison is illogical.

  25. Re:ICQ on How Google Could Overthrow AIM · · Score: 1

    me 2. but my number was stolen through the lax security of Yahoo mail which i had switched my email address too.

    yahoo nor icq could give a rats ass either, and they both threatened me and told me not to mail them. Rude loosers. Thats when I stopped using it.