Slashdot Mirror


User: dwalsh

dwalsh's activity in the archive.

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

Comments · 253

  1. Works like RAM? on New Display Technology to Compete with LCDs? · · Score: 1

    but the cool this is that the display actually works like RAM (it retains its state until voltage is applied to reset it)

    So it works like RAM, except for the way it works. :-)

  2. Then for the crying out loud, stop pirating! on Why Software Piracy is Good for Microsoft · · Score: 1

    This changes everything. I never realised how harmful it could be.

  3. Double-checked locking on Applied Java Patterns · · Score: 1

    "you won't see discussion on why double-checked locking implementations of the Singleton pattern don't work. "
    ... nor should you.

    Two scenarios:
    1.There must be only one Singleton instance at a time, and if this rule is broken it has negative consequences for the correctness of your application, or a large performance overhead.

    Make the getInstance() method synchronized.

    2. A short-lived second instance is not a huge problem.

    Don't worry about it.

    There is far too much emphasise placed on the avoidance of synchronization, when greater gains can be made by optimizing other things like your algorithms. The performance cost has been reduced in VMs in the last few years anyway. The double locking idiom existed purely to avoid synchronization, and never worked anyway.

    I heard a great quote at JavaOne a few years ago: "The cost of synchronization is less than the cost of stupidity".

  4. US and European Launches? on Low-Budget Indian Satellite Launch · · Score: 2

    For comparison, how much do US launches cost?
    What about the European Arienne rocket?

  5. What does MS get out of this? on Microsoft/HP to Market Crippled Entertainment PCs · · Score: 1

    How is the MS management serving the best interests of their shareholders with this action?

    Provided you can't pirate the OS MS has nothing to gain by impeding the copying/access to content, however a new "No mon, no fun" OS will not sell.

  6. "If that's not a path to base your entire life on" on Faith Returns to Buffy · · Score: 1

    "If that's not a path to base your entire life on, I don't know what is."

    Hmm... perhaps reality? :-)

  7. Re:Cool... or Uncool? on .NET for Apache · · Score: 1

    "is it good to see Apache embrassing a Microsoft framework "

    You've miss-spelt "embarassing". :-)

  8. Interesting to compare it to Java... on The D Programming Language · · Score: 1

    Some of the features dropped from C++:

    Multiple Inheritance
    Templates
    Operator Overloading

    Some of the features added/retained:

    Garbage Collection
    Exception handling

    I've seen criticism of Java because of these choices from certain quarters at various times. It is interesting to see the same decisions being made again 6 years on, which I believe vindicates Mr. Gosling.

  9. Re:1 crash per week?! on Lawsuit Alleges That Palms Damage Motherboards · · Score: 1

    I have Windows NT 4.0 on my work PC. We got it from a company called "Microsoft". The operating system hasn't crashed for a lot longer than a week, in fact I cannot remember the last time it did.

    I'm not a rabid Windows advocate by any stretch of the imagination, but these posts are flamebait.

  10. Windows became the most widely used desktop OS :-) on Good Software Takes 10 Years? · · Score: 1

    That answer your question?

  11. Re:eeek. on Sklyarov Arrest Follow-up · · Score: 1

    >On the other hand, There's a law against >Breaking and Entering my house. Yes, but if you buy a VCR, there is no law against dismantling it yourself. There is such a law against doing the same for software. The software equivalent of breaking and entering would be hacking into someones private computer and extracting data.

  12. Wrong! Re:This isnt' new... on Why Linux Won't Ever Be Mainstream · · Score: 1

    >Darn, you beat me to it. But I'd like to add to
    >your comments.
    >I've seen this kind of flame-fest ever since I
    >started using the internet. Take usenet as an
    >example. Outside of pr0n, I'd say more than half
    >the posts in many unmoderated technical
    >newsgroups are childish chatter.

    You are wrong. I noticed one exception a few years ago. There is printer newsgroup (I think it was comp.sys...printers), where people just discussed printer issues and features with no discernable flaming. Boring - professional, but boring. I unsubscribed as soon as I got my Lazerjet problem sorted.

    Apart from that case, you are completely correct. :-)

  13. XP code *can* be broken if the test is broken on Go Extreme, Programmatically Speaking · · Score: 1

    ...and the tests have to be kept current with public API changes (and implementation changes if the test delves into the backend like initialising the DB etc.)

    I am not criticising unit testing, just the posters assertion.

  14. The jog dial is only useful for right handers. on Sony Clie Officially For Sale (In English) · · Score: 1

    I hate that.

  15. If the cable is cut it is useless anyway. on New Fiber Optics In The Works · · Score: 1

    The only difference in this case would be that the traditional fibre would be easier to repair (assuming you can repair them).

  16. hmmm... on HOW-TO: Asteroid -> Strategic Weapon · · Score: 1

    That is a very worrying analogy :-)

  17. The EU Commission should be abolished on Europe To Adopt Strict Internet Copyright Law · · Score: 1

    The commissionars were almost fired a few years ago because of corruption, but the EU Parliment chickened out in the end.

    The Commission is a giant quango (an unelected government body) appointed by individual EU governments. Such an important role should be directly elected by the public or else the powers should be handed over to the EU parliment.

    This news on copyright law is disgusting. I thought this had recently been ruled out for the EU?

  18. A perspective on the price. on More on the GeForce 3 · · Score: 1

    If the primary area where you would benefit from improved performance is games (which is true for a lot of us as most office apps have not been CPU limited for a while now), then the benefit of $600 spent on a GF3 is likely to be greater, and the cost less, than upgrading to a P4 and new motherboard.

    Not that I'm going to be buying a GF3 at that price...

  19. Bad math is never "Informative" on Sony's Monster Graphics Chip · · Score: 1

    Who modded that up?

    "462mm x 462mm? You want large? There are 25.4 mm per inch. This is saying it is almost 18.2 inches x 18.2 inches"

    462 mm^2 means the height multiplied by the width is 462, so the sides are equal to the square root of 462 (assuming it is square).

  20. The fact that they picked ColdFusion... on 4 Web Scripting Languages Compared · · Score: 1

    ... shows their cluelessness.

    ColdFusion is not an OO language, it is not even a structured programming language (you can't write functions that you call elsewhere in the same file). This means that any non-trivial web apps rapidly grow into an unmaintainable mess of code.

    And in spite of their benchmarks, any procedural code in CF is dog slow. If you hit on a bug (and there are quite a few) that causes problems with what you trying to do, you cannot switch app server vendors as you would with JSP.

    It may have been faster that Tomcat, as configured by them, but this does not mean that ColdFusion is faster than JSP. ColdFusion is interpreted, more so than Java, and is not nearly as optimised and researched as Java virtual machines are.

    The one thing I would give ColdFusion credit for is DB access, which is extremely quick and easy. You configure a DB connection in the CF administration interface, and you then refer to it by name in the code, no specifying all the connection info. This allows you to create dynamic webpages that show DB records much more quickly than with the competitive systems.

    In this regard, ColdFusion does for Web Apps what VB did for Windows desktop client apps, in that it allows very rapid development of frontends for databases. Arguably it is "the VB of web development", even more so than ASP+VBScript. But as you can imagine, the resulting code frequently ends up about as maintainable as a lot of VB apps.

  21. The question that nears clearing up... on Bacteria Revived After 250 Million Years · · Score: 2

    is whether this is a resurrected species of bacteria, or a 250 million year old specimen of a species which is still around today?
    If it is the latter, then you guys have nothing to worry about. If not, then all such research should be carefully quarantined. Even if it is one of the 99.99% of bacteria that are harmless, it might have unforseen environmental effects...

  22. RSI is real on Cubicle Blues Blamed On IT · · Score: 1

    "RSI, and other psychological conditions come and go."

    RSI isn't a psychological condition, it is having very painfull wrists or hands. I hope you never get it.

  23. Re:C'mon moderators! on One Processor, 128 32-bit Cores · · Score: 1

    May point was these post were funny, cause they were witty variations of the normal troll or puns on the post (e.g. "how about a Beowulf *2* cluster...").

  24. "One in ten office workers" - 1 in 10 people? on Cubicle Blues Blamed On IT · · Score: 2

    "One in ten office workers in Britain, the United States, Germany, Finland and Poland suffers from depression, anxiety, stress or burnout"

    Might it be the case that one in ten *people* suffers from those conditions, whether they are office workers or not?

  25. C'mon moderators! on One Processor, 128 32-bit Cores · · Score: 1

    This post and the first post are both funny. Lighten up.