Slashdot Mirror


User: Orac

Orac's activity in the archive.

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

Comments · 7

  1. Listen on your commute on Ask Slashdot: Transitioning From Developer To Executive? · · Score: 0

    Subscribe to the "Manager Tools" podcast and listen during your commute. You'll arrive at work energized every day.

  2. Re:I think I cried iirc on Blakes Seven To Return · · Score: 0

    Right here, buddy.

  3. Tick tick on Technologies that Have Exceeded Their Expectations? · · Score: 0

    My pacemaker has worked far longer than I expec

  4. sendmail, sophos and Mailscanner on Server Side Virus Scanning Options? · · Score: 0

    We've been using sendmail+sophos at our big customer sites for well over 18 months now, and it's great. We sailed through the various virus storms (Melissa, klez, etc) without a hiccup.

    When we get the monthly update CD we need to do three installs. One is the mail server update, one is the file server update, and one is the user update. The user update is easy, because it's done to the file server, and all user workstations simply update themselves from that. WinNT/2k workstations do it in the background via the system service, and the few Win9X workstations do it next time they log in.

    Between the monthly installs we use wget and a couple of trivial scripts to go out to their website every 2 hours and pick up the latest virus definition files. These are automatically applied to each installation, so we're never more than 2 hours behind in the latest virus info.

    We haven't yet had a situation where we've heard reports of some new virus that isn't already known to both the server and desktop based virus scanning.

  5. Early Borland/Turbo C++ bug on Pet Bugs? · · Score: 0

    The very early versions of Turbo C++ for DOS had an wonderful object destruction bug. If you constructed an object on the stack in a destructor, like this:

    Foo::~Foo()
    {
    Bar b;
    ...
    }

    then the destructor for "b" was called TWICE.

  6. Nothing special about Open Source on Essay on Open Source as an Art Form · · Score: 1

    There's nothing about the Open Source model that makes it any more or less artistic than any other software development model.

    As for the debate about software being engineering or art, it's always both: it's just a matter of where it sits on the scale between the two.

    Most posts are relating the art to pictures hanging in galleries, but I don't think this is a valid analogy, because pictures serve no functional purpose: they're pure art, and exist for no other reason that to give pleasure through perceived asthetic beauty.

    Software, on the other hand, is required to be functional as well. I rather think that the art in software is closer to architecture: you need to the scientific fundamentals underneath you to make the thing work and hang together, but once that's established, you've got an amount of creative freedom with which you can express yourself.

    Orac.

  7. Re:My favorite design process on Ask Slashdot: On Good Software Design Processes · · Score: 1

    How true it is that version 2 is always the first
    good release. Always plan to throw one away.