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. Re:COBOL on Why is Java Considered Un-Cool? · · Score: 1

    You may have some point here, but I know COBOL, or at least knew it many years ago and I can assure that Java is a very general purpose language, unlike COBOL that was business specific. It sometimes doesn't fit well for business because it has nothing business like builtin (forms and reports as you point it) but its general advantages make it worth anyway. After all "makes it very easy for one person to work on another person's code, and it makes it quite painless to document your work as you go." never hurt any kind of development.

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

    I would stated it the other way:

    "They who would trade essential security to gain a few CPU cycles deserve neither CPU cycles nor security."

    It remind me the joke:
    -Quick! tell me 2+2?
    -5!
    -Wrong! 2+2=4.
    -How do you wanted it? Quick or exact?

  3. Re:Goodbye sovereignty on Yahoo! Not Protected From French Anti-Nazi Laws · · Score: 1

    Don't forget extend your laws to other countries

  4. Re:Hope the ACLU remembers... on Yahoo! Not Protected From French Anti-Nazi Laws · · Score: 1

    Of course, it's all about the economics. Nations either wage war or make peace entirely because of their wallets. I guess that makes the First World War one great big freakin' anomally...

    And the Second. And the others. Read some Von Clausewitz.

  5. Re:US-centric thinking, as always on Yahoo! Not Protected From French Anti-Nazi Laws · · Score: 1

    Mmmm... first line mentions jews, nazis and some communist dictator (ends in sky or something). You must one of those right wing liberals pigs, right? I'm going to mod you down just after I post this...

  6. Re:I guess Gutenberg is in trouble then on Yahoo! Not Protected From French Anti-Nazi Laws · · Score: 1

    Is there any relevance in facts from 50 years ago to the story? Then let's talk about who bought a problem from France in Vietnam and made it a big mess.

  7. Re:Precedent on Yahoo! Not Protected From French Anti-Nazi Laws · · Score: 4, Insightful

    Well, US arrested a Russian hacker for doing something in his country that wasn't against his laws. Who set the precedent?

  8. Re:France has never been big on freedom of the pre on Yahoo! Not Protected From French Anti-Nazi Laws · · Score: 1

    Please mod parent Funny!! Or Naive.

  9. Re:Bravo on Yahoo! Not Protected From French Anti-Nazi Laws · · Score: 2, Funny

    American courts and lawmakers will come to Yahoo's rescue and put the pompous French beaurocrats right back on their socialist asses.

    You have no idea what you are talking right? France has actually a very right wing government.

  10. Re:too bad... on Yahoo! Not Protected From French Anti-Nazi Laws · · Score: 1

    In the eyes of '80s administrations Iran was a lot worst. So they went with the saying: "the enemy of my enemy is my friend". Pretty stupid saying IMHO.

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

    Java works as other object oriented languanges. Nothing new in this.

  12. Re:Parent is not true, MOD DOWN on How 8 Pixels Cost Microsoft Millions · · Score: 1

    It's true but Nova still has the same meaning as in English.

  13. Re:Not the first time... on How 8 Pixels Cost Microsoft Millions · · Score: 1

    I'm from a Spanish speaking country. I suggest the translation may be more like "Doesn't go".

  14. Re:Well now... on Antarctic Craters Reveal Asteroid Strike · · Score: 2, Funny

    It won't save the Earth but it would make our last moments valuable by throwing the full crew of that movie out in space. Almost worth the end of the world.

  15. Re:Java programmer's viewpoint on The Python Paradox, by Paul Graham · · Score: 1

    Java is the choice of consultants, not the choice of scientists.

    What scientists are talking about? What they do? Why they don't find Java useful?

    Most of the complaints about Graham are likely from people who are just barely programmers.

    Do you have ANY facts to backup that? I don't think so.

  16. Re:Python vs Java on The Python Paradox, by Paul Graham · · Score: 1

    to do something relatively simple like easily getting command-line arguments you need to use a third-party.

    That was also true in Python until some version. Java has the same kind of standard command line parsing that almost every other language. If you don't want to use a third party, optional library is up to you, but even the method of installing is simpler in Java than it was in Python. Java has an easy way to use third party libraries which is a Good Thing.

  17. Re:He likes Small Is Better, which isn't Java on The Python Paradox, by Paul Graham · · Score: 1

    In large projects architects and designers have more importance that the programmers.

  18. Re:Yea on The Python Paradox, by Paul Graham · · Score: 1

    I also hate it when a customer tells you that they need an application written in this language to do this. My view is use the correct language for the job and I hate being forced to use a language that is not well optimized for the job.

    Sometimes the customer has valid arguments to give technical directives, like they have all their apps in one language and want to keep it that way for them to uniform development, even if it's a pain for programmers that like other languages. After all the customer is the one who is paying for the job.

  19. Re:aiiii get them off my back!#@$#! on The Python Paradox, by Paul Graham · · Score: 2, Insightful

    Seems offensive to me. What if the article would be the other way around, would you say the same?
    I don't know who the writer is but if his experience is that then he doesn't know that much programmers.

  20. Re:Source? on The Python Paradox, by Paul Graham · · Score: 1

    Agreed, I don't believe them.

  21. Re:Why I like Python on The Python Paradox, by Paul Graham · · Score: 1, Funny

    Syntactic sugar makes code fat.

  22. Re:Frameworks arent platform specific on VCF - A Free BSD Competitor To Trolltech's Qt? · · Score: 2, Funny

    The majority of Slashdot readers are delusional.

    No, we are not!... my precious... aren't we?

  23. Re:not quite. on PHP5: Could PHP Soon Be Owned by Sun? · · Score: 1

    I have found this: "The protected keyword has a similar meaning to that in C++, but protected entities are also accessible in all methods of classes in the same package."
    It don't see much of a problem here.

  24. Re:So, Zend was good, and SUN & Co are bad now on PHP5: Could PHP Soon Be Owned by Sun? · · Score: 1

    I don't what the Sun interest would be in PHP given that Java has Servlets/JSP that could be seen as a competing techonolgy.

  25. Re:not quite. on PHP5: Could PHP Soon Be Owned by Sun? · · Score: 1

    The way Java handles protected variables (due to packages) is starkly different from the way C++ handles protected variables. Fortunately, it looks like PHP picked the (less broken, IMHO) C++ way to do it.
    Would you elaborate on this?