311
It's easier to remember the IPs of good DNSes, too.
(lemmy.sdf.org)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
SQL
Depends on the dialect. I mostly use Presto and MySQL at work, and both allow
!=
.Presto also lets you use
NOT
for booleans - instead ofWHERE foo = false
, you can doWHERE NOT foo
.