Rick's Dev Notes

Version 0.3.3

Dev notes you can use

Last updated on Mon, 25 Sep 2023 19:20 UTC

Snippets

Just some common code snippets I find I have to reference.

De Morgan’s Law

Yes, this is a basic. Visualizing as code can help mentally work out confusing negations, though.

!(a && b) == !a || !b