Slashdot Mirror


User: Phouk

Phouk's activity in the archive.

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

Comments · 66

  1. Re:My company uses tomcat exclusively on Who is Using Tomcat or Jetty in Production? · · Score: 1

    Re: 30-45 second outage: Have you played with the tomcat manager app to reload / deploy / undeploy applications without restarting tomcat? If so, what were your results?

    For those who don't know the manager app, when you have tomcat running, the doc for it is at e.g. http://localhost:8080/tomcat-docs/manager-howto.ht ml
    It provides a very basic but easily scriptable URL interface.

  2. In totally related news... on Partial Solar Eclipse Tonight · · Score: 1

    ... if you are a Java developer, definitely check out the eclipse, it's better than looking at the sun.

  3. Techies and Trekkies Unite? on Techies and Trekkies Unite! · · Score: 1

    That which is one cannot unite.

  4. Re:No Windows Rebate No Surprise on Red Hat Takes Aim at SuSE, Mandrake · · Score: 1

    linux CANNOT compete with Windows on the desktop market

    Which OS do you think the majority of the people who use Linux on the desktop have used before Linux?!?

    -- a happy guy who has just switched his desktop pc at work from Windows to Linux last week --

  5. Shoot the Messenger on Do You Like Your Job? · · Score: 1

    If you had agreed to three weeks, and then taken six weeks anyway, would you have kept your job? Sometimes, an "aggressive" schedule + schedule overrun is easier to sell to managers/customers than a realistic initial estimate.

    I'm not saying that you should exploit this - you shouldn't. But its a common anti-pattern to watch out for if you are a manager/customer yourself.

  6. Re:Still didn't fix it... on Java2 SDK v. 1.4 Released · · Score: 1

    Java is just not intended for "interactive console-only" apps. It's meant either for server-side processes/webapps, or for GUI-type apps/applets.

    Isn't that obvious?

  7. Automated Refactorings Rock! on Java IDEs? · · Score: 1
    I highly recommend trying out some IDE or IDE-plugin that does automated refactorings (e.g., IntelliJ or the JRefactory plugin for JBuilder). Once you get used to it, you won't want to miss it.

    Example of such a refactoring would be:
    • You have a long method. You select several lines that belong together.
    • You press, e.g., Shift-Ctrl-E for "Extract Method".
    • A dialog box asks you for the name of the new method, the order of the parameters, and which of the calculated values, if any, should be the return value.
    • You press enter. A new method is created, with the lines you selected as body, and any necessary parameters.
    • Any (!) occurence of the code you originally selected gets turned into a method call to the new method, with all the right parameters. Normally, the code compiles right away.
  8. Re:Comments about Pth compliance, M:N threading. on IBM's JFS & PTh-NG Reaches 1.0 · · Score: 2

    Hm, careful, after all, they are Big Blue... ;-)

    When they talk about performance, they might, e.g., have in mind a $100,000 multi-proc web application server running hundreds or even thousands of threads in parallel, with several thousand more requests in queue.

    For such a situation, for example, your arguments don't seem to apply, as far as I understand.

  9. Re:Yahoo on Bad News from Yahoo · · Score: 1

    Maybe http://www.raging.com is for you.
    It's the AltaVista search engine *without* the portal.

  10. "The Best Nation" (OT) on Red Hat CTO Responds To Allchin's Comments · · Score: 1

    "the best nation ever created by Homo Sapiens"

    I take offense at that phrase, for two reasons:

    • First, your statement implies that all other nations are somehow inferior to the US. Don't you think that's quite rude in the virtual presence of thousands of readers from other countries?

    • Second, you say that "America is best" as if it was a fact not in need of reasons, or of saying what you mean by "best". Sorry, but those are the hallmarks of an unreflected prejudice.

    What, actually, is America as a nation best at?
    Is it the most democratic? The biggest? With the best quality of living? With the fairest judicial system? The best-educated? The most beneficial to world peace? etc.

    Please think about it.

  11. Re:New Age Programming B.S. on Extreme Programming Installed · · Score: 1
    As you correctly say, and as XPers freely admit, full-scale Extreme Programming will only work under very specific constraints. To my understanding, these include:
    • team size up to 10-15 developers
    • customer representative available full-time
    • pay-per-effort/week instead of fixed-price contract
    • correctness requirements on a "business level", not on the "lifes depend on it"-level
    Under such circumstances, XP is one of the possible development models you can choose from, offering specific advantages, including:
    • high efficiency
    • high flexibility
    • high predictability
    It is not the silver bullet - and it does not claim to be. It's just a (good) tool.
  12. A Quote... on Promote Your ATA66 Controller To A RAID Controller · · Score: 2

    ...from the article:

    "Likewise by it like fast one has itself to amuse possibility its computer STILL wars can."

    I think that's impressive!

  13. I'd like this Jargon for my Fortune Cookies on Jargon File 4.2.0 Out · · Score: 2

    Newbie Question: Is there any way to have the contents of the Jargon file presented one by one, as fortune cookies (a la KFortune)? If so, how? If not, why not?

  14. Re:FP? on Two Turntables and a Laser Beam · · Score: 1

    OK, now I can read what the story is about... :-)

  15. FP? on Two Turntables and a Laser Beam · · Score: 1

    FP?

  16. Re:I much rather like sole systems on Extreme Programming Explained · · Score: 1
    In a XP context, personal learning is enhanced because of instantaneous feedback:
    1. Feedback from your partner (bugs are shallower...)
    2. Feedback from the Unit tests.
    3. Feedback from the code ("Code-Smells"), at least if you refactor continously XP-style.