-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (88 loc) · 4.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Soheil</title>
<link rel="stylesheet" href="styles-25-2-7.css" />
<script defer src="main-25-2-7.js"></script>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Hello. I'm Soheil, a Full Stack Engineer from Hamburg. JavaScript is challenging but it also makes it fun. I try to master it."
/>
</head>
<body>
<main>
<header>
<h1><mark>Welcome.</mark><br /><mark>Nice having you here.</mark></h1>
<button id="color-scheme-toggle-btn" aria-label="Toggle color scheme" onclick="toggleTheme()"></button>
</header>
<ul class="mb-50">
<li><a class="section-link" href="#who-i-am">Who I am</a></li>
<li><a class="section-link" href="#what-i-do">What I do</a></li>
<li>
<a class="section-link" href="https://linkedin.com/in/soheiln" target="_blank">Me on Linkedin</a>
</li>
<li>
<a class="section-link" href="https://github.com/s0h311" target="_blank">Me on Github</a>
</li>
</ul>
<section id="who-i-am" class="mb-50">
<h2><mark>Who I Am</mark></h2>
<p>
My name is Soheil. I'm a Full Stack Engineer from Germany's most delightful city, Hamburg.
<br />
<br />
I enjoy reading books. Some of my favourites are Harari's
<mark>Sapiens</mark> and <mark>Homo Deus</mark> and Goethe's <mark>Faust</mark>. I also like traveling,
running and swimming. I'm currently interested in robust software architecture design in web applications
and frontend tooling.
</p>
</section>
<section id="what-i-do">
<h2><mark>What I Do</mark></h2>
<h3>Full Stack Engineer</h3>
<p>Full Stack Engineer at CHECK24 in Hamburg. Working with smart and passionate people.</p>
<br />
<h3>Event Organizer</h3>
<p>
I help organizing community events from time to time. Last one was
<a href="https://hamburg.devfest.de/" target="_blank">DevFest Hamburg 2024</a>. I've also previously built a
GDSC at my university with the help of a great team.
</p>
<br />
<h3>Open Source</h3>
<p>
I contribute to a small extent to open source projects. Some of the repos include Nuxt, Next.js, React and
Supabase.
</p>
<br />
<h3>Experimenting With Things</h3>
<ul class="experiments-section">
<li>Currently building an <a href="https://github.com/s0h311/scayl" target="_blank">auto scaler</a> in Go.</li>
<li>Built a zero dependency <a href="https://github.com/s0h311/yugen" target="_blank">state management library</a> in JavaScript.</li>
<li>Building <a href="https://github.com/s0h311/state-transitions" target="_blank">extensions</a> to make Redux, NgRx, Pinia and co. safer to work with.</li>
<li>Built a <a href="https://github.com/s0h311/nuxt-one" target="_blank">Nuxt.js SaaS boilerplate</a> with Auth, DB, Payment etc.</li>
<li>Built a <a href="https://github.com/s0h311/feed-monky" target="_blank">Feedback collecting app</a> that uses AI to create TODOs from the feedbacks.</li>
<li>For book lovers: <a href="https://github.com/s0h311/remind5/" target="_blank">a reminder app</a>.</li>
<li><a href="https://roostercafe.de/" target="_blank">Landing page</a> for my favorite café.</li>
<li><a href="https://easy-slt.de/" target="_blank">A simple landing page</a> for a construction company.</li>
<li>Gave a <a href="https://github.com/s0h311/web-workshop-haw-2024" target="_blank">web development workshop</a> for students of my uni.</li>
<li>And more...</li>
</ul>
<br />
<h3>Student</h3>
<p>
Currently working on my thesis. It's about frontend state management. Check it out on
<a href="https://github.com/s0h311/thesis" target="_blank">Github</a>.
</p>
</section>
<br />
</main>
<hr />
<footer>
<span>Contact me: <a href="mailto:[email protected]">[email protected]</a></span>
<span>Last updated: Feb 7, 2025</span>
</footer>
</body>
</html>