Skip to content

aedificatorum/shouldiautomateit

Repository files navigation

Should I automate it?

Live Demo

Screenshot

Inspired by xkcd 1205 (Is it worth the time?), and initially built as a spreadsheet (more in this blog post):

Is it worth the time

Publishing

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