Skip to content

Instantly share code, notes, and snippets.

View gbvanrenswoude's full-sized avatar

Gijs van Renswoude gbvanrenswoude

View GitHub Profile
@gbvanrenswoude
gbvanrenswoude / graph-out.sh
Created May 15, 2020 19:51
graph terraform infra out for architecture
terraform graph | dot -Tsvg > graph.svg
inkscape -z -e frontofficev2.png -w 1000 -h 1000 graphg.svg
@gbvanrenswoude
gbvanrenswoude / convert.sh
Created May 15, 2020 11:13
convert json to html in bash (using python)
python - <<EOF
from json2html import *
with open("report.json", "r") as f:
with open("report.html", "w") as nf:
nf.write(json2html.convert(json = f.read()))
EOF