kstrauser 6 days ago

I know this person IRL, and I'm certain it's not.

1
3cats-in-a-coat 6 days ago

Prove it with SQL.

kstrauser 5 days ago

  DO $$
  BEGIN
      ASSERT (
          SELECT
              COUNT(1)
          FROM
              friends JOIN posters ON friends.id = posters.id
          WHERE
              posters.username = 'devoutsalsa'
      ) = 1,
      'He''s in there, I swear it!';
  END;
  $$;