-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (93 loc) · 4.66 KB
/
index.html
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
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="assets/space.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nils' Portfolio</title>
</head>
<body>
<div id="loading-screen" style="position: fixed; width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; background-color: black; z-index: 2;">
<p style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; font-size: 2em;">Loading...</p>
</div>
<canvas id="bg"></canvas>
<main>
<header>
<h1>Nils B.</h1>
<p>Welcome to my portfolio!</p>
</header>
<blockquote>
<p>A 22-year-old AI enthusiast from Bavaria, Germany, sharing his passion for AI with like-minded people around the world.</p>
</blockquote>
<section class="left">
<h2>📜 My Journey</h2>
<p>
After finishing gymnasium in Germany, I decided to take a detour from pure informatics studies to work on music and as a webshop-host.
</p>
<p>
The siren call of AI lured me back to academia, where I found a home at Neuroforge, a rising AI-Solutions company in Bayreuth.
</p>
</section>
<section class="light">
<h2>👩🏽🚀 Skills</h2>
<h4>Languages</h4>
<p>
Python, Java, C++, JavaScript, TypeScript, Prolog, ...
</p>
<h4>Frameworks and others</h4>
<p>
Ollama, Scikit-learn, pandas, numpy, Keras, React, Node.js, three.js, Docker, Fast-API, Redis, ...
</p>
<h4>Software</h4>
<p>
Adobe Photoshop, Adobe Premiere Pro, Logic Pro X, PowerPoint, GPT4 ...
</p>
<h2>🏆 Accomplishments</h2>
<p>
Successfully balancing work at Neuroforge with my university studies has been a significant accomplishment for me. I'm proud of the projects I've completed both at work and university.
</p>
</section>
<blockquote>
<p>"All we have to decide is what to do with the time that is given us." <br>- Gandalf - </p>
</blockquote>
<section class="left">
<h2>🧑🏽💻 Work History</h2>
<h3>Holiday IT Hustles</h3>
<p>
I gained valuable experience working with sensor data at BHS-Corrugated. In addition, I held several other positions where a solid understanding of IT fundamentals was required. This includes a role at a german plastics company.
</p>
<h3>SinnWunder</h3>
<p>
At SinnWunder, I wore many hats - from webshop host to product photographer and video creator, even dipping my toes into marketing and social media strategies.
</p>
<h3>Neuroforge</h3>
<p>
Neuroforge is my launchpad to AI. Here, I've been part of various AI missions, learning about the lifecycle of a full-stack software project in a resource-rich environment.
</p>
</section>
<section>
<h2>📚 Projects <a href="https://github.com/Cachet23" target="_blank" style="font-size: 0.8em; margin-left: 10px;">(GitHub Repo)</a></h2>
<h3>MultiAgentSystem</h3>
<p>
A university project that introduced me to the principle of 'emergence' through the creation of a 'Langton's Ant' MultiAgentSystem.
</p>
<h3>Q* Search Algorithm Presentation</h3>
<p>
This presentation was the most challenging and demanding one I've ever delivered. I collaborated with a professor specializing in reinforcement learning to develop the content. It also stands out as the most innovative topic I've tackled to date.
</p>
<h3>Mobile & Ubiquitous Computing Project</h3>
<p>
In this project, we developed a biosensor application utilizing the ESP32 microcontroller paired with a MAX30100 pulse oximeter sensor. The data collected by the sensor is transmitted using the MQTT protocol and processed through Node-RED. For visualization, a web application was built using React and TypeScript, allowing real-time monitoring and analysis of the biosensor data.
</p>
<h3>LLM Summarizer</h3>
<p>
This has been my most significant project to date. It involved developing a microservice hosted on a FastAPI web server. The service utilizes the Ollama LLM to summarize Microsoft Teams messages, enabling employees to quickly catch up on any missed discussions. Stay in the loop ∞
</p>
</section>
<blockquote>
<p>cheers!</p>
</blockquote>
</main>
<script type="module" src="/main.js"></script>
</body>
</html>