Please use the drop down menu next to the Blog tab at the top.
As of 12/18/2025 there are 31 blogs!
To list the blogs run the following Linux command:
wget -q -O - "https://sites.google.com/view/raybellwaves/blog" \
| grep -o '/view/raybellwaves/blog/[^"]*' \
| sed 's/^/https:\/\/sites.google.com/' \
| sort -u
or PowerShell command:
(Invoke-WebRequest "https://sites.google.com/view/raybellwaves/blog" -UseBasicParsing).Content |
Select-String -Pattern '/view/raybellwaves/blog/[^"]*' -AllMatches |
ForEach-Object { $_.Matches.Value } |
ForEach-Object { "https://sites.google.com" + $_ } |
Sort-Object -Unique