Slashdot Mirror


User: CableModemSniper

CableModemSniper's activity in the archive.

Stories
0
Comments
1,528
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,528

  1. Re:Circular Acronymns - GWU stands for... on Napster Strikes Deal With GWU · · Score: 1

    Its only recursive if your language has a call stack. If otoh, your langauge is based on graphs then it is indeed a circular (or cyclic) acronym.

  2. Re:Edit? on System Downtime, Maintenance · · Score: 1
    The best solution appears to be the history function mentioned by athakur, but I never dared to look how this is actually implemented by wikipedia and how many resources are used by that.
    cvs, patch and diff? (Kidding!)
  3. Um... on 3-D Fossils Found in Canada · · Score: 0, Offtopic

    Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn ?

  4. Re:Knighthood==recognition? on That's Sir Tim to You · · Score: 1

    Its also fairly well accepted that Lancelot was made up...by the French!

  5. Re:blech! on Ars Technica Tours Mono · · Score: 1
    I've always thought (but never actually put into practice) that an interesting way to do it would be:
    template<typename T>
    Property
    {
    private:
    T * data;
    public:
    Property(T * s) : data(s) {}
    virtual Property<T>& operator=(const T& what)
    {
    *data = what;
    return *this;
    }

    virtual operator T()
    {
    return *data;
    }

    };

    //and then

    class Someclass {
    private:
    int m_x;
    public:
    Property<int> x;

    Someclass() : x(&m_x) {}
    };

    Someclass inst;

    inst.x = 3;
    cout << inst.x + 7 << endl;

    etc.
  6. Re:the past is the future on PHP 5 Released; PHP Compiler, Too · · Score: 2, Informative

    In a really simplified explanation:
    Strongly typed - the identifier is typed
    Dynamicly typed - the data (object) is typed
    Weakly typed - the operations on the data are typed

  7. Re:Wonderful on Unix To Beef Up Longhorn · · Score: 1

    Real symlinks, (as opposed to shortcuts), /proc filesystem, etc.

  8. Re:And in related news... on Unix To Beef Up Longhorn · · Score: 1

    KHAAAAAAAAAAAAAAAN!!!

  9. Re:Wonderful on Unix To Beef Up Longhorn · · Score: 1

    This is FUD. SFU does its job quite well, and has for some time. SFU has many features that cygwin does not as well.

  10. Re:My Win desktop already runs *nix code... on Unix To Beef Up Longhorn · · Score: 1

    There are a few things that SFU has that cygwin does not. For instance a /proc filesystem (!!).

  11. Re:Turbolinux..... on Commercial DVD Software Comes to Linux · · Score: 1

    Turbolinux has been around for a whiiiiile. According to their website since '92.

  12. Re:Define 'reading' on Americans Read Fewer Books · · Score: 1

    Hmmm, snails vs. tacos...hot sauce....mmmm, Mexico wins!
    (jk, I like snails too.)

  13. Re:A clear advantage on Mozilla/Firefox Bug Allows Arbitrary Program Execution · · Score: 1

    _SPACE_ is entirely unecessary.

  14. Re:Generic programming on Favorite Programming Language Features? · · Score: 1

    try qsort with argv and see how well it sorts it.

  15. Re:Nothing new. on Online MD5 Cracking Service · · Score: 1

    This is offtopic, but I must mention when I saw your sig, at first glance I thought it was an overly elaborate regex.

  16. Re:I'm not sure... on Auto Manufacturers Running Out Of Unique IDs · · Score: 1

    Um, since they designed the current VIN system in '81 according to the article, your '60s Chevy probably didn't have a VIN in the sense they are speaking of.

  17. Re:Didn't work on me on HTML Frames Considered Harmful · · Score: 1

    Worked on Firefox 0.8 for me

  18. Re:Free - XP on FreeDOS Turns 10 Years Old Today · · Score: 1

    This is going to get modded offtopic but thats ok. Just so you guys know, I was joking, not trolling. Sorry to give the wrong impression (apparently).

  19. Re:Free - XP on FreeDOS Turns 10 Years Old Today · · Score: 0, Troll

    Just in case anyone is interested, I managed to find a link to this guy's project. Damn, uberfruk, you work fast.

  20. Re:Binary codecs and the GPL on Real adds GPL to Helix Player, RedHat/Novell Join In · · Score: 1

    Wait, so by that logic, does MPlayer violate the GPL (since you can use proprietary codecs with MPlayer)?

  21. Re:GStreamer? on Real adds GPL to Helix Player, RedHat/Novell Join In · · Score: 1

    accccccccctually, the current Helix player uses GTK widgets.

  22. Re:So... on Slashback: Civilians, Rubyx, Restrictions · · Score: 1

    Damn man, just download the tarball. For all this "Gentoo is source-based!" business, you can't compile some source unless theres a .ebuild file somewhere in your FS for it?

  23. Re:embracing? on Xgrid Agent for Unix · · Score: 2, Insightful

    And as 30 seconds of thinking will tell you, Xgrid is not Xcode.

    Care to try again?

  24. Re:How is HAL a "robot"? on C-3PO Joins R2 in the Robot Hall of Fame · · Score: 1

    I dunno about that, because later he was seperated from the ship and tacked onto a monolith. That seems to imply more of a computer than a robot.

  25. Re:VMs will solve this issue on The History of Programming Languages · · Score: 1
    A bunch of languages have this, Ruby for one I know for certain, and I believe Perl does as well.
    Or you could just do:
    #define unless(x) if(!(x))