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:

DDS said...

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);
}
}

Anonymous said...

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

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