diff options
Diffstat (limited to 'personal/cv')
| -rw-r--r-- | personal/cv/.gitignore | 2 | ||||
| -rw-r--r-- | personal/cv/Makefile | 23 | ||||
| -rwxr-xr-x | personal/cv/add-personal-info.sh | 29 | ||||
| -rw-r--r-- | personal/cv/en-short.md | 34 | ||||
| -rw-r--r-- | personal/cv/fonts.tex | 12 | ||||
| -rw-r--r-- | personal/cv/personal-info.template | 3 |
6 files changed, 0 insertions, 103 deletions
diff --git a/personal/cv/.gitignore b/personal/cv/.gitignore deleted file mode 100644 index 30c5702..0000000 --- a/personal/cv/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -results -personal-info
\ No newline at end of file diff --git a/personal/cv/Makefile b/personal/cv/Makefile deleted file mode 100644 index 00715cd..0000000 --- a/personal/cv/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -PDFs = $(patsubst %.md,results/%.pdf,$(wildcard *.md)) -inputs = $(patsubst %.md,results/%.md,$(wildcard *.md)) - -pandoc_options = --verbose - -$(PDFs): pandoc_options += \ ---pdf-engine=xelatex \ ---include-in-header=fonts.tex \ - -V mainfont="DejaVu Sans" -V colorlinks - -all: $(PDFs) - -results/%.pdf: results/%.md fonts.tex | results - pandoc $< $(pandoc_options) -o $@ - -results/%.md: %.md add-personal-info.sh | results - ./add-personal-info.sh $< $@ - -results: - mkdir $@ - -clean: - -rm -r results diff --git a/personal/cv/add-personal-info.sh b/personal/cv/add-personal-info.sh deleted file mode 100755 index 2e9ea8b..0000000 --- a/personal/cv/add-personal-info.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -set -eu - -input=$1; output=$2 -cp ${input} ${output} - -. personal-info - -fullname=$(getent passwd $(whoami) | cut -d: -f5 | cut -d, -f1) -sed -i s/INSERT-FULLNAME-HERE/"${fullname}"/ ${output} - -# On the one hand, anyone can compute my age from my birth date. On -# the other hand, wasting reader brain cycles on this computation -# sounds kind of rude. On the gripping hand, having to bump my age -# manually every year would be silly. Clearly the way forward is to -# summon the powers of bash, date, bc and sed to save us the trouble. - -birthstamp=$(date -d "${birthday}" +%s) -now=$(date +%s) -age=$(bc <<< "(${now}-${birthstamp})/(3600*24*365.25)") -sed -i s/INSERT-BIRTHDATE-HERE/"${birthday} (${age})"/ ${output} - -sed -i s/INSERT-LOCATION-HERE/"${location}"/ ${output} - -sed -i s/INSERT-PHONE-HERE/"${phone_number}"/ ${output} - -# Set by .profile and/or .xsessionrc. -sed -i s/INSERT-MAIL-HERE/${EMAIL}/ ${output} diff --git a/personal/cv/en-short.md b/personal/cv/en-short.md deleted file mode 100644 index 78424c7..0000000 --- a/personal/cv/en-short.md +++ /dev/null @@ -1,34 +0,0 @@ -% INSERT-FULLNAME-HERE - -------------- --------------------- -Date of birth INSERT-BIRTHDATE-HERE -Location INSERT-LOCATION-HERE -📱 INSERT-PHONE-HERE -📧 INSERT-MAIL-HERE -------------- --------------------- - -Areas of interest: system & network programming, cryptography - -# Skills - -------------------- ------------------------------------------------ -Software tools SCM (**Git**, SVN), IDEs (**Emacs**, Eclipse), - GNU toolchain, Debian packaging, Jenkins, Docker -Methodologies Continuous integration, Agile, TDD -------------------- ------------------------------------------------ - -## Programming languages - ------------ ------------------------------------------------- -fluent **C, Python 3, Bash, Makefile** -dabbles in Emacs Lisp, Rust, assembly -notions C++, Java, C#, Go, Ruby, Pascal, Prolog, Streamit ------------ ------------------------------------------------- - -## Spoken languages - -------- ------------------------ -native French -fluent English (TOEIC: 990) -notions Spanish, Russian, German -------- ------------------------ diff --git a/personal/cv/fonts.tex b/personal/cv/fonts.tex deleted file mode 100644 index 1a36389..0000000 --- a/personal/cv/fonts.tex +++ /dev/null @@ -1,12 +0,0 @@ -\tracinglostchars=2 - -\usepackage{fontspec} -\usepackage[Latin,NumberForms,Punctuation,Symbols]{ucharclasses} - -\newfontfamily{\mydefaultfont}{Symbola} -\newfontfamily{\mymainfont}{DejaVu Sans} - -\setTransitionsForSymbols{\mydefaultfont}{\mymainfont} -\setTransitionsFor{NumberForms}{\mydefaultfont}{\mymainfont} -\setTransitionTo{Punctuation}{\mymainfont} -\setTransitionTo{Latin}{\mymainfont} diff --git a/personal/cv/personal-info.template b/personal/cv/personal-info.template deleted file mode 100644 index 0ec9b09..0000000 --- a/personal/cv/personal-info.template +++ /dev/null @@ -1,3 +0,0 @@ -birthday='1970-01-01' -location='Somewhere' -phone_number='+42 7 42 42 42 42' |
