Slashdot Mirror


User: aled

aled's activity in the archive.

Stories
0
Comments
1,216
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,216

  1. What, no Darkstar? on Space.com's Top 10 Space Movies of All Time · · Score: 1

    Darkstar surely deserves a place in a top 10. Apollo 13 first? this is nonsense. First Contact above Khan? come on!!!

  2. Re:Why do we need a remake? on The Prisoner To Be Remade On U.K. TV · · Score: 1

    Battlestar Galactica is about the only good remake

    I still don't understand what people see in the remake of Galactica. I see that it has a lot of fans here, but IMHO is the worst show I'd seen in the last years.

  3. Re:In Sunni-controlled Iraq... on Computer Translator Ready for Testing in Iraq · · Score: 1

    This is almost unbelievably. This so much Philip K. Dick that I doubt if we are in the "real" reality or some virtual simulation of one of his stories.
    Don't know if cry or laugh.

  4. Re:The Minutes Of The Meeting on US Keeps Control of the Internet · · Score: 1

    Funny, in spanish United States is "Estados Unidos". Got it? EU...

  5. Re:MIT $100 laptop. on Continued Look at Global Open Source · · Score: 1

    So you accept that 37% of Vietnam's population are in industry and service and don't think they may have an use for a laptop?

  6. Re:Dr. Greene once said on 'Protecting' Perl Code? · · Score: 1

    That's one of the thing Java ofuscators do. No reason to someone write a similar ofuscator for Perl.

  7. Re:I know chmod! on 'Protecting' Perl Code? · · Score: 1

    Perl have this autoofuscating thing. Just write as usual, the result is ofuscated enough.

  8. Re:Think different... on Sony Music CD's Contain Mac DRM Software Too · · Score: 1

    pas1234... oh wait, this is public?

  9. Re:Why would it be a democracy? on GPL 3.0 Rewrite Drive Is No Democracy · · Score: 1

    in my observation, at least, someone who thinks socialists or progressives are the same as communist is usually a closet facist, who would protest violently if called so.
    Do you feel like protesting?

  10. Re:Because the country is being run by assholes on White House Cease & Desists to The Onion · · Score: 1

    I wonder how you explain that the last democrat administration had a great superavit and the republicans great deficit.

  11. Re:stored procs and triggers, finally on MySQL 5.0 Now Available for Production Use · · Score: 1

    Also if you have transactions spanning more than one database, sometimes from different vendors (for example DB2 and MS Sql Server).

  12. Re:PHP can do allot on PHP Succeeding Where Java Has Failed · · Score: 1

    Come on, the OP says tomcat is hard to install, which is not. Configuration on specific apps may be more problematic. I had some problems with classpath myself. I don't like putting JDBC drivers into paths shared by tomcat. I prefer to put the libraries into the war, for isolating each app. I would like to put the database access on an application server but haven't that setup yet in our apps. I think that tryinh to deploy a database application in PHP if it has not the drivers compiled in would not work, so Java has an edge at least.
    I agree on documentation, it's deficient if I'm being kind.

  13. Re:PHP can do allot on PHP Succeeding Where Java Has Failed · · Score: 1

    I can tell from my experience how to install for windows:
    0) install java developer kit (jdk). Usually from Sun or you favorite implementation.
    1) download tomcat installer (exe)
    2) install
    Once the download done it must take no more than a few minutes.
    You can download a .zip if like but then you must put the java binaries on PATH and run tomcat/bin/startup.bat
    For linux or as/400 is about the same but run startup.sh.

    Then develop you application and deploy it.

  14. Re:OS-independent Java on PHP Succeeding Where Java Has Failed · · Score: 1

    Java its not magic, but if you are a little carefull its easier to get portable programs than for example a C/C++ program. My main problems are with old applets or that are tied to Microsoft JVM. That's the developer fault, or perhaps a business decision.
    Our web apps binaries run without problems on windows, linux or as/400, unchanged.

  15. Re:J2EE won't fail... on PHP Succeeding Where Java Has Failed · · Score: 1

    It seem that most programmers in slashdot only care about how much the language fits with his own tastes rather that on those things you mention like ease of use, maintainability, performance, scalability, and I would add maturity, availability, deployment, documentation, support, robustness, tool support and surely missing others. You see, those are problems that the user, customer o the sysadmin will have, why should a programmer care?

  16. Re:No. Bad for dual-licensing in general on Oracle and MySQL -- Good Move or Bad Bet? · · Score: 1

    I'll add 4) MySql development slow downs as they develop an alternative to innodb (commercial or free) gives other FOSS DBs momentum (postgresql, firebird, etc) to catch up MySql in popularity.

  17. Re:No. Bad for dual-licensing in general on Oracle and MySQL -- Good Move or Bad Bet? · · Score: 1

    Because if MySql AB (the enteprise) closes doors, so goes developers funded by them, their sites, etc. Someone pays the bills now.

  18. Re:Purchase PostgreSQL? on Oracle and MySQL -- Good Move or Bad Bet? · · Score: 2, Insightful

    May you elaborate on that? sounds like a lots of inserts in a simple log table. May be the volumen is high but not complex transactions or queries. Please correct me if my guess is wrong.

  19. Re:Why do you care? on Arrays vs Pointers in C? · · Score: 4, Funny

    Both of those pieces of code happen so fast that it doesn't matter.

    Unless of course that someone writes a compiler so optimizing that the code ends before it begins, causing a paradox that will end the universe. To prevent that imminent danger all programmers must start programming in TI-99/4a Basic right now.

  20. Re:Robomaid on Java Urban Performance Legends · · Score: 1

    And for Java not having pointers, seen any NullPointerExceptions lately? At least my C++ references cannot be NULL (they can be invalid though ;)

    Well, I seen LOTS of NullPointerExceptions, thank you very much :-) Really, this usually isn't as bad as it sounds because I can diagnose the problem more easily (in most cases) than an equivalent C++ program. The name isn't very good (NullReferenceException would be better maybe?) but the meaning is the same. Alas, I'm having one such problem that produces NullPointerExceptions because of missing parameters in http request and can't find what causes the problem. I know the NPE are the consecuences and not the cause and can catch them. This is a very weird case, almost in every other situation NPE were more easily spotted.

  21. Re:Robomaid on Java Urban Performance Legends · · Score: 1

    In my experience in C sharing memory would most likely make the "whole system fall over" because of overwriting the memory or free'ing twice the same block. C++ is more o less the same, though you can manage it better there is usually third parties libraries one cannot control. In Java you just cannot overwrite shared memory or release twice an object, accidentally or otherwise. All access are throught references. You can share an object and use it wrongly (example: account.substract(n) from two places) , but its a different problem at a different abstraction level.
    I personally like not to worry about pointers when I'm not doing low level work.

  22. Re:Counter arguments on Java Urban Performance Legends · · Score: 1

    Not that much! remember, baby steps.

  23. Re:Java, It's not fat its big boned. on Java Urban Performance Legends · · Score: 1

    Modern Java Virtual Machines do Just In Time compilation. Sun JVM "hotspot" decides what to compile based on when code is frequently used. Then it compiles to machine code. So Java can be as fast as machine code. See http://java.sun.com/products/hotspot/docs/whitepap er/Java_Hotspot_v1.4.1/Java_HSpot_WP_v1.4.1_1002_4 .html for more details.

  24. Re:Robomaid on Java Urban Performance Legends · · Score: 1

    "Reference counting is nearly always very much slower than other garbage collection techniques, because of the need to update reference counts whenever a reference is changed, rather than only following references during garbage collection. Reference counting also requires some space in each object. Simple reference counting also fails to reclaim the memory used by data structures that have cycles (such as doubly linked lists), although this is ameliorated somewhat by judicious use of weak pointers."
    from http://en.wikipedia.org/wiki/Garbage_collection_(c omputer_science)

  25. Re:Counter arguments on Java Urban Performance Legends · · Score: 1

    But not significantly so that most people that today uses Java feels any need to leave for C#, unless it's a very personal preference.