Slashdot Mirror


User: tahirbond

tahirbond's activity in the archive.

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

Comments · 5

  1. Re:RPMS are universal on Is Red Hat the Microsoft of Linux? · · Score: 0

    ( (Recursive Package Mangager)Package Manager)) Package Manager) ) ?

    Uhuh, ...((RPM Package Manager) Package Manager) Package Manager... ad infinitum.

    Recursive acronyms do not have any expansion for the prefix that causes recursion. BTW, did you score your own post?

  2. Re:RPMS are universal on Is Red Hat the Microsoft of Linux? · · Score: 0

    To add to this, RPM is now RPM Package Manager.

  3. Re:Hmm on The Last Place · · Score: 0

    Yes, if you was born in Islamic country then i'm sure you wont find it funny...

    Why's that?

  4. Re:0. on 10 Reasons We Need Java 3 · · Score: 0, Troll

    Betcha this one's a VB coder!

  5. Re:Serious features seriously needed on 10 Reasons We Need Java 3 · · Score: 1

    I think theres' a lot more thought that should go in the design of VMs. Now that the code doesn't have any architecture specific smarts, it's up to the VM writers to find the best ways to utilize a specific architecture's strong points and work around weaker ones.

    A case in point is the performance of Sun JVM in Linux. We once had a bare-bones servlet runner that did DB connection pooling through threads. The code ran ~ 10x faster on Windows than on Linux. Later analysis showed that the Linux VM was spawning a new process for every thread!

    Some one recommended using IBM's JVM but we never came to that.