-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (91 loc) · 3.41 KB
/
Copy pathindex.html
File metadata and controls
102 lines (91 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Lebenslauf – Simon Hefti</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<main class="cv-container">
<header>
<h1>Simon Hefti</h1>
<h2>Softwareentwickler</h2>
</header>
<section class="personal-info">
<h3>Persönliche Daten</h3>
<p><strong>Alter:</strong> 24 Jahre</p>
<p><strong>Staatsangehörigkeit:</strong> Schweiz</p>
<p><strong>Familienstand:</strong> ledig</p>
</section>
<section class="contact">
<h3>Kontakt</h3>
<p><a href="mailto:[email protected]">[email protected]</a></p>
<p><a href="https://linkedin.com/in/simon-hefti-640aa32b5" target="_blank">LinkedIn</a></p>
<p><a href="https://github.com/Hefti1879" target="_blank">GitHub</a></p>
</section>
<section class="skills">
<h3>Kompetenzen</h3>
<ul>
<li>.NET C# (API-Programmierung)</li>
<li>Relationale Datenbanken, SQL</li>
<li>JavaScript, Vue.js, Nuxt.js</li>
<li>Python, TensorFlow</li>
<li>Java</li>
<li>Version Control mit Git</li>
<li>Containerisierung mit Docker</li>
<li>Agiles Projektmanagement mit Jira</li>
</ul>
</section>
<section class="languages">
<h3>Sprachen</h3>
<ul>
<li>Deutsch (Muttersprache)</li>
<li>Englisch (C1)</li>
<li>Französisch (A2)</li>
<li>Spanisch (A2)</li>
</ul>
</section>
<section class="hobbies">
<h3>Hobbys</h3>
<ul>
<li>Programmieren</li>
<li>Ski</li>
<li>Fussball</li>
<li>Fitness</li>
</ul>
</section>
<section class="experience">
<h3>Berufliche Erfahrung</h3>
<p><strong>Applikationsentwickler – Etimark AG</strong> <br>08/2017 – heute</p>
<ul>
<li>ERP-integrierte Applikationen entwickeln</li>
<li>Abteilungsübergreifende Prozesse unterstützen</li>
<li>C#-Plugins implementieren</li>
<li>Webshop für Preisauszeichnungs-Etiketten planen & umsetzen</li>
<li>Projektmanagement mit Jira</li>
<li>Fehlerbehebung in Legacy-Code</li>
<li>Benutzerwünsche schnell integrieren</li>
</ul>
</section>
<section class="education">
<h3>Ausbildung</h3>
<p><strong>Bachelor of Science in Informatik</strong> <br>OST – 09/2022 bis 09/2025<br>
Schwerpunkt: Software Engineering & Data Science</p>
<p><strong>Informatiker EFZ, Applikationsentwicklung</strong> <br>GBSSG / Etimark AG – 08/2017 bis 08/2021<br>
mit Berufsmaturität</p>
</section>
<section class="projects">
<h3>Projekte</h3>
<p><strong>ResearchNavigator</strong> – Tracking-Webtool für Forschungsprojekte<br>
Technologien: .NET, Nuxt.js, PostgreSQL, Docker (2024/25)<br>
<a href="https://eprints.ost.ch/id/eprint/1259/" target="_blank">Dokumentation Studienarbeit</a></p>
<p><strong>Wallstreet Bar</strong> – Dynamische Getränkepreise nach Nachfrage<br>
<a href="https://wallstreet-bar.vercel.app/" target="_blank">Projektlink</a> (2024/25)<br>
Technologien: Nuxt.js, Supabase</p>
<p><strong>SwissCardGames</strong> – Web-Applikation für Schweizer Kartenspiele<br>
Technologien: .NET, Vue.js, PostgreSQL (2024)</p>
</section>
</main>
</body>
</html>