Slashdot Mirror


User: cheesestraws

cheesestraws's activity in the archive.

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

Comments · 3

  1. Re:Can't help it... on PC in a.... Sphere? · · Score: 1

    - What do you have if you have a big green ball in one hand and a big green ball in the other?
    - The undivided attention of the Incredible Hulk

    Sorry... :P

  2. The problem is this... on Conspiracies And Probability · · Score: 1

    ... people want there to be conspiracy theories so that there's a distinction between "us" and "them". Nobody wants to admit it's "us" doing the bad things - a sinister panel of people in a darkened room is a much more convincing force for bad than "ordinary people".

  3. Re:Some weird VBScript bugs on Pet Bugs? · · Score: 1

    As regards your top 'bug':

    If I remember correctly, false is 0, and anything else is true. So:

    0 -> false
    not 0 -> 0xFFFF (or however many bytes) -> true
    1 -> true
    not 1 -> 0xFFFE (or however many bytes) -> still true.

    I think that's right; it's been a while since I did any VB whatsoever.