first commit

This commit is contained in:
Sam
2026-01-15 10:28:49 +01:00
commit 11e9fa6b8b
3 changed files with 236 additions and 0 deletions

152
index.html Normal file
View File

@@ -0,0 +1,152 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Samuel Goutenoir — Resume</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="site-header">
<div class="container header-inner">
<div>
<h1 class="name">GOUTENOIR SAMUEL</h1>
<p class="subtitle">Embedded Electrical Engineer</p>
<!-- <p class="contact">44A Allée du Square de Lausanne, 01220 Divonne les Bains, France • +33 (0)6 33 51 12 97 • <a href="mailto:sam@blackdrop.fr">sam@blackdrop.fr</a></p> -->
</div>
<!-- <div class="actions">
<a class="btn" href="cv_goutenoir.pdf" download>Download PDF</a>
<button id="printBtn" class="btn">Print</button>
<button id="themeToggle" class="btn">Toggle Theme</button>
</div> -->
</div>
</header>
<main class="container">
<section id="profile">
<h2>Profile</h2>
<p>Im an experienced electronics and software engineer with over 10 years of building smart, integrated systems. I love combining coding, mechanical design, and automation to create real, working solutions whether its PLC programming, developing software from scratch, or designing with CAD tools like SolidWorks. Im hands-on, enjoy solving problems from all angles, and thrive in environments where I can take initiative and bring ideas to life.</p>
</section>
<section id="skills">
<h2>Key Skills</h2>
<div class="skills-grid">
<div class="skill-item">
<span class="skill-icon">💻</span>
<div>
<strong>Software Development</strong><br>
C/C++, Python, JavaScript, REST APIs, Labview
</div>
</div>
<div class="skill-item">
<span class="skill-icon">⚙️</span>
<div>
<strong>Automation & Control</strong><br>
PLC programming fundamentals, real-time system design
</div>
</div>
<div class="skill-item">
<span class="skill-icon">🛠️</span>
<div>
<strong>CAD/Mechanical Design</strong><br>
SolidWorks, Sketchup
</div>
</div>
<div class="skill-item">
<span class="skill-icon">🌐</span>
<div>
<strong>IT Infrastructure & Networking</strong><br>
Ethernet networks, Linux server administration
</div>
</div>
<div class="skill-item">
<span class="skill-icon">🚀</span>
<div>
<strong>DevOps & Automation</strong><br>
Git/GitFlow, Docker, CI/CD pipelines
</div>
</div>
<div class="skill-item">
<span class="skill-icon">🔌</span>
<div>
<strong>Embedded Systems</strong><br>
CAN, UART, MQTT, PCB design and integration
</div>
</div>
</div>
</section>
<section id="experience">
<h2>Professional Experience</h2>
<article class="job">
<h3>Embedded Electronic Engineer — EH Group Engineering AG</h3>
<p class="meta">Nyon, Switzerland • 03.2021 Present</p>
<ul>
<li>Managed the IT infrastructure (Ethernet network and DECT Phones)</li>
<li>Designed and implemented Edge ECUs (C++) for data acquisition in hydrogen fuel cell systems</li>
<li>Developed internal tools and dashboards for data visualization based on open source software (IoT, Python)</li>
<li>Managed servers, Full Stack Software and DevOps pipelines (Git, Docker)</li>
<li>Built custom PCBs (KiCAD) and integrated communication protocols (CAN, UART, I2C, LIN, MQTT)</li>
<li>Developed PLC software for fuel cell test benches with HMI solutions</li>
</ul>
</article>
<article class="job">
<h3>Electronics R&I Engineer — Plastic Omnium Sigmatech</h3>
<p class="meta">Plaine de lAin, France • 07.2016 04.2019</p>
<ul>
<li>Electronic design and firmware development for proof-of-concept devices</li>
<li>Managed on-site deployment and demonstration of prototypes at events such as the Paris Auto Show</li>
</ul>
</article>
<article class="job">
<h3>Mechatronics R&D Engineer — Mosquito Europe</h3>
<p class="meta">Bourg-en-Bresse, France • 06.2014 06.2016</p>
<ul>
<li>Developed embedded control systems for light helicopters (C++, Android)</li>
<li>Handled full mechatronics integration of a governor (cruise control for helicopters)</li>
</ul>
</article>
</section>
<section id="education">
<h2>Education</h2>
<ul>
<li><strong>Masters Degree Electrical Engineering (Embedded Systems & Control)</strong>, UTBM — 2010-2014<br>Internship at Fives Cinetic as Automation Engineer</li>
<li><strong>DUT Electrical Engineering and Industrial Computing</strong>, IUT Lyon 1 — 2008-2010<br>Internship at CEGEP, Quebec City, as Software Developer</li>
</ul>
</section>
<section id="languages">
<h2>Languages</h2>
<ul>
<li>French: Native</li>
<li>English: Fluent (TOEIC 975 / BULATS 91)</li>
<li>Italian: Basic</li>
</ul>
</section>
<section id="certs">
<h2>Certifications & Interests</h2>
<ul>
<li>Low-voltage & High-voltage electrical certifications</li>
<li>First aid certification (PSC1)</li>
<li>Driving licenses: Car, Motorcycle, Boat</li>
<li>Hobbies: DIY projects, mountaineering, travel, art & craft, food forest</li>
</ul>
</section>
<!-- <section id="pdf-embed">
<h2>Full PDF</h2>
<p>You can view or download the original CV below.</p>
<div class="pdf-wrapper">
<iframe src="cv_goutenoir.pdf" title="cv" frameborder="0"></iframe>
</div>
</section> -->
</main>
<script src="script.js"></script>
</body>
</html>