memory-leaks

Still reachable: lots of words in many pages.
git clone https://git.kevinlegouguec.net/memory-leaks
Log | Files | Refs | README | LICENSE

commit 5c3b5d7dedc17641c11485e12ed1173936edf506
parent 5c12c6dd6d0d6b6a880f1937c034ca7a0fff1cec
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Fri,  3 Jul 2020 00:39:52 +0200

Remove resume

New one coming right up.

Diffstat:
Dpersonal/cv/.gitignore | 3---
Dpersonal/cv/Makefile | 23-----------------------
Dpersonal/cv/add-personal-info.sh | 29-----------------------------
Dpersonal/cv/en-short.md | 34----------------------------------
Dpersonal/cv/fonts.tex | 12------------
Dpersonal/cv/personal-info.template | 3---
6 files changed, 0 insertions(+), 104 deletions(-)

diff --git a/personal/cv/.gitignore b/personal/cv/.gitignore @@ -1,2 +0,0 @@ -results -personal-info -\ No newline at end of file diff --git a/personal/cv/Makefile b/personal/cv/Makefile @@ -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 @@ -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 @@ -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 @@ -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 @@ -1,3 +0,0 @@ -birthday='1970-01-01' -location='Somewhere' -phone_number='+42 7 42 42 42 42'