Slashdot Mirror


User: heffrey

heffrey's activity in the archive.

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

Comments · 564

  1. If MS is a failing business, then pigs can fly! on Motley Fool Writes Off Microsoft · · Score: 0

    You may mock MS, but they just can't seem to help making massive piles of cash year after year. You may not like their products, but you've got to love their business!

  2. Re:Good Software Takes Ten Years to Write on Mozilla Celebrates Its 10th Birthday · · Score: 0

    And bad software takes 10 years to un-write too!

  3. Re:Airplane Operating Systems on Failed Avionics a Possible Cause of BA038 Crash · · Score: 0

    That's kind of my point. Typical of Slashdot for folk to have a pop at Windows when talking about avionics! Perhaps Slashdot should be renamed as "We hate M$".

  4. Call in the experts.... on Failed Avionics a Possible Cause of BA038 Crash · · Score: 0

    .....that's right, idle speculation from Slashdot readers, sure to be right on the money and more likely to reveal the true cause than the trained, expert investigators!

  5. Re:Airplane Operating Systems on Failed Avionics a Possible Cause of BA038 Crash · · Score: 0

    Would Linux be better at this?

  6. Re:Well, that doesn't matter on Microsoft Says VBA Is Here To Stay · · Score: 0

    There are no comments bashing Microsoft at all so far, let alone claiming they should retain VBA. Can you read? There are loads of comments bashing MS that pre-date grandparent.
  7. Actually, the Register's story is inaccurate.... on VBA Going Away, Macs Now, PCs Soon · · Score: 0

    ....because VBA for Office on Windows is here to stay: http://blogs.msdn.com/excel/archive/2008/01/16/clarification-on-vba-support.aspx.

    But that's not an interesting story is it since we can't bash MS anymore. Anyway, why let the truth get in the way of a good story!!

  8. Slashdot doesn't like Vista on Vista Shipped On 39% of PCs In 2007 · · Score: 4, Funny

    I'm picking up a little vibe here that Slashdot editors and readers don't like Vista.

    Has anyone else noticed or am I just imagining it....

  9. Re:I'm glad to see so many issues being resolved.. on Vista SP1 Guides for IT Professionals Released · · Score: 0

    I don't think it means that it took two seconds to estimate copy progress. I think it means that the estimate is now accurate to about two seconds.

    But that's pure guess work because the text isn't precise.

  10. Re:Linux Wars? on Fedora 8 A Serious Threat to Ubuntu · · Score: 0

    But it's quite common to read here that XP is Vista's biggest threat. So why can't this be so in open source world?

  11. Morons deserve what they get on Trekkie Sues Christie's for Fraudulent Props · · Score: 0

    Anyone who pays $6,000 for such an item (even with the dollar being so worthless) gets no sympathy from me!

  12. Re:Ask a Bicycle Racer on Mathematicians Solve the Mystery of Traffic Jams · · Score: 0

    This happened 3 days ago: http://www.youtube.com/watch?v=S0tMhlhnga0

    Ouch!

    Is track racing really safer than road racing? Evidence?

  13. Re:Counting shows nothing on More Mac Vulnerabilities Than Windows In 2007? · · Score: 0

    Shouldn't Slashdot link to some more insightful analysis?


    Then it wouldn't be Slashdot.
  14. Re:Open vs. Closed Source Security Implications on SquirrelMail Repository Poisoned · · Score: 0

    Safeguard is to host MD5 on different server to the product and to script regular checks of MD5 and product. I'm guessing it's a trivial cron/scripting language of your choice job - no more than an hour or two, most of which is setting up systems and procedures for release.

    Something like sourceforge should be offering this as part of their package (in fact they probably do).

  15. Re:Vista on Opera Files EU Complaint Against Microsoft · · Score: 1, Interesting

    I simply cannot believe this. Does anyone have a link to anything which gives reliable evidence that this is the case?

  16. Re:As if this is news? on Firefox 2.0.0.11 Released · · Score: 0

    Obviously you don't like Digg (me neither). But what you also hint that there are sites which offer a more lucid take on technology news? What would you recommend? Can't see this as an Ask Slashdot topic ever!

  17. Re:I Post Anonymously on Microsoft Admits XP Has Same Bug As Win2K · · Score: 0

    Can you "show, provably" that "many are not either"?

    Only joking!

  18. Re:I Post Anonymously on Microsoft Admits XP Has Same Bug As Win2K · · Score: 0, Insightful

    Why is this flamebait? Surely the original post and the pathetic summary was flamebait?

    As lots of people have commented, if you have admin rights you own the box.

  19. Re:One word: Management on Firefox 3 Beta 1 Review · · Score: 0

    Hear hear!

    One poster has mentioned 3rd party re-packaging offerings but nearing the end of 2007 it's astonishing that Mozilla can't supply decent MSI packages of its flagship product. Or perhaps they don't really want to gain market share on corporate Windows desktops?

    The other issue that is really hard is extensions. Realistically Firefox only comes alive when you get some decent extensions added. These would need to be deployable via MSI also before FF got serious corporate acceptance.

  20. Re:Why allocate memory on the fly? on C# Memory Leak Torpedoed Princeton's DARPA Chances · · Score: -1

    As I recall, Delphi 2006 introduced a new memory manager, FastMM, built not by Borland but as part of a community project.

    I think my use of the word moron was a little over the top - I'm sure I learnt the lesson the same way, by experience.

    However, I don't think you are right in saying that memory allocation in Windows is the problem. The Windows API in question is VirtualAlloc/VirtualFree. However, this is not designed for use directly by application code. It is meant for use by local application memory managers. On x86 memory is virtual and paged and the OS manages page tables etc. for each process. Each page has a minimum size (don't know what it is), but calling VirtualAlloc to ask for, say, 32 bytes of memory would be sheer lunacy.

    Applications have different memory use patterns and so it only really makes sense to let applications tune their memory allocation strategies. Delphi's MM was designed for general purpose use by typical Delphi apps. They typically allocate and deallocate relatively small blocks of heap memory as objects are created and destroyed. If you have an app that doesn't perform well with the standard MM then you can plug in your own custom one.

    On other OSs that use x86 I'm sure the same basic rules apply. For example I doubt that malloc on Linux x86 glibc will do virtual memory paging for each call. Instead it will do the paging for large blocks and then use a sub-allocator just as the Delphi MM does. I would also imagine, but I don't know anything about it, that Linux offers memory reservation and committing services analagous to Windows VirtualAlloc/VirtualFree.

  21. Re:Why allocate memory on the fly? on C# Memory Leak Torpedoed Princeton's DARPA Chances · · Score: -1

    It's not Windows doing the memory allocation, it's the Delphi MM. The Delphi MM isn't bad, it's better in more recent versions of Delphi.

    Only a moron would allocate and deallocate the same sized buffer on every mouse move triggered paint. But still you choose to blame Windows rather than looking in the mirror for the culprit!

  22. Shiny on Data Loss Bug In OS X 10.5 Leopard · · Score: -1

    Yes but the interface looks better than Windows, the menus have rounded corners, and the design is better.

    Who cares whether it works or not anyway!

  23. Re:Um.. on Bypass Windows With Fast-Boot Technology · · Score: -1

    You'd have to have some applications first though! Or is that where WINE comes in?

  24. Re:Offline Google applications on Can Google Kill PowerPoint? · · Score: -1

    Being able to simply dump the whole thing to a PDF for the dead tree version is a nice feature as well Of course you could just do that with PP.
  25. 10 years of Slashdot on Wolfram's 2,3 Turing Machine Not Universal · · Score: -1

    And it's still producing sensationalised, misleading headlines like this. Bring on the next 10 years!