diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2024-05-16 22:08:29 +0200 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2024-05-16 22:11:47 +0200 |
commit | 05b1d20b5ae8c69b7c42afaa8f7a52496bcb47a3 (patch) | |
tree | e91102969cb17c39059c0c5c28d31134fcfaf118 | |
parent | 8f2eef6c2a94faaed2f93fee6d6e974753dc071a (diff) | |
download | rgoncalves.se-05b1d20b5ae8c69b7c42afaa8f7a52496bcb47a3.tar.gz |
feat(about): update resume with achievements
-rw-r--r-- | src/a/resume.md | 33 | ||||
-rw-r--r-- | src/styles/main.css | 15 | ||||
-rw-r--r-- | src/styles/resume.css | 31 | ||||
-rw-r--r-- | templates/resume | 6 | ||||
-rw-r--r-- | templates/resume.head | 2 |
5 files changed, 68 insertions, 19 deletions
diff --git a/src/a/resume.md b/src/a/resume.md index 830d80c..ab4839e 100644 --- a/src/a/resume.md +++ b/src/a/resume.md @@ -1,7 +1,7 @@ --- header: false footer: false -template: none +template: resume --- # [Romain Gonçalves](/) @@ -39,8 +39,6 @@ template: none ## experiences -- *burnout recovery and enjoying life (since 2023-06)* - - Hardware Devops Engineer - *at [Scaleway](https://www.scaleway.com)* - *from 2022-04 to 2023-06* @@ -67,7 +65,7 @@ template: none - contribution to existing projects - Homelab and internal network - - *for fun!* + - *for [fun](/a/homelab.html)* - *since 2020 (ongoing)* - with OpenBSD + FreeBSD, AlpineLinux and love! @@ -80,12 +78,23 @@ template: none - feedback loop with weekly testing sessions - Modder / Level designer - - *for gaming communities* + - *for [gaming communities](/a/level-design.html)* - *from 2017 to 2019* - on the Source Engine - 32 players maps with bot support and game-engine scripting - creation and modifications to 2D and 3D assets +## achievements + +- Co-organizer of the Ktarnaval, 2024 edition + - an underground carnival with 80+ musicians and 300+ persons + - in the old quarries under Paris + +- Artist at [Les Extatiques, 2024 edition](https://interstices.in/les-extatiques-descendent-dans-les-sous-sols-de-paris-la-defense/) + - creation, production and installation of [rust printed plants](https://www.instagram.com/mel_dorado__/p/C37qiM8NCaQ) + - exhibition in the underground of Paris La Defense + - in collaboration with [Mel Piat](https://melpiat.com) + ## certifications - Electrical accreditation (France): H0 - B0 - BS - Be manoeuvre @@ -93,7 +102,7 @@ template: none ## preferences - git rebase + squash workflow -- atomic commits with nice commit title + body +- atomic commits with meaningful title and body - [stupid and simple implementations](https://peps.python.org/pep-0020/) ## conferences @@ -103,12 +112,6 @@ template: none ## extra -When I am not playing *factorio* or *squashing my commits*, I enjoy *riding my -bicycle*, *going for a run*, *hiking*, *climbing* or even *exploring the -catacombs*! - -I have had a lot of fun being a *dungeon master* when playing -*Dungeons and Dragons* with my friends! - -I love using my *Thinkpad X330* with *Archlinux/OpenBSD*. *dwm* + *st* + *tmux* -is the perfect combo, change my mind! +- Bicycle rider, climber and underground explorer +- Professional commit squasher and hammock sleeper +- Retired dungeon master and thinkpad lover! diff --git a/src/styles/main.css b/src/styles/main.css index 1c47ae6..5886f3c 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -32,7 +32,9 @@ footer { /* link */ -a, a:hover, a:visited { +a, +a:hover, +a:visited { color: blue; } @@ -69,7 +71,8 @@ table { border-collapse: collapse; } -table th, table td { +table th, +table td { padding: .4em 1em .4em 1em; margin: 0; overflow: hidden; @@ -77,15 +80,19 @@ table th, table td { /* code */ -pre, p code, li code { +pre, +p code, +li code { background-color: #eeeeee; overflow: auto; } /* media file */ -img, video { +img, +video { max-width: 100%; + cursor: crosshair; } /* screen size */ diff --git a/src/styles/resume.css b/src/styles/resume.css new file mode 100644 index 0000000..c54af72 --- /dev/null +++ b/src/styles/resume.css @@ -0,0 +1,31 @@ +/* mainly for pdf */ + +@media print { + html { + max-width: 85%; + } + + h1, + h2, + h3, + h4 { + page-break-after:avoid; + break-after: avoid; + } + +} + +@page { + size: A3 portrait; + +} + +body > ul > li, +ul > ul, +ul > ul > li { + break-inside: avoid; +} + +ul:nth-child(1) { + margin-bottom: 1em; +} diff --git a/templates/resume b/templates/resume new file mode 100644 index 0000000..02b39c3 --- /dev/null +++ b/templates/resume @@ -0,0 +1,6 @@ +<html> +include(templates/resume.head) +<body> + include(tmp/tmp.body) +<body> +</html> diff --git a/templates/resume.head b/templates/resume.head new file mode 100644 index 0000000..0274be1 --- /dev/null +++ b/templates/resume.head @@ -0,0 +1,2 @@ +include(templates/default.head) +<link href="/styles/resume.css" rel="stylesheet" type="text/css"> |