Please use the drop down arrow under "Cheat sheets" in the top right.
As of 12/18/2025 there are 344 cheat sheets!
To list all cheat sheets run the following Linux command:
wget -q -O - "https://sites.google.com/view/raybellwaves/cheat-sheets" \
| grep -o '/view/raybellwaves/cheat-sheets/[^"]*' \
| sed 's/^/https:\/\/sites.google.com/' \
| sort -u
or powershell command:
(Invoke-WebRequest "https://sites.google.com/view/raybellwaves/cheat-sheets" -UseBasicParsing).Content |
Select-String -Pattern '/view/raybellwaves/cheat-sheets/[^"]*' -AllMatches |
ForEach-Object { $_.Matches.Value } |
ForEach-Object { "https://sites.google.com" + $_ } |
Sort-Object -Unique