generated from alshedivat/al-folio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (83 loc) · 5.68 KB
/
index.html
File metadata and controls
94 lines (83 loc) · 5.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" /> <!-- same as <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!-- Defines the compatibility of version with browser -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <!-- for make website responsive -->
<meta name="author" content="Paweł Ilnicki" /> <!-- might be useful: https://stackoverflow.com/a/14775557/8527654 -->
<meta name="description " content="Discover the projects, portfolio, resume, and creative work of Paweł Ilnicki – a versatile tech enthusiast, passionate painter, writer, and gamer. Explore his achievements, professional background, and connect through useful links to his other platforms." />
<title>Paweł Ilnicki | Tech Enthusiast, Painter, Writer & Gamer - Portfolio & Resume</title>
<!-- Structured data: https://developers.google.com/search/docs/appearance/structured-data/breadcrumb -->
<!-- It is either a top level path or a direct descendant of top level path - SO NO BREADCRUMB DATA NEEDED. -->
<link rel="stylesheet" href="/dist/style.css">
<script defer data-domain="pawel-ilnicki.pl" src="https://plausible.io/js/script.js"></script>
</head>
<body>
<header>
<nav class="main">
<a href="/">Home</a>
<a href="/resume">Resume</a>
<a href="/portfolio">Portfolio</a>
<nav>
<label>
<input type="radio" name="color-scheme" value="system" checked>
<img class="icon" src="/assets/img/moon-or-sun.svg" alt="Use system colour">
</label>
<label>
<input type="radio" name="color-scheme" value="light">
<img class="icon" src="/assets/img/sun.svg" alt="Light-mode">
</label>
<label>
<input type="radio" name="color-scheme" value="dark">
<img class="icon" src="/assets/img/moon.svg" alt="Dark-mode">
</label>
</nav>
</nav>
<ul itemscope itemtype="https://schema.org/BreadcrumbList" class="breadcrumb">
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="/"><span itemprop="name">Home</span></a>
<meta itemprop="position" content="1" /></li>
</ul>
</header>
<main class="flex">
<article class="item x2-space">
<h1 class="typewriter">Hi, I'm Paweł!</h1>
<h2>A versatile tech-enthusiast, not-so-versatile painter, writer and gamer.</h2>
<p>If you couldn't tell from the heading, I had actually used a type-writer for writing some of my books.</p>
<p>Coming back to tech-side of my life, however, the story begins when I was nine years old and received my first used PC - the kind equipped with a CRT monitor and a famous Turbo button.</p>
<p>My first ever introduction to programming was Pascal, but I never took a liking to it and swiftly moved on.</p>
<p>
Then, in my teens, I developed simple CLI apps in C++ on Windows. It helped me grasp the idea and the benefits of an object-oriented approach to development.
Most of those were text-based adventure games, some were actually of some utility and helped me remember English vocabulary, for instance.
Also in my teens I began dabbling in web development, but the technology at that point wasn’t as convenient as it is today.
I had to put up with FTP file transfers using Total Commander and paying outrageous fees for hosting out of my own pocket.
</p>
<p>
At Allegro, I mostly focused on learning Python.
I am the author and a sole maintainer of an open-source file converter.
This project-based path lead me to discover technologies such as Docker (and its competitor Podman) and concepts such as unit-testing and distributed work systems.
</p>
<p>I would like to continue learning not only on my spare time, as I do currently, but in a professional capacity as a programmer.</p>
</article>
<figure class="item">
<img src="/assets/img/me.webp" class="zoom my-face">
<figcaption>
<address>
03-59<br/>
Allegro Sp. z o.o., Wierzbięcice 1B<br/>
61-569 Poznań
</address>
</figcaption>
</figure>
</main>
<footer>
<p>Made by myself © 2024</p>
<nav class="socials">
<a href="mailto:pawel.ilnicki@allegro.com"><img src="/assets/img/mail.svg" class="icon" title="Drop me a line!"></a>
<a href="https://github.com/DeutscheGabanna"><img src="/assets/img/brand-github.svg" class="icon" title="Check out my GitHub profile!"></a>
<a href="https://www.linkedin.com/in/pawe%C5%82-ilnicki-6760a4162"><img src="/assets/img/brand-linkedin.svg" class="icon" title="Check out my Linkedin profile!"></a>
<a href="https://www.youtube.com/@mayorsministers6981"><img src="/assets/img/brand-youtube.svg" class="icon" title="Check out my YouTube profile!"></a>
</nav>
</footer>
</body>
</html>