Slashdot Mirror


User: feNIX77

feNIX77's activity in the archive.

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

Comments · 18

  1. interfaces on Reuse Code Or Code It Yourself? · · Score: 1

    using appropriate design patterns and coding to interfaces (as spring strongly encourages) would completely prevent you from being 'married' to any particular implementation or persistence mechanism.

  2. Re:humanity vs capitalism on Brazil Voids Merck Patent On AIDS Drug · · Score: 1

    I'm not sure this is a good thing necessarily. Capitalism is what fuels drugs companies to spend hundreds of millions of dollars to create these drugs. If countries just start voiding patents, what's the motivation for the drug companies? Yes, I know some might say the motivation is to help people, but drug companies spend a *a lot* of money to help people -- to remain viable they need to get that money back somehow.

  3. Re:A Humble Note on Departure Of The Java Hyper-Enthusiasts? · · Score: 1

    I correct myself - I am talking about strongly statically typed languages as opposed to dynamic. Correct me if I'm wrong, but since java is strongly, statically typed, how could:

    foobar = SomeClass()

    as a declaration possible work w/o changing basis of the entire language? There is no type for foobar. As far as the Nice example - if that is converted to valid Java, then I dont see how it can be converted to anything but:

    Object foobar = new FooBar()

    which doesnt really do anything as far as this conversation goes other than confirm that variables are strongly typed at declaration in Java (though saying Object is a strong type is in the weakest possible sense). Correct me if I'm misinterpreting you on this.

  4. Re:A Humble Note on Departure Of The Java Hyper-Enthusiasts? · · Score: 1

    I think we are coming from different backgrounds here - strongly-typed(Java,C#,Ada,etc) vs weakly-typed (many scripting languages, assembly, etc) languages...

    for example your code:

    foobar = SomeCustomClassName()

    is that a declaration or a reassignment? what object type is foobar? By declaring a variable, I am referring to declaring its type, which the above doesn't do, adding a 'var' in front doesnt remedy this. Declaring the variable type at compile time can drastically reduce the amount of runtime errors that occur, as they are caught at compile time instead.

    Java is by no means the most strongly typed language out there as you can still declare everything an Object and throw runtime exceptions casting if you really felt like it...

  5. Re:A Humble Note on Departure Of The Java Hyper-Enthusiasts? · · Score: 1

    It just goes back to the fact that in Java, as in many languages, you have to declare your variables; Your example looks more like a scripting language where declarations are not required (e.g. Javascript).

  6. Re:A Humble Note on Departure Of The Java Hyper-Enthusiasts? · · Score: 1

    Why do you have to write the type twice?

    Thats up to you and the context the object is being created in.... ArrayList list = new ArrayList(); List list = new ArrayList(); Collection list = new ArrayList(); all create a new ArrayList and assign it to 'list'. Defining an object's type by its interface, if available, is more flexible than defining it by its concrete implementation. while a bit verbose in some cases, I think it adds to the extensibility of the language and is not a drawback.

  7. Re:Let's Get Picky on Mastering Ajax Websites · · Score: 1

    last time I checked "window." was never required before any of the window functions such as window.alert()

  8. Commercial/Enterprise use? on Ruby on Rails 1.0 Released · · Score: 4, Interesting

    I've heard plenty about RoR on Slashdot - but to be honest, thats about where it stops. Does anyone have any experience or views deploying a medium/high volume commercial or enterprise solution using this?

    I have yet to personally see RoR in either situation and I don't know anyone who has - I'm not knocking RoR, just curious how it's actually being used.

  9. Re:Let's Get Picky on Mastering Ajax Websites · · Score: 1

    alert('this isn't using DOM and its javascript!');

  10. a better bot - javaaimbot on AIM Bots: Useful or Spam? · · Score: 1

    Add this bot to your buddy list: "javaaimbot". There is an AI engine in there somewhere, though it may be hard to believe by some of it's responses.

    webiste is here: http://jaimbot.sourceforge.net/

  11. Java Icon? on Why Microsoft and Google are Cleaning Up With AJAX · · Score: 1

    What exactly does that coffee cup next to this article have to do with AJAX?

  12. CustomizeGoogle != Google on Unblock Google Cache in China · · Score: 1

    CustomizeGoogle (http://www.customizegoogle.com/) is a a GPL'd FireFox extension. It wasn't written by Google and Im pretty sure Google doesn't like it too much since it removes advertisements and adds links to competitors sites to name a few things...

  13. Re:Why are we hiding from the police, daddy? on Vim 6.4 Released · · Score: 1

    Well, as a programmer, Ive been using vi for several years. Maybe I'm slow, but it takes a lot longer than a couple days to be effective with it - and even then it just can't compete with a halfway decent IDE. I hate to say it, but its true. On a side note, it still kicks the hell out of emacs ;).

  14. promising? on Firefox Tops 100 Million Downloads · · Score: 2, Interesting

    "Additionally the Firefox 2/3 roadmap also looks promising."

    can you explain what looks promising in that link concerning 2/3? "The Ocho"? I guess thats promising...

  15. Re:no sql? on TurboGears: Python on Rails? · · Score: 1

    In my experience ORM frameworks are fantastic for simple DB schemas/applications. For more complicated cases they may work, but at a performance cost - such as pulling considerably more data than required. Putting into consideration hardware and time restrictions, this may be (more than) acceptable. Ideally, I would prefer to create the most efficient solution, which has thus far not been via an ORM framework...maybe this is a sign I'm getting old :)

  16. Re:Bodies Float -- Bush Smiling, Playing Guitar on DirectNIC Crisis Manager Braves the Chaos of New Orleans · · Score: 1

    I have to agree. I cant defend EVERY American policy or EVERY American action. But to say that all US presidents are evil and that every US action is in its own self interests is rediculous. If we had all the money that weve contributed towards AIDS and natural disasters, I think the current situation in New Orleans wouldnt affect us quite so much financially. The fact is the US is not all bad - there are other countries with much a much stronger self interest that do nothing towards the global community. But please, continue living in your own warped world....Im sure it is much more comforting with a scape goat.

  17. Re:Question for developers: JBoss vs Tomcat on JBoss - A Developer's Notebook · · Score: 1

    OpenEJB? I guess it depends on your project. I have yet to hear of anyone that has used an opensource EJB solution in a commercial environment besides JBoss. Geronimo is up and coming, but in my experience, OpenEJB is not even on the map. This is not to say that OpenEJB wont work for you - you just need to decide how demanding your application is and what kind of performance/uptime/scalabily it demands.

  18. Re:Bodies Float -- Bush Smiling, Playing Guitar on DirectNIC Crisis Manager Braves the Chaos of New Orleans · · Score: 1

    Yes - all US presidents are evil...give me a break. The US does more to help others than any other country out there. Alot of people may disagree with Bush, including me - but to to charactarize the US people as sheepish or evil is just plain ignorant. I would love to see where the world was if we were isolationist - it wouldnt be good. Wake up.