So now that I have the GMMK, I decided to see just how bad my old Logitech G710 keyboard was after five years of service. It… wasn’t pretty. Imagine five years of never once cleaning it in a four cat household, and never even doing the usual cotton swabs soaked in rubbing alcohol every few months. Well, imagine no further!
Here it is with all of the key caps still installed:
I’ve considered this once or twice in the past, and I’ve come to the conclusion that Colleges and Universities may very well end as an institution. They’ve long since outlived their usefulness as centers of collaboration and education and devolved into mere adult daycares.
Even back when I was attending in the late 90s, it was basically High School 2.0, but with a Boarding School atmosphere and no parental oversight. These aren’t the great institutions we used to read about that once produced by the likes of Newton, Darwin, or Turing.
What I find interesting about this whole controversy with Gina Carano is that nothing she stated was inaccurate. Tribalism and othering are one of the hugest flaws in Human design that I can even imagine. It kept us safe in the beginning because we would band together in the face of adversity and increase our survival, but on a global scale, all it means is that we aren’t really happy unless we have an enemy.
So I finally decided to watch JoJo’s Bizarre Adventure out of sheer curiosity borne from the memes, and I have to say… it totally makes sense. The show is so ridiculously over the top that it practically begs to be memed.
I mean, seriously “Your first [kiss] wasn’t JoJo! It was me, Dio!” is the stuff of dreams. Practically every other line of dialog in the whole show is hammed up to 11, making it not only impossible to hate, but perfect for drinking games galore.
In the process of working on a customer migration and came up with a neat query for finding tables that don’t have a primary key:
SELECT c.oid::REGCLASS::TEXT AS table FROM pg_class c JOIN pg_namespace n ON (n.oid = c.relnamespace) LEFT JOIN pg_constraint p ON (p.conrelid=c.oid AND p.contype = 'p') WHERE c.relkind IN ('p', 'r') AND n.nspname NOT IN ('pglogical', 'information_schema', 'bdr') AND n.nspname NOT LIKE 'pg\_%' AND p.conrelid IS NULL; For anyone out there that is using pglogical, this is how you figure out if there are any tables that won’t work in the default replication set.