summaryrefslogtreecommitdiff
path: root/personal/cv
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2020-07-03 00:39:52 +0200
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2020-07-03 00:40:21 +0200
commit5c3b5d7dedc17641c11485e12ed1173936edf506 (patch)
tree3243d81244911fa17aca39a09e6b97c45b1621a7 /personal/cv
parent5c12c6dd6d0d6b6a880f1937c034ca7a0fff1cec (diff)
downloadmemory-leaks-5c3b5d7dedc17641c11485e12ed1173936edf506.tar.xz
Remove resume
New one coming right up.
Diffstat (limited to 'personal/cv')
-rw-r--r--personal/cv/.gitignore2
-rw-r--r--personal/cv/Makefile23
-rwxr-xr-xpersonal/cv/add-personal-info.sh29
-rw-r--r--personal/cv/en-short.md34
-rw-r--r--personal/cv/fonts.tex12
-rw-r--r--personal/cv/personal-info.template3
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'