Slashdot Mirror


User: dna_(c)(tm)(r)

dna_(c)(tm)(r)'s activity in the archive.

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

Comments · 726

  1. Re:Yes, optimism has survival value... on Humans Hardwired to Believe in Supernatural Deity? · · Score: 1

    There are probably a lot more angry, lonely, childless catholics. Celibacy, you know?

    And what about those uninhibited fornicating atheists? They must have lots of children too?

    Nah. Just pointless prejudice.

  2. No Joke on Gaming on a Universal Platform? · · Score: 1

    This is an example what can be done with Java3D. Not really intended as a gaming platform, though

  3. Re:Web application vs Java Webstart on Which Text-Based UI Do You Code With? · · Score: 1

    Not really news. I have implemented a JApplet for a real-world-client (it's funny that that was a pharmaceutical company, BTW) in 2004. Just take precaution to make it reusable in another context (inherit form JPanel instead of JApplet) and be prepared to handle the '97s type of problems that come with it...

    And the world turns despite the big molochs, currently working with some IBM guys. Sigh. Certified clue free variety. But nice people in all other respects.

  4. Web application vs Java Webstart on Which Text-Based UI Do You Code With? · · Score: 2, Informative

    A web application that depends on Java in the browser probably uses applets. That is not the best way to solve any problem since there are dependencies out of the programmers control (versions of Java on the client, browser problems,...), it is similar to a (windows only) ActiveX dependency.

    Java Webstart is very different, it handles deploying Java Applications (typically Swing UI based impementations, nothing to do with Applets or JApplets), resolves Java version dependencies etc. Webstart uses any Java version since 1.3 and any browser to download the initial jnlp file (the launch file, an xml file containing download, security and configuration data) and start the javaws process. The application runs outside the browser context, stand alone.

    If you still use 1997 technology (applets) then you're probably encountering the 1997's problems. Knowledge has evolved since those days.

  5. answers on Vista the End of An Era? · · Score: 1
    "4.570.000.000 years to be exact.
    That is not really exaxt..."


    The answer you are looking for is '42'

    You're welcome

  6. Re:An example on Boardroom Spying Debacle at HP · · Score: 1

    so that he could get back on the job with no delay at all if the balloon went up.

    Which job did you mean? Oh, wait. I just blew it! Never mind...

  7. Re:If even Thurrott is saying this... on Is Windows Vista Ready? 'No. God, no.' · · Score: 1

    No one can tell you with absolute certainty what will happen this afternoon let alone tomorrow or six months from now (except for God, but most people here don't believe in Him anyway)

    Yeah, if proof of intelligent design would have been found in Vista, we all would have believed in Him. But some people here would suggest Bill didn't design it very well.

    And even Thurrot says it: 'No. God, no.'

  8. Re:Do I think they went to far? on Children Arrested, DNA Tested for Playing in a Tree? · · Score: 5, Funny

    I am wondering why askslashdot is being used to push agendas/post news stories, i know this isn't a new thing, but aren't there real questions to be answered? Why couldn't this story just be a normal news submission?

    Good question! You might submit it to askslashdot for some fine answers.

  9. Re:Geez on The Business Model of Ubuntu · · Score: 1
    You're not an espically good speller yourself, are you?

    I htae it wehn anynomous cawords becmoe garmra nzais!

  10. Launching programs with KaTapult on Favorite KDE Tricks? · · Score: 1

    Katapult "knows" the names of executables/bookmarks/... even if you never used it before, nice if you have a freshly installed box

    Alt-F2 just remembers the last entries you already typed, and changes its icon to reflect the content type/icon of the thing your 'URL' is ponting at

  11. Good Java/J2EE advise on Slashback: Facebook Un-Ban, Exploding Laptop, FFXI II · · Score: 1

    IMHO there is nothing fundamentaly wrong with Java, only sometimes in ways of using it.

    My setup under Linux used to be something like:

    • /usr/lib/j2sdk1.5-sun
    • /usr/lib/j2sdk1.4-ibm
    • /usr/lib/j2sdk1.4.2_07-sun
    • /usr/lib/j2re1.4.2_06-sun
    • ...
    • ln -s /usr/lib/j2sdk1.5-sun /usr/lib/java
    • in .bashrc or so:
    • export JAVA_HOME=/usr/lib/java
    • export PATH=$JAVA_HOME/bin:$PATH
    • ...
    • now, users have it easy, can override versions if they want to
    • you have it easy because it's easy to find and manage versions

    In (K)ubuntu you can install any version you want (not always very easy to do) and with sudo update-alternatives --config java pick the system default from a list (not per user), see the Wiki

    For most apps I write/use I start from a small script, which allows picking your JVM, however this is rarely necessary, in my experience. E.g. /usr/lib/j2sdk1.5-sun/java -cp . some.path.MyApp

    My experience: prefer Sun's JVM, it's the most stable, and when things go wrong, you get meaningful error messages. Be carefull with GCJ because it does not support every library and is a very different thing compared to the normal JVM's

    Concerning J2EE: The sun downloads contain an 'Application Server' (AS), but J2EE is a set of specifications, not a product. J2EE AS's provide an implementation of that specification. Examples are Websphere, JBoss, BEA Weblogic, Apache Geronimo,...

  12. substandard crap on Your Favorite Support Anecdote · · Score: 1

    Because everybody else runs Windows ?

  13. Or ... on Software to Divide an Image Into Discrete Patterns · · Score: 1

    I'm not sure that can be done, but ImageMagick is a set of command line tools that allow you to do amazing things.

    But the frst part could be Edge detection, from there you're on your own...

  14. Re:No Sign Bit on Slashback: Disney Copyright, Alaa Freed, Kelo Repealed · · Score: 1

    Well, actually, there is a sign bit. But I meant to say that it is not sufficient to flip the sign bit to make the corresponding positive/negative number.

  15. No Sign Bit on Slashback: Disney Copyright, Alaa Freed, Kelo Repealed · · Score: 1

    Java uses the Twos complement notation

    There is no 'sign' bit

  16. Re:The Solution on Ballmer Beaten by Spyware · · Score: 1

    ah? Kubuntu!

  17. Re:I hear we need: on Errors in Spreadsheets are Pandemic · · Score: 2, Funny
    I was thinking women.

    Try to focus, will you. All of us men must write our responses through a haze of testosterone...

    Now, what was it you wanted to say?

  18. Re:Don't forget coLinux on Which OS Makes the Best VMWare Host? · · Score: 2

    You're mistaken, it's coBSD that is dying...

  19. Not that simple on Java for Web Developers Courseware? · · Score: 1

    1. Teach them how to program and read documentation.
    2. Make them catch up on the relevant RFCs.
    3. Give them the servlet JavaDocs.

    Java - like most OO environments - is much more than a programming language, besides learning best programming practices, you need to learn the 'libraries'. On top of that, lots of (open source) frameworks exist, in particular when it comes to writing web-apps. And to complicate even further, some of these frameworks can interact but overlap with their capabilities...

    It's even hard for an experienced professional to pick the best options available, and the "best of breed" changes every few months.

    To illustrate, the first things that I think people should have a conceptual understanding about in order to make an informed decision for the UI implementation:

    • Servlet API (with filters and listeners)
    • JSP
    • Custom Taglibraries
    • Spring IOC
    • Spring MVC
    • Struts
    • JSF
    • JSTL
    • Ant
    • ...

    For my current project's UI I'll probably go for a combination of struts and Custom Tag Libraries to leverage reuse.

  20. Re:Impartial??? on Yahoo Rejects Microsoft Search Offer · · Score: 1

    come on, this IS funny. "GOOGLED"!

  21. Re:My humble advise to Yahoo! and Google on Yahoo Rejects Microsoft Search Offer · · Score: 1
    ...FF google search box and the google toolbar i still find myself typing in the web address.

    try "google search engine" or "wp search engine" in Firefox, however I doubt IE offers these shortcuts...

    It's a nice shortcut for googling that comes standard as well.

  22. Re:Which is why Napoleon died in exile on France Hostile To Open Source Software? · · Score: 1

    Yeah, in 1871. Which is one of the reasons the Germans tried to do that again in 1914. In vain.

    The 1940 visit didn't count, then did it? Or the 1814 and 1815 visits? Admitted, in 1814 and 1815 the English led the social call, after Napoleon with his armies had for the last 20-years or so occupied most of Europe. But the Austrians and Prussians were part of the alliance.

  23. Re:Didn't File In Time on 1/5 of All Human Genes Have Been Patented · · Score: 1

    Hehe way ahead of the rest (see my nick) :-P Should count as prior art...

  24. the question is... on Optimizations - Programmer vs. Compiler? · · Score: 1
  25. Re:"Consumers?"? on 4 Linux Distros Compared To Win XP, Mac OS X · · Score: 1

    Nope, the rest does. 3th person, singular. Me thinking doing soing