Slashdot Mirror


User: Odensgatan15

Odensgatan15's activity in the archive.

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

Comments · 2

  1. Re:Why do cases take long? on SCO Denied Again In Court · · Score: 4, Insightful

    Because lawyers get paid by the hour. That's why.

  2. Re:PhD in CS is WAY overrated on Microsoft's Personnel Puzzle · · Score: 1

    // Compute all bits at the same time.
    // For each position, two or more zeros produce a zero,
    // two or more ones produce a one.
    public int vote(int a, int b, int c)
    {
    return (a & b) | (b & c) | (a & c);
    }