├── .github └── workflows │ └── build-deploy-pdf.yaml ├── .prettierrc ├── CNAME ├── LICENSE ├── README.md ├── base-resume.tex ├── embed.html ├── favicon.ico ├── index.html ├── networking ├── embed.html ├── index.html └── networking-resume.tex └── static └── img └── og-img.png /.github/workflows/build-deploy-pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshKapadia2/resume/HEAD/.github/workflows/build-deploy-pdf.yaml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshKapadia2/resume/HEAD/.prettierrc -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | resume.harshkapadia.me 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshKapadia2/resume/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshKapadia2/resume/HEAD/README.md -------------------------------------------------------------------------------- /base-resume.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshKapadia2/resume/HEAD/base-resume.tex -------------------------------------------------------------------------------- /embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshKapadia2/resume/HEAD/embed.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshKapadia2/resume/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshKapadia2/resume/HEAD/index.html -------------------------------------------------------------------------------- /networking/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshKapadia2/resume/HEAD/networking/embed.html -------------------------------------------------------------------------------- /networking/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshKapadia2/resume/HEAD/networking/index.html -------------------------------------------------------------------------------- /networking/networking-resume.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshKapadia2/resume/HEAD/networking/networking-resume.tex -------------------------------------------------------------------------------- /static/img/og-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshKapadia2/resume/HEAD/static/img/og-img.png --------------------------------------------------------------------------------