CV_Bastien_Chanot.html 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Bastien Chanot — CV</title>
  7. <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&family=Fraunces:ital,wght@0,300;0,600;0,700;1,300&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
  8. <style>
  9. :root {
  10. /* Zones sombres (header, footer) */
  11. --dark: #0d1b12;
  12. --dark-mid: #183325;
  13. /* Échelle verte — même teinte, 5 niveaux */
  14. --g900: #0e3320; /* texte sur fond clair : très fort */
  15. --g700: #1b5e3b; /* titres section, rôles, accroches */
  16. --g500: #2d7a4f; /* bordures accent, liens */
  17. --g300: #6ab98a; /* sur fond sombre : lisible */
  18. --g100: #dff0e7; /* tag bg clair */
  19. --g050: #eef7f1; /* skills block bg */
  20. /* Typographie — neutrals chauds */
  21. --ink-1: #111111; /* noms entreprises, school, titres forts */
  22. --ink-2: #1e1e1e; /* corps de texte, bullets */
  23. --ink-3: #636363; /* dates, lieux, labels légers */
  24. /* Surfaces */
  25. --page: #f5f3ec; /* fond document */
  26. --rule: #d8d4c8; /* séparateurs */
  27. --tag: #e6e2d8; /* tag générique */
  28. --mono: 'JetBrains Mono', monospace;
  29. --serif: 'Fraunces', serif;
  30. --sans: 'DM Sans', sans-serif;
  31. }
  32. * { margin: 0; padding: 0; box-sizing: border-box; }
  33. body {
  34. background: #fff;
  35. font-family: var(--sans);
  36. -webkit-font-smoothing: antialiased;
  37. margin: 0;
  38. padding: 0;
  39. }
  40. .page {
  41. width: 210mm;
  42. max-width: 100%;
  43. margin: 0 auto;
  44. background: var(--page);
  45. overflow: hidden;
  46. }
  47. /* ── HEADER DARK BLOCK ── */
  48. .cv-header {
  49. background: var(--dark);
  50. background-image: radial-gradient(ellipse 120% 200% at 0% 50%, var(--dark-mid) 0%, var(--dark) 60%);
  51. padding: 18px 20mm 14px;
  52. display: flex;
  53. justify-content: space-between;
  54. gap: 20px;
  55. align-items: center;
  56. position: relative;
  57. overflow: hidden;
  58. }
  59. .cv-header::before {
  60. content: '';
  61. position: absolute;
  62. left: 0; top: 0; bottom: 0;
  63. width: 4px;
  64. background: linear-gradient(to bottom, var(--g300), var(--g700));
  65. }
  66. .cv-header::after {
  67. content: '';
  68. position: absolute;
  69. right: -40px; top: -40px;
  70. width: 200px; height: 200px;
  71. border-radius: 50%;
  72. background: radial-gradient(circle, rgba(45,122,79,0.12) 0%, transparent 70%);
  73. pointer-events: none;
  74. }
  75. .header-name {
  76. font-family: var(--serif);
  77. font-size: 26pt;
  78. font-weight: 700;
  79. color: #fff;
  80. line-height: 1;
  81. letter-spacing: -0.5px;
  82. white-space: nowrap;
  83. }
  84. .header-title {
  85. font-family: var(--mono);
  86. font-size: 9pt;
  87. font-weight: 600;
  88. color: var(--g300);
  89. letter-spacing: 2.5px;
  90. text-transform: uppercase;
  91. margin-top: 6px;
  92. opacity: 0.9;
  93. }
  94. .header-contact {
  95. text-align: right;
  96. font-family: var(--mono);
  97. font-size: 7.5pt;
  98. color: rgba(255,255,255,0.55);
  99. line-height: 1.8;
  100. white-space: nowrap;
  101. min-width: 240px;
  102. flex-shrink: 0;
  103. }
  104. .contact-sep {
  105. color: rgba(106,185,138,0.4);
  106. margin: 0 4px;
  107. }
  108. .header-contact a {
  109. color: rgba(255,255,255,0.8);
  110. text-decoration: underline;
  111. text-decoration-color: rgba(106,185,138,0.5);
  112. text-underline-offset: 2px;
  113. }
  114. /* ── BODY ── */
  115. .cv-body {
  116. padding: 10px 20mm 12px;
  117. background:
  118. url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='1' cy='1' r='0.6' fill='rgba(26,71,48,0.05)'/%3E%3C/svg%3E"),
  119. linear-gradient(160deg, #f5f3ec 0%, #edeadf 55%, #f2efe6 100%);
  120. }
  121. .accroche {
  122. font-family: var(--serif);
  123. font-style: italic;
  124. font-weight: 400;
  125. font-size: 11pt;
  126. color: var(--ink-2);
  127. line-height: 1.55;
  128. border-left: 3px solid var(--g500);
  129. padding: 5px 0 5px 12px;
  130. margin: 8px 0;
  131. background: linear-gradient(to right, rgba(14,51,32,0.04), transparent);
  132. }
  133. .rule {
  134. height: 1px;
  135. background: linear-gradient(to right, var(--rule), rgba(216,212,200,0));
  136. margin: 5px 0;
  137. }
  138. .section { margin-bottom: 6px; }
  139. .section-title {
  140. font-family: var(--mono);
  141. font-size: 9pt;
  142. font-weight: 700;
  143. letter-spacing: 2.5px;
  144. text-transform: uppercase;
  145. color: var(--g700);
  146. margin-bottom: 7px;
  147. display: flex;
  148. align-items: center;
  149. gap: 8px;
  150. }
  151. .section-title::after {
  152. content: '';
  153. flex: 1;
  154. height: 1px;
  155. background: var(--rule);
  156. }
  157. /* ── XP ── */
  158. .xp-block { margin-bottom: 6px; }
  159. .xp-header {
  160. display: flex;
  161. justify-content: space-between;
  162. align-items: baseline;
  163. margin-bottom: 1px;
  164. }
  165. .xp-company {
  166. font-family: var(--mono);
  167. font-size: 12pt;
  168. font-weight: 700;
  169. color: var(--ink-1);
  170. }
  171. .xp-dates {
  172. font-family: var(--mono);
  173. font-size: 8.5pt;
  174. color: var(--ink-3);
  175. white-space: nowrap;
  176. background: var(--tag);
  177. padding: 1px 6px;
  178. border-radius: 2px;
  179. }
  180. .xp-role {
  181. font-size: 10pt;
  182. font-weight: 500;
  183. color: var(--g700);
  184. margin-bottom: 3px;
  185. }
  186. .xp-loc {
  187. font-size: 7.5pt;
  188. color: var(--ink-3);
  189. font-style: italic;
  190. }
  191. .xp-contract {
  192. font-size: 8.5pt;
  193. color: var(--ink-3);
  194. font-style: italic;
  195. margin-bottom: 3px;
  196. margin-top: -2px;
  197. }
  198. ul.bullets { list-style: none; }
  199. ul.bullets li {
  200. padding-left: 13px;
  201. position: relative;
  202. margin-bottom: 2px;
  203. font-size: 10pt;
  204. font-weight: 500;
  205. color: var(--ink-2);
  206. line-height: 1.45;
  207. }
  208. ul.bullets li::before {
  209. content: '▸';
  210. position: absolute;
  211. left: 0;
  212. color: var(--g300);
  213. font-size: 7pt;
  214. top: 2px;
  215. }
  216. .tag {
  217. display: inline-block;
  218. background: var(--g100);
  219. border: 1px solid #a8d4bc;
  220. font-family: var(--mono);
  221. font-size: 6.5pt;
  222. padding: 1px 5px;
  223. border-radius: 3px;
  224. color: var(--g900);
  225. margin: 0 1px;
  226. white-space: nowrap;
  227. }
  228. /* ── PROJECTS ── */
  229. .project-block { margin-bottom: 5px; }
  230. .project-header {
  231. display: flex;
  232. justify-content: space-between;
  233. align-items: baseline;
  234. margin-bottom: 1px;
  235. }
  236. .project-name {
  237. font-family: var(--mono);
  238. font-size: 10.5pt;
  239. font-weight: 700;
  240. color: var(--ink-1);
  241. }
  242. .project-tagline {
  243. font-size: 10pt;
  244. font-weight: 500;
  245. color: var(--g700);
  246. font-style: italic;
  247. }
  248. .project-dates {
  249. font-family: var(--mono);
  250. font-size: 8pt;
  251. color: var(--ink-3);
  252. white-space: nowrap;
  253. background: var(--tag);
  254. padding: 1px 6px;
  255. border-radius: 2px;
  256. }
  257. .project-desc {
  258. font-size: 10pt;
  259. font-weight: 500;
  260. color: var(--ink-2);
  261. line-height: 1.45;
  262. }
  263. .project-link {
  264. font-family: var(--mono);
  265. font-size: 8pt;
  266. color: var(--g500);
  267. margin-top: 1px;
  268. }
  269. /* ── SKILLS ── */
  270. .skills-grid {
  271. display: grid;
  272. grid-template-columns: 115px 1fr;
  273. gap: 1px 10px;
  274. font-size: 8.4pt;
  275. }
  276. .skill-label {
  277. font-family: var(--mono);
  278. font-size: 9.5pt;
  279. font-weight: 700;
  280. color: var(--g700);
  281. padding-top: 1px;
  282. }
  283. .skill-label::after {
  284. content: " :";
  285. }
  286. .skill-values { font-size: 10pt; font-weight: 500; color: var(--ink-2); }
  287. /* ── EDU ── */
  288. .edu-block { margin-bottom: 5px; }
  289. .edu-header {
  290. display: flex;
  291. justify-content: space-between;
  292. align-items: baseline;
  293. }
  294. .edu-school {
  295. font-family: var(--mono);
  296. font-size: 11.5pt;
  297. font-weight: 700;
  298. color: var(--ink-1);
  299. }
  300. .edu-dates {
  301. font-family: var(--mono);
  302. font-size: 7.2pt;
  303. color: var(--ink-3);
  304. background: var(--tag);
  305. padding: 1px 6px;
  306. border-radius: 2px;
  307. }
  308. .edu-degree {
  309. font-size: 10pt;
  310. font-weight: 500;
  311. color: var(--g700);
  312. margin-bottom: 3px;
  313. }
  314. .edu-detail {
  315. font-size: 10pt;
  316. font-weight: 500;
  317. color: var(--ink-2);
  318. line-height: 1.55;
  319. }
  320. /* ── TWO COL BOTTOM ── */
  321. .two-col {
  322. display: grid;
  323. grid-template-columns: 1fr 1fr;
  324. gap: 0 20px;
  325. }
  326. .lang-row { display: flex; gap: 4px; flex-wrap: wrap; }
  327. .lang-item {
  328. font-family: var(--mono);
  329. font-size: 8.5pt;
  330. color: var(--g900);
  331. background: var(--g100);
  332. padding: 2px 8px;
  333. border-radius: 10px;
  334. }
  335. .lang-item .level {
  336. color: var(--ink-3);
  337. font-size: 7.5pt;
  338. }
  339. .interests { display: flex; flex-wrap: wrap; gap: 4px; }
  340. .interest-tag {
  341. font-family: var(--mono);
  342. font-size: 8.5pt;
  343. color: var(--g900);
  344. background: var(--g100);
  345. padding: 2px 8px;
  346. border-radius: 10px;
  347. }
  348. /* ── FOOTER ── */
  349. .footer-bar {
  350. position: running(siteFooter);
  351. background: var(--dark);
  352. padding: 5px 20mm;
  353. display: flex;
  354. justify-content: space-between;
  355. align-items: center;
  356. }
  357. .footer-bar span {
  358. font-family: var(--mono);
  359. font-size: 6.8pt;
  360. color: rgba(255,255,255,0.3);
  361. }
  362. .footer-bar a {
  363. font-family: var(--mono);
  364. font-size: 6.8pt;
  365. color: var(--g300);
  366. text-decoration: none;
  367. opacity: 0.7;
  368. }
  369. /* ── PRINT ── */
  370. @media print {
  371. body {
  372. background:
  373. url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='1' cy='1' r='0.6' fill='rgba(26,71,48,0.05)'/%3E%3C/svg%3E"),
  374. linear-gradient(160deg, #f5f3ec 0%, #edeadf 55%, #f2efe6 100%);
  375. padding: 0;
  376. }
  377. .screen-label { display: none; }
  378. .page { box-shadow: none; background: transparent; }
  379. .cv-header { padding: 18px 14mm 14px; }
  380. .cv-body { padding: 10px 14mm 12px; background: transparent; }
  381. /* Saut de page forcé avant Deewee */
  382. .break-before-page {
  383. break-before: page;
  384. page-break-before: always;
  385. }
  386. /* Cache le footer HTML, remplacé par le footer @page (auto-numéroté) */
  387. .footer-bar { display: none; }
  388. /* Footer pleine largeur sur chaque page, avec numérotation auto */
  389. @page {
  390. size: A4;
  391. margin: 0 0 8mm 0;
  392. @bottom-left-corner {
  393. content: "\00a0";
  394. background: #0d1b12;
  395. }
  396. @bottom-left {
  397. content: "bchanot.fr";
  398. background: #0d1b12;
  399. color: #6ab98a;
  400. font-family: 'JetBrains Mono', monospace;
  401. font-size: 6.8pt;
  402. padding-left: 20mm;
  403. text-align: left;
  404. vertical-align: middle;
  405. width: 80mm;
  406. }
  407. @bottom-center {
  408. content: "\00a0";
  409. background: #0d1b12;
  410. width: 50mm;
  411. }
  412. @bottom-right {
  413. content: "Bastien Chanot · CV 2026 · " counter(page) "/" counter(pages);
  414. background: #0d1b12;
  415. color: rgba(255, 255, 255, 0.5);
  416. font-family: 'JetBrains Mono', monospace;
  417. font-size: 6.8pt;
  418. padding-right: 20mm;
  419. text-align: right;
  420. vertical-align: middle;
  421. width: 80mm;
  422. }
  423. @bottom-right-corner {
  424. content: "\00a0";
  425. background: #0d1b12;
  426. }
  427. }
  428. }
  429. </style>
  430. </head>
  431. <body>
  432. <div class="page">
  433. <div class="cv-header">
  434. <div>
  435. <div class="header-name">Bastien Chanot</div>
  436. <div class="header-title">Développeur Systèmes &nbsp;·&nbsp; Embarqué &nbsp;·&nbsp; Backend</div>
  437. </div>
  438. <div class="header-contact">
  439. <a href="tel:+33778822297">+33 7 78 82 22 97</a> <span class="contact-sep">·</span> <a href="mailto:bastien@bchanot.fr">bastien@bchanot.fr</a><br>
  440. Yerres (91) · installation région nantaise prévue<br>
  441. Full remote <span class="contact-sep">·</span> hybride Nantes <span class="contact-sep">·</span> ou 1–2 j/mois Paris<br>
  442. Permis B &amp; A<br>
  443. <a href="https://github.com/bchanot">GitHub</a> <span class="contact-sep">·</span> <a href="https://www.linkedin.com/in/bastien-chanot-4075a0a3/">LinkedIn</a> <span class="contact-sep">·</span> <a href="https://bchanot.fr">bchanot.fr</a>
  444. </div>
  445. </div>
  446. <div class="cv-body">
  447. <div class="accroche">
  448. Développeur systèmes senior, 7 ans en C sur Linux bare-metal, kernel drivers et AOSP.
  449. Conception, développement et déploiement de la stack cloud gaming serveur en production
  450. (kernel, conteneurs AOSP, backend Rust temps réel, fleet GPU bare-metal) servant plusieurs centaines de joueurs simultanés.
  451. Collaboration technique directe avec Canonical (Anbox) et Nvidia.
  452. En recherche d'un CDI systèmes ou embarqué.
  453. </div>
  454. <div class="rule"></div>
  455. <div class="section">
  456. <div class="section-title">Expérience professionnelle</div>
  457. <div class="xp-block">
  458. <div class="xp-header">
  459. <span class="xp-company">ZenQuality</span>
  460. <span class="xp-dates">Apr 2026 - present</span>
  461. </div>
  462. <div class="xp-role">Développeur indépendant <span class="xp-loc">· Yerres · <a href="https://zenquality.fr" style="color:var(--g500);text-decoration:none;border-bottom:1px solid var(--g300);">zenquality.fr</a></span></div>
  463. <ul class="bullets">
  464. <li>Mission SEO et conformité légale RGPD pour PME service (Île-de-France) — audit technique Core Web Vitals + Schema.org + NAP, refonte CGV B2B/B2C, RGPD, mentions légales, mise en conformité médiateur CM2C. Plan d'action 12 sprints.</li>
  465. <li>Site vitrine WordPress (<span class="tag">Gutenverse</span>) pour PME esthétique — conception, intégration, déploiement et support continu (hébergement client).</li>
  466. <li>Setup et auto-hébergement de l'infra ZenQuality sur VPS <span class="tag">Scaleway</span> — stack <span class="tag">Astro</span> / <span class="tag">React</span> / <span class="tag">PHP 8</span> / <span class="tag">PostgreSQL</span> conteneurisée <span class="tag">Docker</span>, déploiement automatisé, pipeline de production complet.</li>
  467. </ul>
  468. </div>
  469. <div class="xp-block">
  470. <div class="xp-header">
  471. <span class="xp-company">CareGame</span>
  472. <span class="xp-dates">Mar 2019 - Mar 2025</span>
  473. </div>
  474. <div class="xp-role">Développeur logiciel — Systèmes &amp; Backend <span class="xp-loc">· Paris · Full remote dès 2020</span></div>
  475. <ul class="bullets">
  476. <li>Conception et maintenance de modules kernel Linux en <span class="tag">C</span> (x86 / ARM) — drivers d'interface hôte/conteneur orchestrant la communication bidirectionnelle entre Linux hôte et instances AOSP conteneurisées.</li>
  477. <li>Conception de l'isolation CPU/GPU par session sur la fleet bare-metal — adaptation de modules GPU Nvidia, partitionnement 2 cœurs/session (physiques et émulés), sérialisation des accès concurrents sur zones GPU partagées. Résultat : passage à 32 sessions AAA stables/serveur.</li>
  478. <li>Co-développement du backend <span class="tag">Rust</span> orchestrant le cycle de vie des conteneurs AOSP — communication WebSocket temps réel clients ↔ instances, intégration <span class="tag">Docker</span> et <span class="tag">LXC</span>, scheduling des sessions sur la fleet GPU.</li>
  479. <li>Développement de virtual input devices AOSP en <span class="tag">Java</span> (touchscreen, gamepad) — pipeline complet inputs frontend → backend Rust → drivers hôtes → injection AOSP, optimisé pour latence temps réel gameplay AAA.</li>
  480. <li>Architecture et exploitation de fleet GPU bare-metal <span class="tag">AWS g4dn.metal</span> (8× GPU T4, 64 vCPU, ~20 serveurs en pic) — isolation 2 cœurs CPU/session, ramdisk I/O, 32 sessions AAA simultanées par serveur. Plusieurs centaines de joueurs servis en parallèle (Asphalt 9 : 3 sessions / GPU T4).</li>
  481. <li>Reprise et hardening d'un PoC <span class="tag">LXD</span> + <span class="tag">Docker</span> issu d'une R&amp;D Nvidia (intégration côté Docker principalement) — adaptation à la production cloud gaming, débogage kernel/conteneur, performance validée par les équipes Nvidia comme dépassant le scope initial du PoC.</li>
  482. <li>Collaboration technique directe en anglais avec Canonical (<span class="tag">Anbox</span> + builds LXC/LXD non commerciaux, remontée bugs et feature requests) et Ampere Computing (intégration et benchmark de serveurs ARM pré-commerciaux pour évaluation de migration de fleet).</li>
  483. <li>Pipeline d'installation automatique de jeux AOSP et persistance des sauvegardes utilisateur — fusion Android Backup natif + scripts custom pour couvrir les cas non gérés nativement (DRM, données externes).</li>
  484. <li>Développement d'un outil d'orchestration <span class="tag">Bash</span> modulaire (1000+ lignes) pour la gestion du cycle de vie des conteneurs et l'intégration en production — parsing avancé des arguments Docker, préparation et lancement automatisé des conteneurs AOSP, brique appelée par la CI et le backend Rust.</li>
  485. </ul>
  486. </div>
  487. <div class="xp-block break-before-page">
  488. <div class="xp-header">
  489. <span class="xp-company">Deewee</span>
  490. <span class="xp-dates">Feb 2017 - Nov 2017</span>
  491. </div>
  492. <div class="xp-role">Développeur C — Système embarqué <span class="xp-loc">· Ivry-sur-Seine</span></div>
  493. <div class="xp-contract">Stage 42 (6 mois) puis CDD (4 mois)</div>
  494. <ul class="bullets">
  495. <li>Développement du logiciel embarqué en <span class="tag">C</span> pour boîtier connecté basé Orange Pi (<span class="tag">Debian ARM</span>) — interception du flux <span class="tag">ESC/POS</span> d'une imprimante thermique, génération PNG du ticket, transfert WiFi direct vers application mobile à la connexion.</li>
  496. <li>Intégration matérielle : <span class="tag">GPIO</span> physique (bouton + timeout), hotspot WiFi embarqué avec diffusion des credentials via <span class="tag">NFC</span> pour appairage automatique.</li>
  497. </ul>
  498. </div>
  499. </div>
  500. <div class="rule"></div>
  501. <div class="section">
  502. <div class="section-title">Projets &amp; Réalisations</div>
  503. <div class="project-block">
  504. <div class="project-header">
  505. <div>
  506. <span class="project-name">Code source &amp; projets persos</span>
  507. <span class="project-tagline"> — serveur Git auto-hébergé en production</span>
  508. </div>
  509. <span class="project-dates">en continu</span>
  510. </div>
  511. <div class="project-desc">
  512. Configuration Claude Code, dotfiles, projets bas-niveau (42, expérimentations C/Rust) — accessibles publiquement. Mirror automatique vers GitHub via push hook.
  513. </div>
  514. <div class="project-link"><a href="https://git.bchanot.fr/bchanot" style="color:var(--g500);text-decoration:none;border-bottom:1px solid var(--g300);">git.bchanot.fr/bchanot</a></div>
  515. </div>
  516. <div class="project-block">
  517. <div class="project-header">
  518. <div>
  519. <span class="project-name">Homelab</span>
  520. <span class="project-tagline"> — Infrastructure personnelle</span>
  521. </div>
  522. <span class="project-dates">en continu</span>
  523. </div>
  524. <div class="project-desc">
  525. Auto-hébergement Git (<span class="tag">Gogs</span>) / DNS / VPN / SMB — NAS Asustor, Freebox <span class="tag">WireGuard</span> VPN site-to-site, Pi-hole, segmentation réseau, hardening <span class="tag">fail2ban</span>, <span class="tag">gocryptfs</span> sur dossiers sensibles.
  526. </div>
  527. </div>
  528. </div>
  529. <div class="rule"></div>
  530. <div class="section">
  531. <div class="section-title">Formation</div>
  532. <div class="edu-block">
  533. <div class="edu-header">
  534. <span class="edu-school">École 42</span>
  535. <span class="edu-dates">2015 – 2019</span>
  536. </div>
  537. <div class="edu-degree">Programmation informatique <span class="xp-loc">· Clichy</span></div>
  538. <div class="edu-detail">
  539. <strong>Systèmes / Kernel :</strong> ft_linux &amp; kfs-1 (Linux From Scratch — bootloader ASM, GDT, interruptions, driver char device) · drivers &amp; interrupt · process &amp; memory · little penguin<br>
  540. <strong>Bas niveau :</strong> malloc (allocateur mémoire) · nm (parsing ELF) · ft_ls · ft_select · 42sh (shell POSIX complet)<br>
  541. <strong>Réseau / Sécurité :</strong> ft_ssl_md5 (crypto) · snow crash (exploitation système) · lem-in · push-swap · doctor quine
  542. </div>
  543. </div>
  544. <div class="edu-block">
  545. <div class="edu-header">
  546. <span class="edu-school">Next Formation</span>
  547. <span class="edu-dates">2013 – 2015</span>
  548. </div>
  549. <div class="edu-degree">TSRIT — Technicien Supérieur Réseaux &amp; Télécoms, <em>Félicitations du jury</em> <span class="xp-loc">· Vincennes</span></div>
  550. </div>
  551. </div>
  552. <div class="rule"></div>
  553. <div class="section">
  554. <div class="section-title">Compétences techniques</div>
  555. <div class="skills-grid">
  556. <div class="skill-label">Langages</div>
  557. <div class="skill-values">C · Rust · Bash · Python · Java (AOSP/Android)</div>
  558. <div class="skill-label">Embarqué</div>
  559. <div class="skill-values">Linux kernel drivers · AOSP · ARM / x86 · GPIO · NFC · ESC/POS · Orange Pi · cross-compilation GCC</div>
  560. <div class="skill-label">Conteneurs</div>
  561. <div class="skill-values">Docker · LXC / LXD · QEMU · cgroups · namespaces</div>
  562. <div class="skill-label">Backend</div>
  563. <div class="skill-values">Rust · WebSocket · architecture GPU bare-metal · ramdisk I/O</div>
  564. <div class="skill-label">Systèmes</div>
  565. <div class="skill-values">Linux bare-metal · AOSP · Android Backup · systemd · SELinux</div>
  566. <div class="skill-label">Cloud / Infra</div>
  567. <div class="skill-values">AWS (EC2, g4dn bare-metal, IAM, S3, CloudWatch) · Scaleway VPS · OVH / Hetzner · Nginx · Apache · Let's Encrypt</div>
  568. <div class="skill-label">DevOps</div>
  569. <div class="skill-values">Git · GitHub Actions · GitLab · CI/CD</div>
  570. <div class="skill-label">IA / Outils</div>
  571. <div class="skill-values">Claude Code (agents/skills custom) · N8N · automatisation</div>
  572. <div class="skill-label">Familier avec</div>
  573. <div class="skill-values">C++</div>
  574. </div>
  575. </div>
  576. <div class="rule"></div>
  577. <div class="two-col">
  578. <div class="section">
  579. <div class="section-title">Langues</div>
  580. <div class="lang-row">
  581. <div class="lang-item">Anglais <span class="level">C2</span></div>
  582. <div class="lang-item">Espagnol <span class="level">B1</span></div>
  583. <div class="lang-item">Français <span class="level">natif</span></div>
  584. </div>
  585. </div>
  586. <div class="section">
  587. <div class="section-title">Centres d'intérêt</div>
  588. <div class="interests">
  589. <span class="interest-tag">Voyage</span>
  590. <span class="interest-tag">Sciences</span>
  591. <span class="interest-tag">Astronomie</span>
  592. <span class="interest-tag">Nature</span>
  593. <span class="interest-tag">Jeux vidéo</span>
  594. <span class="interest-tag">Musique</span>
  595. </div>
  596. </div>
  597. </div>
  598. </div>
  599. <div class="footer-bar">
  600. <a href="https://bchanot.fr">bchanot.fr</a>
  601. <span>Bastien Chanot · CV 2026</span>
  602. </div>
  603. </div>
  604. </body>
  605. </html>