Slashdot Mirror


User: ungerware

ungerware's activity in the archive.

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

Comments · 57

  1. Re:Remark about Dogma incorrect on Review: Jay and Silent Bob Strike Back · · Score: 1

    Not so much worse than George Burns.

  2. Re:If more people would fight back on Day In The Life Of Net Scam Artists · · Score: 2

    I got one that began with this little gem:

    Interracialsex does not send unsolicited emails.

    Funny, I don't recall soliciting...

  3. fried it all?! on Rebooting The World? · · Score: 2

    Say some cataclysm occurs that fries all microprocessors and scrambles the contents of all existing ROMs, disks, CD-ROMs, and any other machine-readable media in all computers.

    The first thing I'd do is design a better surge supressor!

  4. Re:Kids these days on Making Software Suck Less, Pt. II · · Score: 1

    I don't think GC will be truly accepted in the hard-core, must-collect-manually community until it's predictable enough to be used in hard real-time applications.

    We need to be able to say, "Automatic GC will not prevent us from guaranteeing allocation and deallocation times, and we will not fail if there's still N bytes available (that is, we can make solid predictions about fragmentation)"

    Not to worry, we're working on it :)

  5. Re:Kids these days on Making Software Suck Less, Pt. II · · Score: 1

    Kids these days... Automatic register allocation isn't for real programmers!

    Seriously, auto_ptr and template tricks are great, but you still need either careful management or an automatic collector to handle reference cycles. Reference counting misses those.

    Admittedly, there are a lot of applications for which garbage collection in its current incarnations is inappropriate. However, there are even more applications for which it is. I also think it's quite likely that several years down the line we will look upon garbage collection the same way we look at register allocation now.

    When C was first being developed, assembly programmers were very resistent to the compiler doing registry allocation. That's why the register keyword was put in the spec. How many people use it now? Not many, because the compiler (after a few iterations) did a really good job of register allocation.

    Now that runtime systems (like Java) are being developed to do automatic garbage collection, C++ programmers are equally resistent. As runtime systems get better (and perhaps GC gets embedded in hardware, but that's a whole other debate), it's quite likely they will do a really good job.

  6. Re:NAT: Linux vs. W2k on Linux 2.4's Firewalling · · Score: 1

    Can you do port forwarding in W2K (without 3rd party software)? If you can, I haven't been able to figure out how.

  7. The RFC? That's a laugh. on SSH Claims Trademark Infringement by OpenSSH · · Score: 1

    I've developed a client as a school project. SSH isn't even in compliance with the RFCs.

    It's just little things, like keys being sent as SSH-strings instead of SSH-mpints, or headers being formatted slightly differently. It's a good thing you can peruse and play around with the source. Otherwise, figuring out the protocol would be damn near impossible!