Compare commits

..

No commits in common. "1e28706babf12e180a6173d2431c3a9812c68389" and "06ee3ae250ed9787c36f34f08a4420c0ff05648f" have entirely different histories.

12 changed files with 190 additions and 316 deletions

5
Jenkinsfile vendored
View File

@ -16,10 +16,7 @@ pipeline {
}
steps {
echo 'Building'
sh "#!/bin/bash \n" +
'''export TYPST_INSTALL="/home/jenkins/.typst"\n''' +
'''export PATH="$TYPST_INSTALL/bin:$PATH"\n''' +
'''make build'''
sh '''PATH="$TYPST_INSTALL/bin:$PATH" ./render.sh'''
}
}
// stage('Deploy') {

View File

@ -1,15 +0,0 @@
.PHONY: clean compile build
.DEFAULT_GOAL := build
NAME := Felix
SURNAME := Desmaretz
clean:
rm -f out/*
compile:
mkdir -p out
typst compile --font-path fonts cv_en.typ && mv cv_en.pdf "out/Resume_${SURNAME}_${NAME}.pdf"
typst compile --font-path fonts cv_fr.typ && mv cv_fr.pdf "out/CV_${SURNAME}_${NAME}.pdf"
build: clean compile

View File

@ -12,8 +12,6 @@
## Usage
To compile, run `./render.sh` or `make build`
To compile, run `./render.sh`
To modify the content, see `data/` directory.
To modify the layout and rendering, see `cv/` directory.
To modify the content, see `data/` directory.

119
cv/cv.typ
View File

@ -98,12 +98,6 @@
]
}
#let cvsummary(info, isbreakable: true) = {
if info != none {
block(width: 100%, inset: ("left": 3%, "right": 3%))[#h(1em) #text(weight: "regular")[#info.summary]]
}
}
#let cvwork(lang, info, isbreakable: true) = {
if info.experience != none {
block[
@ -132,11 +126,6 @@
#text(weight: "semibold", size: 9.0pt, fill: luma(30.6%))[#p.what #h(1fr)
#start #sym.dash.en #end] \
// highlights or description
#if "technologies" in p and p.technologies != none [
#text(weight: "light", style: "italic")[
Technologies: #eval(p.technologies.join(" #sym.circle.filled.small "), mode: "markup")
]
]
#for hi in p.why [
- #text(weight: "light")[#eval(hi, mode: "markup")]
]
@ -176,46 +165,9 @@
// line 2: degree and date
#text(weight: "semibold", size: 9.0pt, fill: luma(30.6%))[#edu.what #h(1fr)
#start #sym.dash.en #end] \
#if edu.why != none and edu.why.len() > 0 {
for hi in edu.why [
- #text(weight: "light")[#eval(hi, mode: "markup")]
]
}
]
}
]
}
}
#let cvprojects(lang, info, isbreakable: true) = {
let projects = info.projects
if projects != none {
block[
== #projects.title
#for project in projects.content {
// parse ISO date strings into datetime objects
let start = utils.strpdate(lang, project.startDate)
let end = utils.strpdate(lang, project.endDate)
// create a block layout for each project entry
block(
width: 100%,
breakable: isbreakable,
)[
// line 1: project name
#if project.url != none [
*#link(project.url)[#project.what]* \
] else [
*#project.what* \
]
// line 2: organization and date
#if "with" in project and project.with != none [
#text(style: "italic")[#project.with] #h(1fr) #start #sym.dash.en #end \
]
// summary or description
#if "why" in project and project.why != none [
#for hi in project.why [
- #text(weight: "light")[#eval(hi, mode: "markup")]
]
#for hi in edu.why [
- #text(weight: "light")[#eval(hi, mode: "markup")]
]
]
}
@ -255,6 +207,37 @@
}
}
#let cvprojects(lang, info, isbreakable: true) = {
if info.projects != none {
block[
== Projects
#for project in info.projects {
// parse ISO date strings into datetime objects
let start = utils.strpdate(lang, project.startDate)
let end = utils.strpdate(lang, project.endDate)
// create a block layout for each project entry
block(
width: 100%,
breakable: isbreakable,
)[
// line 1: project name
#if project.url != none [
*#link(project.url)[#project.name]* \
] else [
*#project.name* \
]
// line 2: organization and date
#text(style: "italic")[#project.affiliation] #h(1fr) #start #sym.dash.en #end \
// summary or description
#for hi in project.highlights [
- #eval(hi, mode: "markup")
]
]
}
]
}
}
#let cvawards(lang, info, isbreakable: true) = {
if info.awards != none {
block[
@ -341,34 +324,26 @@
]
}
#let cvskills(lang, info, isbreakable: true, sortLexically: true) = {
#let cvskills(lang, info, isbreakable: true) = {
block(
breakable: isbreakable,
)[
== #info.skills.title
#for skill in info.skills.content {
let baseContent = if sortLexically {
skill.content.sorted(key: x => {
let skillContent = skill.content.sorted(key: x => {
if type(x) == dictionary {
x.keys().first()
} else { x }
}).map(
x => {
if type(x) == dictionary {
x.keys().first()
} else { x }
})
} else {
skill.content
}
let skillContent = baseContent
.map(
x => {
if type(x) == dictionary {
[#x.keys().first() (#text(style: "italic")[#x.values().first().sorted().join[ #sym.circle.filled.tiny ]])]
} else {
[#x]
}
},
)
.join[ #sym.circle.filled.small ]
[#x.keys().first() (#text(style: "italic")[#x.values().first().sorted().join(", ")])]
} else {
[#x]
}
},
).join(", ")
[- *#skill.title*#text(weight: "light")[: #skillContent]]
}
@ -397,4 +372,4 @@
#set text(size: 5pt, font: "Consolas", fill: silver)
Félix Desmaretz #datetime.today().display("[year]-[month]-[day]")
])
}
}

View File

@ -38,23 +38,22 @@
return date
}
// Recursively filter entries based on the language prefix.
#let filterLanguage(lang, data) = {
if type(data) == dictionary {
if data.keys().contains(lang) {
data = filterLanguage(lang, data.at(lang))
} else {
if data.at(lang, default: none) == none {
data = data
.pairs()
.map(xs => (xs.first(), filterLanguage(lang, xs.last())))
.fold((:), (acc, xs) => {
acc.insert(xs.first(), xs.last())
acc
})
.pairs()
.map(xs => (xs.first(), filterLanguage(lang, xs.last())))
.fold((:), (acc, xs) => {
acc.insert(xs.first(), xs.last())
acc
})
} else {
data = filterLanguage(lang, data.at(lang))
}
} else if type(data) == array {
data = data.map(v => filterLanguage(lang, v))
}
data
}
}

View File

@ -6,13 +6,29 @@ content:
endDate: 2021-09-01
url: https://math-info.u-paris.fr/
what:
en: Double Master's Degree in Computer Science and Mathematics (Data Science), Highest Honours
fr: Double Master Mathématiques & Informatique (Sciences des données)
en: Master's degree in computer science - Data Science
fr: Master dInformatique - Sciences des données
with: Université de Paris
where:
en: Paris, France
fr: Paris (75)
why:
en:
# - Highest Honours
fr:
- en: Game Theory, Big Data Technologies, Algorithms, Database, Distributed Algorithms, Data Scraping
fr: Théorie des jeux, Technologies du Big Data, Algorithmique, Base de données, Algorithmique répartie, Data Scraping
- en: Highest Honours
fr: Mention Très Bien
- startDate: 2019-09-01
endDate: 2021-09-01
url: https://math-info.u-paris.fr/
what:
en: Master of Mathematics - Data Science
fr: Master de Mathématiques Sciences des données
with: Université de Paris
where:
en: Paris, France
fr: Paris (75)
why:
- en: Probabilities, Statistics, Optimization, NLP, Machine Learning, Deep Learning, Big Data Algorithms
fr: Probabilités, Statistiques, Optimisation, NLP, Machine Learning, Deep Learning, Algorithmique Big Data
- en: Highest Honours
fr: Mention Très Bien

View File

@ -1,5 +1,5 @@
title:
en: Professional Experience
en: Work Experience
fr: Expérience Professionnelle
content:
- where:
@ -8,58 +8,24 @@ content:
with: Diggers
url: https://diggers-consulting.com/
what:
- startDate: 2025-03-04
- startDate: 2022-02-04
endDate:
en: present
fr: actuellement
what:
en: Data Engineer (Consultant) - BPCE
fr: Data Engineer (Consultant) - BPCE
technologies:
- Scala
- Kafka
- Hadoop
- SQL
- Java
- Spring
- Python
- Control-M
- Git
why:
fr:
- Conception et développement d'une plateforme de supervision "event-driven" des plus de 200 applications du Data Lake.
- Pilotage de la migration d'une application Spark critique de Spark 2 vers Spark 3 tout en garantissant la compatibilité et la continuité de service.
- Optimisation de pipelines ETL pour des données financières, réduisant la consommation de ressources de plus de 50 %.
- Développement de services backend et d'API internes destinés aux équipes métiers.
- "Mise en œuvre des bonnes pratiques de développement logiciel : tests, revues de code, supervision et support en production."
en:
- Designed and implemented an event-driven monitoring platform for 200+ applications running on the data lake.
- Led the migration of a business-critical Spark application from Spark 2 to Spark 3, ensuring compatibility and production continuity.
- Optimized ETL pipelines for finance data; reduced resources usage by more than 50%.
- Developed internal reporting services and APIs used by business teams.
- Applied software engineering best practices including testing, code reviews, monitoring and production support.
- startDate: 2022-02-04
endDate: 2025-02-14
what:
en: Data Engineer (Consultant) - Natixis CIB
fr: Data Engineer (Consultant) - Natixis CIB
technologies:
- Scala
- Kafka
- Hadoop
- SQL
- Python
- Control-M
- Git
en: Data Engineer Consultant - Natixis
fr: Consultant Data Engineer - Natixis
why:
en:
- Designed and implemented a high-throughput Kafka producer publishing up to 1 billion messages per day to accelerate PnL data distribution.
- Implemented distributed Spark applications for large-scale risk data processing like the prudent valuation adjustments.
- Optimized and maintained production ETL pipelines for regulatory data; reduced resources usage by 80%.
- Management, design and implementation of multi-stream data producer computing and sending up to 1 billion messages per day.
- Implementation of financial data computation in a distributed environment.
- Maintenance and optimization of regulatory data computations; reduced resources usage by 5.
- Scala, SQL, Bash, Spark, Kafka, Hive, Typelevel
fr:
- Conception, développement et supervision d'un producteur Kafka traitant jusqu'à un milliard de messages par jour pour le transfert de PnL inter-application.
- Développement d'applications Spark distribuées pour le traitement de données financières à grande échelle comme les calculs de réserves.
- Optimisation et maintenance de pipelines ETL en production pour des données réglementaires, réduisant la consommation de ressources de 80 %.
- Gestion, conception et développement d'un service d'alimentation de données multi-flux calculant et produisant jusqu'à 1 milliard de messages par jour.
- Développement de batchs de calculs de données financières en environnement distribué.
- Maintenance et optimisation de calculs de données réglementaire; réduction de ressources utilisées par 5.
- Scala, SQL, Bash, Spark, Kafka, Hive, Typelevel
- where:
en: Montrouge, France
fr: Montrouge (92)
@ -69,22 +35,14 @@ content:
- startDate: 2021-04-16
endDate: 2021-10-16
what:
en: Data Scientist (Intern)
fr: Data Scientist (Stagiaire)
technologies:
- Scala
- Spark
- Python
- Pandas
- Hadoop
- iGraph
- XGBoost
- Git
en: Data Scientist Intern
fr: Data Scientist Stagiaire
why:
- en: "Engineered graph-based features that improved prediction model performance by 10%."
fr: Conception de variables (Feature Engineering) par modélisation et analyse de graphes, améliorant de 10 % les performances des modèles de prédiction.
- en: Developed a multi-environment pipeline execution framework enabling consistent workflows despite platform-specific tool availability.
fr: Développement d'un programme d'exécution de pipelines multi-environnements permettant l'utilisation d'outils indisponibles selon les plateformes.
- en: "Feature Engineering via network modeling \\& analysis giving a 10\\% score improvement for prediction models"
fr: "Feature engineering via modélisation \\& analyse de graphes augmentant les scores des modèles de prédictions de 10\\%"
- en: Development of a multi-environment pipeline execution program allowing the usage of tools missing in one or another
fr: Développement d'une solution d'exécution de chaînes de traitement multi-environnements permettant un plus large choix d'outils.
- Python, Scala, SQL, Spark, Pandas, Hive, XGBoost, iGraph, GraphX
- with:
en: University Association IP7
fr: Association Universitaire IP7
@ -100,8 +58,8 @@ content:
endDate: 2021-06-01
why:
en:
- Organized programming contests and authored algorithmic problems.
- Facilitated Linux install events for students.
- "Help in setting up a programming contest \\& writing algorithmic problems"
- Facilitator for multiple Linux installation parties
fr:
- Organisation de concours de programmation et rédaction de problèmes algorithmiques.
- Animation d'ateliers d'installation de Linux destinés aux étudiants.
- "Mise en place dun concours de programmation \\& écriture de problèmes algorithmiques"
- Animateur de plusieurs install party Linux

View File

@ -1,60 +0,0 @@
title:
en: Selected Projects
fr: Projets Personnels
content:
- startDate: 2020-10-17
endDate:
en: present
fr: actuellement
url:
what:
en: Personal Portfolio & Ledger Platform
fr: Automatisation de mon Livre de Compte Personnel
why:
en:
- Built a Python, later Clojure, data ingestion pipeline to fetch, cache, and persist historical market data (ETFs, equities, and FX) for a personal Beancount ledger.
- Built an ETL pipeline to ingest, normalize, and reconcile CSV bank statements into the same Beancount ledger.
- Maintained historical price and FX time series to accurately value investment holdings and foreign-currency transactions.
fr:
- Développement d'un pipeline d'acquisition de données en Python, puis en Clojure, pour la collecte, la mise en cache et le stockage de données historiques de marché (actions et devises).
- Conception et développement d'un pipeline ETL permettant l'ingestion, la normalisation et le rapprochement de relevés bancaires CSV dans un registre comptable Beancount unifié.
- Maintenance d'un historique de taux de change permettant la conversion précise de dépenses en devises vers une devise de référence.
- startDate: 2020-09-10
endDate:
en: present
fr: actuellement
url:
what:
en: Personal Infrastructure
fr: Infrastructure Personnelle
why:
en:
- Designed and operate a self-hosted infrastructure built on Proxmox VE, hosting containerized and virtualized services for development, automation, storage, and home automation.
- Deployed and maintain workflow orchestration (Airflow), CI/CD (Jenkins), Git hosting (Forgejo), centralized PostgreSQL, reverse proxying (Caddy), and automated backup solutions.
- Manage a dedicated OPNsense firewall/router providing network security, routing, and secure remote access through WireGuard.
- Host additional services on a Hetzner VPS, including a self-hosted task management platform and a personal website.
- Operate Home Assistant with a Zigbee mesh network, Frigate-based IP camera detection, and Immich with automated off-site backups.
fr:
- Conception et administration d'une infrastructure auto-hébergée sous Proxmox VE pour le développement, l'automatisation, le stockage et la domotique.
- Déploiement et maintenance Airflow, Jenkins, Forgejo, PostgreSQL, Caddy et des solutions de sauvegarde automatisées.
- Administration d'un pare-feu OPNsense assurant la sécurité du réseau et l'accès distant sécurisé via WireGuard.
- Hébergement de services sur un VPS Hetzner, dont une plateforme de gestion de tâches et un site web personnel.
- Exploitation de Home Assistant, un réseau Zigbee, Frigate et Immich avec sauvegardes externalisées automatisées.
- startDate: 2025-01-01
endDate: 2025-08-01
url:
what:
en: Statistical Analysis for Medical Research
fr: Analyse Statistique pour de la Recherche Médicale
why:
en:
- Performed statistical analysis in R for a medical doctoral thesis investigating the relationship between vitamin C levels and frailty in elderly patients.
- Produced statistical outputs and visualizations to support the interpretation of the study's findings.
fr:
- Conduite des analyses statistiques sous R pour une thèse de doctorat en médecine étudiant l'association entre les taux de vitamine C et la fragilité des patients âgés.
- Élaboration des analyses, tests statistiques et visualisations ayant contribué à l'interprétation des résultats de l'étude.

View File

@ -1,106 +1,119 @@
title:
en: Skills & Interests
en: Skills & Interests
fr: Compétences & Intérêts
content:
- title:
fr: Langages
en: Languages
fr: Langages Informatique
en: Computer Languages
content:
- Python
- Scala
- SQL
- Clojure
- Java
- Clojure
- R
- C
- C++
- LaTeX
- Bash
- VBA
- Typst
- title:
fr: Data Engineering & Systèmes Distribués
en: Data Engineering & Distributed Systems
fr: Librairies
en: Libraries
content:
- Spark / PySpark
- Kafka
- Airflow
- Hadoop
- DuckDB
- BMC Control-M
- Numpy
- Pandas
- Spark/PySpark
- PyTorch
- Spacy
- Jupyter
- scikit-learn
- Tidyverse
- XGBoost
- Typelevel
- title: Frameworks
content:
- Flask
- Hugo
- title:
en: "Data Science and Engineering"
fr: "Sciences et Ingénierie des Données"
content:
fr:
- Analyse de données
- Calcul distribué
- Data Mining
- NLP
- Machine-Learning
- Deep-Learning
- Base de données
- Analyse de réseaux
- Analyse de séries temporelles
en:
- Data Analysis
- Optimization
- Distributed Computing
- Data Mining
- NLP
- Machine-Learning
- Deep-Learning
- Database Systems
- Network Analysis
- Time Series Analysis
- title:
fr: "Systèmes d'Exploitation"
en: "Operating Systems"
content:
- fr:
Systèmes UNIX: [Linux, BSD]
en:
UNIX systems: [Linux, BSD]
- Windows
- title:
fr: Bases de données
en: Databases
en: Database systems
content:
- PostgreSQL
- MySQL
- SQLite
- Apache Hive
- Neo4j
- Cassandra
- Trino
- MariaDB
- Apache Hive
- SAP IQ
- SAP ASE
- title:
fr: Cloud & Infrastructure
en: Cloud & Infrastructure
fr: "Bureautique"
en: "Office Automation"
content:
en:
- Docker
- AWS (EC2, S3, IAM)
- GCP (BigQuery)
- Proxmox VE
- Linux
- Terraform
- Kubernetes
fr:
- Docker
- AWS (EC2, S3, IAM)
- GCP (BigQuery)
- Proxmox VE
- Linux
- Terraform
- Kubernetes
- title: CI/CD
content:
- Jenkins
- GitHub Actions
- title: Machine Learning
content:
- PyTorch
- scikit-learn
- XGBoost
- Pandas
- Polars
- Numpy
- Spacy
- Microsoft Office: [Word, Excel, PowerPoint, Outlook]
- Libre Office
- title:
fr: Frameworks Web
en: Frameworks
content:
- Spring
- Flask
fr: Gestion de Projet
en: Project Management
content: [Git, Kanban, Scrum, Agile, JIRA]
- title:
fr: Outils & Méthodologies
en: Tools & Methodologies
content:
- Git
- Kanban
- Scrum
- Agile
- JIRA
fr: "Autres Outils Informatiques"
en: "Other IT Tools"
content:
- Apache Hadoop: ["YARN", "MapR", "HDFS"]
- Docker
- Proxmox VE
- title:
fr: Intérêts
en: Interests
content:
fr:
- Japanimation
- Homelab
- Course à Pied
- Creative Coding
- Jeux de Société
- Escalade
- Randonnées
en:
- Japanimation
- Homelab
- Running
- Randonnées
- Escalade
- Creative Coding
- Course à Pied
en:
- Board Games
- Climbing
- Japanimation
- Hiking
- Climbing
- Creative Coding
- Running

View File

@ -1,3 +0,0 @@
en: Software Engineer / Data Engineer with 4+ years of experience designing and building distributed data platforms and large-scale data processing systems. Experienced in designing event-driven architectures, developing production Spark and Kafka applications, and improving the performance, scalability, and reliability of critical data pipelines.
# en: Software Engineer / Data Engineer with 4+ years of experience building distributed data systems for investment banking. Experienced designing high-throughput Kafka and Spark applications, developing scalable data platforms, and applying software engineering best practices to production data systems.
fr: Software Engineer / Data Engineer avec plus de 4 ans d'expérience dans la conception et l'exploitation de plateformes de données distribuées et de systèmes de traitement de données à grande échelle. Expérience dans la conception d'architectures orientées événements, le développement d'applications Spark et Kafka en production ainsi que l'amélioration des performances, de la scalabilité et de la fiabilité de pipelines de données critiques.

View File

@ -4,12 +4,10 @@
#let render(language) = {
let cvdata = utils.filterLanguage(language, (
personal: yaml("data/personal.yaml"),
summary: yaml("data/summary.yaml"),
experience: yaml("data/experience.yaml"),
education: yaml("data/education.yaml"),
skills: yaml("data/skills.yaml"),
languages: yaml("data/languages.yaml"),
projects: yaml("data/projects.yaml"),
))
let uservars = (
@ -45,11 +43,9 @@
show: doc => cvinit(doc)
cvheading(language, cvdata, uservars)
cvsummary(cvdata)
cvwork(language, cvdata)
cveducation(language, cvdata)
cvlanguages(language, cvdata)
cvprojects(language, cvdata)
cvskills(language, cvdata, sortLexically: false)
cvskills(language, cvdata)
endnote()
}
}

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
### VARS ###
NAME="Felix"