lwhjp

joined 1 year ago
[–] [email protected] 45 points 7 months ago

Most people would use "word", "half-word", "quarter-word" etc, but the Anglophiles insist on "tuppit", "ternary piece", "span" and "chunk" (that's 5 bits, or 12 old bits).

[–] [email protected] 1 points 11 months ago

Nothing followed by the sound of a lot of cars leaving the Facility very fast.

[–] [email protected] 76 points 1 year ago

TDD

const max12 = (x, y) => {
    if (x === 1 && y === 2) {
        return 2;
    } else if (x === 7 && y === 4) {
        return 7;
    } else {
        return x;
    }
};