CV_Bastien_Chanot.html 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  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: 22px 20mm 18px;
  52. display: grid;
  53. grid-template-columns: 1fr auto;
  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. }
  83. .header-title {
  84. font-family: var(--mono);
  85. font-size: 9pt;
  86. font-weight: 600;
  87. color: var(--g300);
  88. letter-spacing: 2.5px;
  89. text-transform: uppercase;
  90. margin-top: 6px;
  91. opacity: 0.9;
  92. }
  93. .header-contact {
  94. text-align: right;
  95. font-family: var(--mono);
  96. font-size: 7.5pt;
  97. color: rgba(255,255,255,0.55);
  98. line-height: 1.8;
  99. white-space: nowrap;
  100. min-width: 210px;
  101. flex-shrink: 0;
  102. }
  103. .contact-sep {
  104. color: rgba(106,185,138,0.4);
  105. margin: 0 4px;
  106. }
  107. .header-contact a {
  108. color: rgba(255,255,255,0.8);
  109. text-decoration: underline;
  110. text-decoration-color: rgba(106,185,138,0.5);
  111. text-underline-offset: 2px;
  112. }
  113. /* ── BODY ── */
  114. .cv-body {
  115. padding: 14px 20mm 16px;
  116. background:
  117. 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"),
  118. linear-gradient(160deg, #f5f3ec 0%, #edeadf 55%, #f2efe6 100%);
  119. }
  120. .accroche {
  121. font-family: var(--serif);
  122. font-style: italic;
  123. font-weight: 400;
  124. font-size: 11.5pt;
  125. color: var(--ink-2);
  126. line-height: 1.7;
  127. border-left: 3px solid var(--g500);
  128. padding: 6px 0 6px 12px;
  129. margin: 14px 0;
  130. background: linear-gradient(to right, rgba(14,51,32,0.04), transparent);
  131. }
  132. .rule {
  133. height: 1px;
  134. background: linear-gradient(to right, var(--rule), rgba(216,212,200,0));
  135. margin: 10px 0;
  136. }
  137. .section { margin-bottom: 13px; }
  138. .section-title {
  139. font-family: var(--mono);
  140. font-size: 9pt;
  141. font-weight: 700;
  142. letter-spacing: 2.5px;
  143. text-transform: uppercase;
  144. color: var(--g700);
  145. margin-bottom: 9px;
  146. display: flex;
  147. align-items: center;
  148. gap: 8px;
  149. }
  150. .section-title::after {
  151. content: '';
  152. flex: 1;
  153. height: 1px;
  154. background: var(--rule);
  155. }
  156. /* ── XP ── */
  157. .xp-block { margin-bottom: 11px; }
  158. .xp-header {
  159. display: flex;
  160. justify-content: space-between;
  161. align-items: baseline;
  162. margin-bottom: 1px;
  163. }
  164. .xp-company {
  165. font-family: var(--mono);
  166. font-size: 12pt;
  167. font-weight: 700;
  168. color: var(--ink-1);
  169. }
  170. .xp-dates {
  171. font-family: var(--mono);
  172. font-size: 8.5pt;
  173. color: var(--ink-3);
  174. white-space: nowrap;
  175. background: var(--tag);
  176. padding: 1px 6px;
  177. border-radius: 2px;
  178. }
  179. .xp-role {
  180. font-size: 10pt;
  181. font-weight: 500;
  182. color: var(--g700);
  183. margin-bottom: 5px;
  184. }
  185. .xp-loc {
  186. font-size: 7.5pt;
  187. color: var(--ink-3);
  188. font-style: italic;
  189. }
  190. ul.bullets { list-style: none; }
  191. ul.bullets li {
  192. padding-left: 13px;
  193. position: relative;
  194. margin-bottom: 3px;
  195. font-size: 10.5pt;
  196. font-weight: 500;
  197. color: var(--ink-2);
  198. line-height: 1.55;
  199. }
  200. ul.bullets li::before {
  201. content: '▸';
  202. position: absolute;
  203. left: 0;
  204. color: var(--g300);
  205. font-size: 7pt;
  206. top: 2px;
  207. }
  208. .tag {
  209. display: inline-block;
  210. background: var(--g100);
  211. border: 1px solid #a8d4bc;
  212. font-family: var(--mono);
  213. font-size: 6.5pt;
  214. padding: 1px 5px;
  215. border-radius: 3px;
  216. color: var(--g900);
  217. margin: 0 1px;
  218. white-space: nowrap;
  219. }
  220. /* ── SKILLS ── */
  221. .skills-grid {
  222. display: grid;
  223. grid-template-columns: 88px 1fr;
  224. gap: 4px 10px;
  225. font-size: 8.4pt;
  226. }
  227. .skill-label {
  228. font-family: var(--mono);
  229. font-size: 9.5pt;
  230. font-weight: 700;
  231. color: var(--g700);
  232. padding-top: 1px;
  233. }
  234. .skill-values { font-size: 10.5pt; font-weight: 500; color: var(--ink-2); }
  235. /* ── EDU ── */
  236. .edu-block { margin-bottom: 9px; }
  237. .edu-header {
  238. display: flex;
  239. justify-content: space-between;
  240. align-items: baseline;
  241. }
  242. .edu-school {
  243. font-family: var(--mono);
  244. font-size: 11.5pt;
  245. font-weight: 700;
  246. color: var(--ink-1);
  247. }
  248. .edu-dates {
  249. font-family: var(--mono);
  250. font-size: 7.2pt;
  251. color: var(--ink-3);
  252. background: var(--tag);
  253. padding: 1px 6px;
  254. border-radius: 2px;
  255. }
  256. .edu-degree {
  257. font-size: 10pt;
  258. font-weight: 500;
  259. color: var(--g700);
  260. margin-bottom: 3px;
  261. }
  262. .edu-detail {
  263. font-size: 10pt;
  264. font-weight: 500;
  265. color: var(--ink-2);
  266. line-height: 1.55;
  267. }
  268. /* ── TWO COL BOTTOM ── */
  269. .two-col {
  270. display: grid;
  271. grid-template-columns: 1fr 1fr;
  272. gap: 0 20px;
  273. }
  274. .lang-row { display: flex; gap: 5px; flex-wrap: wrap; }
  275. .lang-item {
  276. font-family: var(--mono);
  277. font-size: 9pt;
  278. color: var(--g900);
  279. background: var(--g100);
  280. border: 1px solid #a8d4bc;
  281. padding: 3px 10px;
  282. border-radius: 12px;
  283. }
  284. .lang-item .level {
  285. color: var(--ink-3);
  286. font-size: 8pt;
  287. }
  288. .interests { display: flex; flex-wrap: wrap; gap: 5px; }
  289. .interest-tag {
  290. font-family: var(--mono);
  291. font-size: 9pt;
  292. color: var(--g900);
  293. background: var(--g100);
  294. border: 1px solid #a8d4bc;
  295. padding: 3px 10px;
  296. border-radius: 12px;
  297. }
  298. /* ── FOOTER ── */
  299. .footer-bar {
  300. background: var(--dark);
  301. padding: 7px 20mm;
  302. display: flex;
  303. justify-content: space-between;
  304. align-items: center;
  305. }
  306. .footer-bar span {
  307. font-family: var(--mono);
  308. font-size: 6.8pt;
  309. color: rgba(255,255,255,0.3);
  310. }
  311. .footer-bar a {
  312. font-family: var(--mono);
  313. font-size: 6.8pt;
  314. color: var(--g300);
  315. text-decoration: none;
  316. opacity: 0.7;
  317. }
  318. /* ── PRINT ── */
  319. @media print {
  320. body { background: white; padding: 0; }
  321. .screen-label { display: none; }
  322. .page { box-shadow: none; }
  323. .cv-header { padding: 18px 14mm 14px; }
  324. .cv-body { padding: 12px 14mm 14px; }
  325. .footer-bar { padding: 6px 14mm; }
  326. @page { size: A4; margin: 0; }
  327. }
  328. </style>
  329. </head>
  330. <body>
  331. <div class="page">
  332. <div class="cv-header">
  333. <div>
  334. <div class="header-name">Bastien Chanot</div>
  335. <div class="header-title">Développeur confirmé &nbsp;·&nbsp; Systèmes &amp; Backend</div>
  336. </div>
  337. <div class="header-contact">
  338. <a href="tel:+33778822297">+33 7 78 82 22 97</a><br>
  339. <a href="mailto:chanot.bastien@gmail.com">chanot.bastien@gmail.com</a><br>
  340. Yerres → Reloc. Pays de la Loire<br>
  341. Open full remote <span class="contact-sep">|</span> Permis B &amp; A
  342. </div>
  343. </div>
  344. <div class="cv-body">
  345. <div class="accroche">
  346. Développeur systèmes confirmé (7 ans), spécialisé en C/Rust/Java sur Linux bare-metal, kernel drivers et environnements AOSP.
  347. Expérience étendue sur l'architecture et l'exploitation de serveurs GPU haute densité, la conteneurisation LXC/LXD,
  348. et le développement système embarqué de bout en bout. Habitué à opérer seul sur des périmètres larges,
  349. de la couche kernel au backend réseau.
  350. </div>
  351. <div class="rule"></div>
  352. <div class="section">
  353. <div class="section-title">Expérience professionnelle</div>
  354. <div class="xp-block">
  355. <div class="xp-header">
  356. <span class="xp-company">ZenQuality</span>
  357. <span class="xp-dates">Avr. 2026 – présent</span>
  358. </div>
  359. <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>
  360. <ul class="bullets">
  361. <li>Développement logiciel et conseil technique en indépendant — systèmes, backend, infrastructure.</li>
  362. </ul>
  363. </div>
  364. <div class="xp-block">
  365. <div class="xp-header">
  366. <span class="xp-company">CareGame</span>
  367. <span class="xp-dates">Mars 2019 – Mars 2025</span>
  368. </div>
  369. <div class="xp-role">Développeur logiciel — Systèmes &amp; Backend <span class="xp-loc">· Paris · Full remote dès 2020</span></div>
  370. <ul class="bullets">
  371. <li>Développement solo de modules kernel Linux en <span class="tag">C</span> (x86 / ARM) pour communiquer avec les instances AOSP conteneurisées — drivers d'interface hôte/conteneur.</li>
  372. <li>Architecture d'isolation CPU/GPU par session : adaptation de modules GPU, partitionnement des cœurs CPU physiques et émulés, optimisation des accès concurrents sur les zones GPU partagées.</li>
  373. <li>Participation au développement d'un backend <span class="tag">Rust</span> (~2 000 lignes) : communication WebSocket entre clients et instances, intégration <span class="tag">Docker</span> / <span class="tag">LXC</span> pour l'orchestration des conteneurs AOSP.</li>
  374. <li>Développement de virtual touchscreen et virtual gamepad AOSP (<span class="tag">Java</span>) — récupération des inputs du frontend via le backend Rust, puis injection dans AOSP via les drivers hôtes.</li>
  375. <li>Architecture et optimisation de serveurs GPU bare-metal (g4 : 8× GPU T4, 64 vCPU) — isolation de 2 cœurs CPU/session, I/O sur ramdisk, 32 sessions AAA simultanées (Asphalt 9 : 3 sessions / GPU T4).</li>
  376. <li>Intégration et amélioration d'un système <span class="tag">LXC/LXD</span> issu d'une R&amp;D Nvidia — résultats reconnus par les équipes Nvidia au-delà des attentes initiales.</li>
  377. <li>Collaboration avec Canonical (<span class="tag">Anbox</span>, versions non commerciales LXC/LXD) et Ampere Computing (serveurs ARM pré-commerciaux).</li>
  378. <li>Développement du système d'installation automatique de jeux sur AOSP et gestion des sauvegardes utilisateur (Android Backup + script custom).</li>
  379. <li>Scripting <span class="tag">Bash</span> pour l'automatisation de l'infrastructure et du cycle de vie des instances.</li>
  380. </ul>
  381. </div>
  382. <div class="xp-block">
  383. <div class="xp-header">
  384. <span class="xp-company">Deewee</span>
  385. <span class="xp-dates">2017</span>
  386. </div>
  387. <div class="xp-role">Développeur C — Système embarqué <span class="xp-loc">· Ivry-sur-Seine</span></div>
  388. <ul class="bullets">
  389. <li>Développement en <span class="tag">C</span> sur Orange Pi (<span class="tag">Debian ARM</span>) interceptant le flux <span class="tag">ESC/POS</span> d'une imprimante thermique pour générer une image PNG du ticket avant impression.</li>
  390. <li>Gestion <span class="tag">GPIO</span> physique (bouton) pour déclenchement conditionnel de l'impression avec timeout.</li>
  391. <li>Hotspot WiFi embarqué + diffusion des credentials via antenne <span class="tag">NFC</span> (scan automatique depuis application mobile tierce).</li>
  392. <li>Envoi de l'image générée en WiFi direct vers l'application mobile à la connexion.</li>
  393. </ul>
  394. </div>
  395. </div>
  396. <div class="rule"></div>
  397. <div class="section">
  398. <div class="section-title">Formation</div>
  399. <div class="edu-block">
  400. <div class="edu-header">
  401. <span class="edu-school">École 42</span>
  402. <span class="edu-dates">2015 – 2019</span>
  403. </div>
  404. <div class="edu-degree">Programmation informatique <span class="xp-loc">· Clichy</span></div>
  405. <div class="edu-detail">
  406. <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>
  407. <strong>Bas niveau :</strong> malloc (allocateur mémoire) · nm (parsing ELF) · ft_ls · ft_select · 42sh (shell POSIX complet)<br>
  408. <strong>Réseau / Sécurité :</strong> ft_ssl_md5 (crypto) · snow crash (exploitation système) · lem-in · push-swap · doctor quine
  409. </div>
  410. </div>
  411. <div class="edu-block">
  412. <div class="edu-header">
  413. <span class="edu-school">Next Formation</span>
  414. <span class="edu-dates">2013 – 2015</span>
  415. </div>
  416. <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>
  417. </div>
  418. <div class="edu-block">
  419. <div class="edu-header">
  420. <span class="edu-school">Lycée Rosa Parks</span>
  421. <span class="edu-dates">2009 – 2013</span>
  422. </div>
  423. <div class="edu-degree">Bac S — génie informatique, électrique et mécanique <span class="xp-loc">· Montgeron</span></div>
  424. </div>
  425. </div>
  426. <div class="rule"></div>
  427. <div class="section">
  428. <div class="section-title">Compétences techniques</div>
  429. <div class="skills-grid">
  430. <div class="skill-label">Langages</div>
  431. <div class="skill-values">C · Rust · Java · Bash · Python · C++ (notions)</div>
  432. <div class="skill-label">Embarqué</div>
  433. <div class="skill-values">Linux kernel drivers · AOSP · ARM / x86 · GPIO · NFC · ESC/POS · Orange Pi · cross-compilation GCC</div>
  434. <div class="skill-label">Conteneurs</div>
  435. <div class="skill-values">Docker · LXC / LXD · QEMU · VMware · VirtualBox</div>
  436. <div class="skill-label">Backend</div>
  437. <div class="skill-values">Rust · WebSocket · architecture GPU bare-metal · ramdisk I/O</div>
  438. <div class="skill-label">Systèmes</div>
  439. <div class="skill-values">Linux bare-metal · AOSP · Android Backup · systemd · Windows · macOS</div>
  440. <div class="skill-label">DevOps</div>
  441. <div class="skill-values">Git · GitHub / GitLab · CI/CD · Gitflow · Agile (Scrum, Kanban)</div>
  442. <div class="skill-label">IA / Outils</div>
  443. <div class="skill-values">Claude Code (agents/skills custom) · N8N · automatisation · prompting avancé</div>
  444. <div class="skill-label">Gestion</div>
  445. <div class="skill-values">Trello · Jira · Confluence · Notion</div>
  446. </div>
  447. </div>
  448. <div class="rule"></div>
  449. <div class="two-col">
  450. <div class="section">
  451. <div class="section-title">Langues</div>
  452. <div class="lang-row">
  453. <div class="lang-item">Anglais <span class="level">C2</span></div>
  454. <div class="lang-item">Espagnol <span class="level">B1</span></div>
  455. <div class="lang-item">Français <span class="level">natif</span></div>
  456. </div>
  457. </div>
  458. <div class="section">
  459. <div class="section-title">Centres d'intérêt</div>
  460. <div class="interests">
  461. <span class="interest-tag">Voyage</span>
  462. <span class="interest-tag">Sciences</span>
  463. <span class="interest-tag">Astronomie</span>
  464. <span class="interest-tag">Nature</span>
  465. <span class="interest-tag">Jeux vidéo</span>
  466. <span class="interest-tag">Musique</span>
  467. </div>
  468. </div>
  469. </div>
  470. </div>
  471. <div class="footer-bar">
  472. <a href="https://bchanot.fr">bchanot.fr</a>
  473. <span>Bastien Chanot · CV 2026</span>
  474. </div>
  475. </div>
  476. </body>
  477. </html>