https://github.com/sa7mon/resume-latex
Current resume
https://github.com/sa7mon/resume-latex
Last synced: 4 months ago
JSON representation
Current resume
- Host: GitHub
- URL: https://github.com/sa7mon/resume-latex
- Owner: sa7mon
- Created: 2018-10-16T20:26:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-10-29T02:02:48.000Z (8 months ago)
- Last Synced: 2026-01-29T21:26:40.636Z (5 months ago)
- Language: TeX
- Size: 622 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Resume
## Compiling
- bring up docker compose project
- shell into sharelatex container
-
```
tlmgr install fontspec clearsans pstricks fontawesome textpos ragged2e etoolbox ifmtarg marvosym parskip pgf enumitem xkeyval booktabs caption
apt install texlive-fonts-extra
apt install fonts-font-awesome
```
## Notes
* Compile using XeLaTeX
## 2025-08-25 Notes
Last time setting this up, used Overleaf Toolkit because the docker-compose project brought up with a user that I couldn't hack into with the reset URL.
Overleaf Toolkit needed to be patched to get past the Mongo version check:
`lib/shared-functions.sh`
```diff
function read_mongo_version() {
- local mongo_image=$(read_configuration "MONGO_IMAGE")
- local mongo_version=$(read_configuration "MONGO_VERSION")
+ local mongo_image="mongo"
+ echo $mongo_image
+ # local mongo_image=$(read_configuration "MONGO_IMAGE")
+ # local mongo_version=$(read_configuration "MONGO_VERSION")
+ local mongo_version="6.0"
+ echo $mongo_version
if [ -z "${mongo_version}" ]; then
if [[ "$mongo_image" =~ ^mongo:([0-9]+)\.(.*)$ ]]; then
# when running a chain of commands (example: bin/up -> bin/docker-compose) we're passing
@@ -54,7 +58,7 @@ function read_mongo_version() {
exit 1
fi
else
- if [[ ! "$mongo_version" =~ ^([0-9]+)\.(.+)$ ]]; then
+ if [[ ! "$mongo_version" =~ ([0-9]+)\.(.+)$ ]]; then
```