Slashdot Mirror


User: Bigmell

Bigmell's activity in the archive.

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

Comments · 9

  1. Re:Public Library, check out DVDs for FREE!! on Leaked Wolverine Origin Trailer Makes the Rounds · · Score: 0

    nice

  2. Owner of the material on the laptop on Online Revenge · · Score: 0

    Correct me if im wrong, but since that data was on the laptop that he BOUGHT, that means he now owns the data. And there is no law against posting *your* data on *your* website on the internet.

    The seller really shouldnt have any legal recourse. Of course posting the passport, bank information, etc would be kinda shady, but the buyer didnt do this he just posted the (embarassing) pictures.

  3. Favorite stewie quotes on Fox Considering a Return of "Family Guy" · · Score: 5, Funny

    My favorite quotes, cant remember them exactly but i'll try...

    Meg: Happy Birthday Stewie! You want some ice cream?

    Stewie: yes, but NO SPRINKLES! For every sprinkle I find, I shall kill you.
    -----------
    Mom: You look as happy as when you were born

    Stewie: But of course, that was my victory day, the fruition of my deeply laid plans to escape from that curse-ed ovarian bastille. (looks at mother who has his mind control device) Return the device woman!

    -----------
    Stewie: Excellent! The weather machine is nearly completed! What do you say to that broccoli? (broccoli just sits there)... STOP MOCKING ME!
    -----------
    Mom: Stewie, why dont you play in the other room.
    Stewie: Why dont you BURN IN HELL!
    -----------
    Stewie: (in diaper) I say, am I to spend the entire day wallowing around in my own feces?
    -----------
    Stewie: (Captured in airport trying to escape by security guard) Damn you! You're one of them arent you? What are they paying you? I'll double it! I'll give you whatever you want! Money! Women! (looks at him precariously) Men?
    -----------
    Stewie: (to Mom) Ohhh blast you and your estrogenical treachery!
    -----------
    Stewie: Well well Mother... We meet again!
    Mom: Stewie I thought I tucked you in an hour ago?
    Stewie: Not tightly enough it would seem! And now you contemptible harpy I shall end your oppressive reign of matriarchal tyranny.
    ------------
    Stewie: (to mom) Damn you vile woman! You've impeded my work since the day I escaped from your wretched womb.

    Im sure there are lots more :)

  4. uhhh on Chemical Element 110 To Be Named · · Score: 1

    Did anybody else read that as "damn stadium"?

  5. Re:hehe.. sorta on Latest Proposals for C++0x · · Score: 1

    &operator+(matrix matrix2)
    { //add matrices here
    return matrix3;
    }

    This is what I do... Im not sure but I think this allows you to do cool stuff like
    matrix1 = matrix2 = matrix3 + matrix4 (if = operator loaded in a similar way).

  6. In other news... on Debugging in OSS Always Faster · · Score: 1, Offtopic

    People who use OSS extensively also tend to have bigger penises.

  7. Re:Changes? on SCO Gives Friday Deadline To IBM · · Score: 1

    Are they ill tempered?

  8. When the RIAA comes (probably right after kazaa) on Ask Bram Cohen about BitTorrent · · Score: 1

    What kind of response will you give to the lawyers. I always thought in cases like these you could take "guns dont kill people, people kill people" approach and say you cant control what kind of content your users post. But normally that doesnt work. So when the RIAA comes do you plan to fold or fight?

  9. OpenGL Matrix Stack on Pet Bugs? · · Score: 2, Interesting

    I donno if this counts but I had a hell of a time (an entire semester!) figuring out why one of my animations worked properly then after a while (when idling) everything just shifted to the center (0,0,0)

    Basically I found that at the end of your display function you have to make sure you pop all your matrices off the stack, otherwise the stack fills and everything shifts to the center.

    The bug part is that OpenGL gives you no error! It just allows you to push to full stacks and pop off empty stacks all day with no error and no way to view the stack or set the stack back to zero.

    Our last project (for class) had to do with lighting so I included in the readme "After 15 seconds everything translates to the center. But the lights still work!" :)