Slashdot Mirror


User: fforw

fforw's activity in the archive.

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

Comments · 252

  1. Re:Makes me wonder... on Cross-Platform Java Sandbox Exploit · · Score: 4, Interesting
    ...If java is really just as bad as ActiveX
    no.

    This the only cross plattform security issue known. and it's a theoretical one, no exploits known.

    One failure in a secure sandbox environment is still not as bad as an environment where any code is executed and the security consists of the developer saying:

    "I don't think I built in something harmfull and sign that belief with this digital signature"

  2. Not that critical.. on Cross-Platform Java Sandbox Exploit · · Score: 4, Insightful
    This only affects the Java plugins in the 1.3 and 1.4 Java release. The current java release 1.5/5.0 is not affected at all.

    And it's a java plugin vulnerability so a website running java on the serverside is not affected.

  3. It's the memory model.. on JDK 5.0: More Flexible, Scalable Locking · · Score: 1
    How exactly is Java different from any other app that uses portable C code and links against standard posix C libs? And don't tell me its the memory model. Why can't I just use one of the many replacement thread-safe mallocs to achieve the same thing?
    It's the memory model.. =)

    It defines how information can be cached for a thread, when this information has to be written back into main memory, which kind of operations are atomic. etc.

    It's not just about memory allocation and disposal but access to that memory whith different threads/cpus.

  4. .. and formal memory model on JDK 5.0: More Flexible, Scalable Locking · · Score: 2, Informative
    Or to quote the Bell Labs proverb: "library design is language design" so Java is hardly the first language to incorporate a cross-platform threading model.
    [...] to incorporate a cross-platform threading model and formal memory model directly into the language specification. [...] I think the keyword in this case is the "and"...
  5. Re:Change the Toolkit? on The GIMP Gets Ready for 2.2 · · Score: 1
    Also, I hope you are aware that GTK is short for GIMP ToolKit
    Sorry to be blunt, but how does that make perpetuating a years-old mistake more valid?
    Throwing away a perfectly fine and complete implementation for a toolkit because the implementation of that toolkit is weak on one platform ( totally ignoring the new momentum from GTK#) ?

    doesn't sound like a good plan..

  6. Excactly the opposite.. on Is Firefox 1.0 Less Stable than Firefox PR1.0? · · Score: 1
    I had lots of crashes with the preview release (mostly on opening media files and when sites opened a new window with javascript).

    1.0 on the other hand runs stable as a rock for me. ( both installed it on my 2 linux computers)

  7. MOD PARENT UP on Tim Boudreau On The Future of NetBeans · · Score: 1

    Netbeans is an open source IDE with an open source permissive license (not GPL compatible).

  8. Re:War against $FOO on U.S. Declares War on Intellectual Property Theft · · Score: 1

    ja, genau wie in meiner Muttersprache.

  9. Re:War against $FOO on U.S. Declares War on Intellectual Property Theft · · Score: 1

    The ineffectiveness of these so called "wars" is intrinsic to way they are laid out. What worries me more is the perpetuation of these wars because of material interests involved (prison industry, war profiteers, etc) and the rise of the "guilty if accused" injustice that goes with them.

  10. War against $FOO on U.S. Declares War on Intellectual Property Theft · · Score: 5, Insightful

    Seeing how the "war against drugs" and the "war against terror" went I would be quite worried if I was an american.

  11. Re:Hibernate is good, but I am using Prevayler mor on Hibernate in Action · · Score: 1
    performance lost? OMFG..

    let's spend 2 years rewriting all business logic in assembler...

  12. Re:la la la la la... everything is fine... on Unexplained Leap In CO2 Levels · · Score: 1

    no.. 2*10^5 in my culturally preferred formatting.

  13. Re:Limitations of Generics in Java. on Java 1.5 vs C# · · Score: 1

    Closures in java are generally a hack in java and this example IMHO crosses the border of ugliness. so I would more likely just use an inner class instead of an anonymous.

  14. Re:Plenty of differences on Java 1.5 vs C# · · Score: 1
    • No unsigned integer type in Java -- if you need an unsigned long, you're SOL. So it's pretty difficult to code certain numerical algorithms (compression and encryption, anyone?)
    • Java the language is inextricably tied to the JVM - C# is just another option for developing for .NET.
    a) well if you have to take java.lang.BigInteger after 63 or 64 bits is of no real importance to me.

    b) there are many other languages which run in the java VM (e.g. Jython, Groovy ) Some even run C# in a java vm .

  15. Re:Limitations of Generics in Java. on Java 1.5 vs C# · · Score: 2, Informative
    And C# 2.0 has real closures and none of the limitations of java inner classes. No need for the "final array of one element" hack, if you know what I mean.
    no.. what is this hack?
  16. la la la la la... everything is fine... on Unexplained Leap In CO2 Levels · · Score: 3, Informative
    The global warming pundits insist that they must ordinarily be constant. That's fairly unlikely; there appear (in the small amount of data we have collected over the past few decades) to be complicated cycles at work. We do not understand those cycles. Therefore we cannot claim to have altered them.
    a) there are methods to determine CO2 concentration for a lot more than "a few decades" Ice Core drilling for example provides us with data about the last 200.000 years

    b) Even if it's not as bad as the leading climate scientists tell us, it's no reason to say "hey.. all is fine. let's waste energy and blow as much CO2 into the atmosphere as we can."

    If we don't know for sure it would be a good policy to be cautious.

  17. Netbeans 4.0 Beta 2 on Have a Nice Steaming Cup of Java 5 · · Score: 2, Informative
    Netbeans 4.0 Beta 2 was also released today, giving people who want to try to ride the tiger a matching IDE with full language support:

    Netbeans 4.0 Beta 2.

    J2SE 5.0 bundled with Netbeans.

  18. Jung on Is "Marketingspeak" Killing Technology? · · Score: 1

    C.G. Jung coined the term synchronicity in his works. That may be another context where usage of the word is okay.

  19. Wrong on Mambo Users Threatened · · Score: 4, Informative
    If the code in question was derived from a GPL project, it doesn't matter if he distributes it or not; it's GPL, period.
    According to the Frequently Asked Questions about the GNU GPL there is no need to give away the source for derived GPLed code which is only used privately (by yourself or within an organization)
  20. Re:Don't .. on 2004 ICFP Contest Spinoff Game · · Score: 1
    Well.. a JSP implementation is java code which generates java code, not java bytecode.

    If you want to generate/manipulate bytecode directly you should take a look at the Byte Code Engineering Library.

  21. Don't .. on 2004 ICFP Contest Spinoff Game · · Score: 1
    Java code, that generates java code? I would hate to see that.
    .. don't follow this link.
  22. Re:Mola Ram removed a heart? on PG-13 Rating Turns 20 · · Score: 1

    between not seeing a heart being cutted out and missing let's say obscuring nudes, i choose the nudes.

  23. This is no law. on Meta-tag Spam Declared Illegal in Germany · · Score: 1
    A trade association sued a single company for using deceptive meta-tags and that being anticompetitive practice.

    The court (Landgericht Essen) decided that it is indeed anticompetitive practice.

  24. No Generics until 2006-2007 ?? on Gosling on Computing · · Score: 3, Informative
    Generics are non-existent to me. They won't be anywhere around until 2006-2007.
    what are you talking about? the 1.5 release is already at "beta 2". So we will have a release version in autumn. Netbeans will reach it's beta for the 4.0 release soon, so there will be a matching, open-source IDE, too.

    And all that before even 2005.

  25. Re:why electronic? on How To Lose An Election · · Score: 1
    Exactly... the recent European Parliament elections used simple paper ballots, were roughtly the same scale as the US elections, and they were timely and scandal-free.
    We use electronic voting ( with paper trail ) in Germany and we used those voting machines in the EU election, too.