Skip to content

Instantly share code, notes, and snippets.

View norwd's full-sized avatar

Y. Meyer-Norwood norwd

View GitHub Profile
@norwd
norwd / gist:65072709997542bf2ebb84f76787a302
Last active June 12, 2023 04:25 — forked from garbados/gist:f82604ea639e0e47bf44
Falsehoods Programmers Believe About Gender
  1. There are two and only two genders.
  2. Okay, then there are two and only two biological genders.
  3. Gender is determined solely by biology.
  4. Okay, it’s mostly determined by biology, right?
  5. Please tell me it’s determined by DNA.
  6. Gender can be reliably determined through visual means. After all, no man would ever wear a burka.
  7. Once gender is set, it never changes.
  8. Even if the gender can change, it will only change from the one value to the other value.
  9. Only one gender can be “active” at the same time.
  10. We’re tracking gender now, so we’ve always tracked it.
@norwd
norwd / README.md
Created March 10, 2023 02:59
3x3-bitmaps.png

3x3-bitmaps-10x-zoom

@norwd
norwd / keep-repo-private.yml
Created December 24, 2022 23:23
Use GitHub Actions to keep a repo private even if made public manually.
---
on: public
jobs:
make-private:
runs-on: ubuntu-latest
steps:
- run: gh repo edit ${{ github.repository }} --visibility private
env:
GH_TOKEN: ${{ secrets.KEEP_REPO_PRIVATE }}