❓
Inspired by xkcd 1205 (Is it worth the time?), and initially built as a spreadsheet (more in this blog post):
Published via the gh-pages branch.
Initial setup
git clone https://github.com/aedificatorum/shouldiautomateit.git
git clone https://github.com/aedificatorum/shouldiautomateit.git shouldiautomateit-site
cd shouldiautomateit-site
git checkout gh-pages
cd..
cd shouldiautomateit
Build & deploy
npm install
npm run build
Get-ChildItem -Path '..\shouldiautomateit-site' -Recurse -Exclude .git |
Select -ExpandProperty FullName |
Sort-Object -Property Length -Descending |
Remove-Item -Force
Copy-Item .\build\* ..\shouldiautomateit-site -Recurse -Force -Verbose
cd ..\shouldiautomateit-site
git add .
git commit -m "adding 1% more awesome"
git push