Me resumé

This repo stores my resume in JSON Resume Schema, written in YAML.

For ease of editing - namely collapsing multi-line strings, I am using YAML instead. Here's a note on converting back and forth from YAML and JSON, with yq (jq):

  • Converting YAML to JSON:

    yq . resume.yaml > resume.json

    and this is included in the autosave extension - check .vscode/.

  • Converting JSON to YAML (-y flag):

    yq . resume.json -y > resume.yaml