Slashdot Mirror


User: drkvogel

drkvogel's activity in the archive.

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

Comments · 4

  1. Doom Dreams on Slashdot Asks: What's Your Favorite Doom Story? · · Score: 5, Funny

    Apart from having Doom dreams, which I'm sure we all had (yeah?), I remember going to a supermarket after a long session, and instead of turning to walk into an aisle, turning before the aisle, and strafing out into it. At that point, Doom had leaked into real life....

  2. Ableton Live on Ask Slashdot: What Windows-Only Apps Would You Most Like To See On Linux? · · Score: 1

    Anyone?

  3. My (Chrome) List on Ask Slashdot: Most Useful Browser Extensions? · · Score: 1

    Chrome to Phone (send a link from your desk/laptop to your phone to view later)
    Snipe (search and locate tabs)
    Diigo bookmark (best alternative to Delicious after Delicious went downhill - save links to cloud with tags etc)
    Tabs Outliner (manage windows and tabs, recover sessions, hibernate windows and tabs - absolutely awesome!)
    AdBlock (of course)

  4. Re:Procedural vs OO on Anthropomorphism and Object Oriented Programming · · Score: 1

    Haha, but if you'd done it properly in OO, you would have a Toastable superclass that has a default toast() method that can be overridden for different types of toastable things if required. E.g. Bagel : public Toastable might use the default Toastable::toast(), but PopTart : public Toastable might have its own PopTart::toast() method. If you have a toastable object that there is not a specialised class for - fine, it's a Toastable and uses Toastable::toast(). In a trivial example like this, it might seem overkill, but scale up just a bit and it quickly becomes very useful.