Tuesday, November 17, 2020

Proof of Guilt

 Professor says questioning systemic racism ‘is itself offensive and racist’ [More]

So if a defendant pleads "Not guilty," you know you've got your man!

[Via Michael G]

2 comments:

  1. The professor is dabbling about with a technique known as "recursion". Now, recursion is a powerful tool and can easily solve problems that would be difficult to solve using most other techniques. But as with all powerful tools, one must be careful lest one's powerful tool turn and bite one on the butt.

    In inexperienced hands, recursion can and most likely will, drop one into the dreaded "infinite loop".

    https://en.wikipedia.org/wiki/Recursion

    Recursion used incorrectly:

    recursion def: noun -- see recursion

    recursion used correctly:

    unsigned int factorial(unsigned int n) {
    if (n == 0) {
    return 1;
    } else {
    return n * factorial(n - 1);
    }
    }

    ReplyDelete
  2. If the witch floats it is proof of witchery, hang her!

    If the alleged witch sinks, it is proof of innocence, too bad.

    ReplyDelete

Keep it on topic. Submit tips on different topics via left sidebar Contact Form.

Note: Only a member of this blog may post a comment.