My CV
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 24 lines 574 B view raw view rendered
1# CV 2 3Now with the ultamate domain flex - https://jasper.cv 4 5This is my CV and is adapted from the [jitinnair1/autoCV](https://github.com/jitinnair1/autoCV) project. 6Ty to @krn for the inspo :) 7 8![preview of the cv](https://cv.jaspermayone.com/jaspermayone-cv.jpeg) 9 10### Setup 11 12For this to work you need `latexmk` installed which can be done with `brew` on darwin: 13 14```bash 15brew install latexmk 16``` 17 18then just run the following to rebuild the pdf each time you change something 19 20```bash 21make # build the pd 22make clean # rm the latex steps 23make distclean # rm the output 24```