2025-04-07 18:26:01 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2025-07-02 19:00:36 +02:00
|
|
|
<meta charset="UTF-8">
|
2025-04-07 18:26:01 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2025-07-02 19:00:36 +02:00
|
|
|
<title>Bartłomiej Piekarski - CV</title>
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400&display=swap" rel="stylesheet">
|
|
|
|
<style>
|
|
|
|
:root {
|
|
|
|
--bg-primary: #1a1b26;
|
|
|
|
--bg-secondary: #24283b;
|
|
|
|
--bg-card: #2d304f;
|
|
|
|
--accent-blue: #7aa2f7;
|
|
|
|
--accent-purple: #bb9af7;
|
|
|
|
--accent-cyan: #7dcfff;
|
|
|
|
--text-primary: #c0caf5;
|
|
|
|
--text-secondary: #a9b1d6;
|
|
|
|
--text-muted: #565f89;
|
|
|
|
--border-color: #414868;
|
|
|
|
--success: #9ece6a;
|
|
|
|
--warning: #e0af68;
|
|
|
|
--error: #f7768e;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
background: var(--bg-primary);
|
|
|
|
color: var(--text-primary);
|
|
|
|
line-height: 1.6;
|
|
|
|
overflow-x: hidden;
|
|
|
|
background-image:
|
|
|
|
radial-gradient(circle at 90% 10%, rgba(122, 162, 247, 0.03) 0%, transparent 20%),
|
|
|
|
radial-gradient(circle at 10% 90%, rgba(187, 154, 247, 0.03) 0%, transparent 20%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
max-width: 1200px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
padding: 2rem 0;
|
|
|
|
background: var(--bg-secondary);
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-content {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-image {
|
|
|
|
width: 160px;
|
|
|
|
height: 160px;
|
|
|
|
border-radius: 50%;
|
|
|
|
object-fit: cover;
|
|
|
|
border: 4px solid var(--accent-blue);
|
|
|
|
margin-right: 2rem;
|
|
|
|
box-shadow: 0 0 25px rgba(122, 162, 247, 0.3);
|
|
|
|
background: linear-gradient(135deg, #414868, #7aa2f7);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-image img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
transition: transform 0.5s ease;
|
|
|
|
transform: scale(1.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-text h1 {
|
|
|
|
font-size: 2.5rem;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
color: var(--accent-cyan);
|
|
|
|
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-text h2 {
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: 500;
|
|
|
|
color: var(--accent-purple);
|
|
|
|
margin-bottom: 1.2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-info {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-item i {
|
|
|
|
margin-right: 8px;
|
|
|
|
color: var(--accent-blue);
|
|
|
|
width: 20px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-item a {
|
|
|
|
color: var(--text-primary);
|
|
|
|
text-decoration: none;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-item a:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
bottom: -2px;
|
|
|
|
left: 0;
|
|
|
|
width: 0;
|
|
|
|
height: 1px;
|
|
|
|
background: var(--accent-cyan);
|
|
|
|
transition: width 0.3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-item a:hover {
|
|
|
|
color: var(--accent-cyan);
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-item a:hover:after {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.language-toggle {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: 20px;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toggle-btn {
|
|
|
|
background: var(--bg-card);
|
|
|
|
border: none;
|
|
|
|
color: var(--text-primary);
|
|
|
|
padding: 8px 15px;
|
|
|
|
border-radius: 20px;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 8px;
|
|
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
|
|
|
border: 1px solid var(--border-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.toggle-btn:hover {
|
|
|
|
background: var(--accent-blue);
|
|
|
|
color: var(--bg-primary);
|
|
|
|
transform: translateY(-2px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.toggle-btn i {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid-layout {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 2fr;
|
|
|
|
gap: 2rem;
|
|
|
|
margin: 3rem auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section {
|
|
|
|
margin-bottom: 2.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-title {
|
|
|
|
position: relative;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
padding-bottom: 0.5rem;
|
|
|
|
color: var(--accent-purple);
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-title::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 50px;
|
|
|
|
height: 3px;
|
|
|
|
background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
background: var(--bg-card);
|
|
|
|
border-radius: 12px;
|
|
|
|
padding: 1.8rem;
|
|
|
|
margin-bottom: 1.8rem;
|
|
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
|
|
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card:hover {
|
|
|
|
transform: translateY(-8px);
|
|
|
|
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
|
|
|
|
}
|
|
|
|
|
|
|
|
.card::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 5px;
|
|
|
|
background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skills-container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
|
|
gap: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skill-category {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skill-category h4 {
|
|
|
|
margin-bottom: 0.8rem;
|
|
|
|
color: var(--accent-cyan);
|
|
|
|
font-size: 1.1rem;
|
|
|
|
position: relative;
|
|
|
|
padding-left: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skill-category h4::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
background: var(--accent-purple);
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skill-tags {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skill-tag {
|
|
|
|
background: rgba(122, 162, 247, 0.1);
|
|
|
|
padding: 0.5rem 0.8rem;
|
|
|
|
border-radius: 6px;
|
|
|
|
font-size: 0.85rem;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
border: 1px solid var(--border-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.skill-tag:hover {
|
|
|
|
background: rgba(122, 162, 247, 0.2);
|
|
|
|
transform: translateY(-2px);
|
|
|
|
border-color: var(--accent-blue);
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-item, .experience-item {
|
|
|
|
margin-bottom: 1.8rem;
|
|
|
|
padding-bottom: 1.8rem;
|
|
|
|
border-bottom: 1px solid var(--border-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-item:last-child, .experience-item:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-header, .experience-header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-start;
|
|
|
|
margin-bottom: 0.8rem;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 0.8rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-title {
|
|
|
|
font-size: 1.25rem;
|
|
|
|
color: var(--accent-cyan);
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-links {
|
|
|
|
display: flex;
|
|
|
|
gap: 0.8rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-links a {
|
|
|
|
color: var(--text-secondary);
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: rgba(122, 162, 247, 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-links a:hover {
|
|
|
|
color: var(--accent-blue);
|
|
|
|
transform: translateY(-3px);
|
|
|
|
background: rgba(122, 162, 247, 0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-details ul {
|
|
|
|
padding-left: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-details li {
|
|
|
|
margin-bottom: 0.8rem;
|
|
|
|
position: relative;
|
|
|
|
line-height: 1.7;
|
|
|
|
padding-left: 1.8rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-details li::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0.5rem;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: var(--accent-blue);
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-item {
|
|
|
|
margin-bottom: 1.8rem;
|
|
|
|
padding-left: 1.8rem;
|
|
|
|
border-left: 2px solid var(--accent-purple);
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-item::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
left: -8px;
|
|
|
|
top: 8px;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: var(--accent-purple);
|
|
|
|
box-shadow: 0 0 10px rgba(187, 154, 247, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-date {
|
|
|
|
font-size: 0.95rem;
|
|
|
|
color: var(--text-muted);
|
|
|
|
margin-bottom: 0.4rem;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-title {
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
color: var(--accent-cyan);
|
|
|
|
font-size: 1.2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-subtitle {
|
|
|
|
font-style: italic;
|
|
|
|
color: var(--text-secondary);
|
|
|
|
margin-bottom: 0.8rem;
|
|
|
|
font-size: 1.05rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.interests-grid {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.interest-item {
|
|
|
|
background: rgba(187, 154, 247, 0.1);
|
|
|
|
padding: 0.8rem 1.2rem;
|
|
|
|
border-radius: 25px;
|
|
|
|
font-size: 0.95rem;
|
|
|
|
border: 1px solid var(--border-color);
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.interest-item:hover {
|
|
|
|
background: rgba(187, 154, 247, 0.2);
|
|
|
|
transform: translateY(-3px);
|
|
|
|
border-color: var(--accent-purple);
|
|
|
|
}
|
|
|
|
|
|
|
|
.about-me-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 1.2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.about-item {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
gap: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.about-icon {
|
|
|
|
color: var(--accent-blue);
|
|
|
|
font-size: 1.2rem;
|
|
|
|
min-width: 24px;
|
|
|
|
padding-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.about-text {
|
|
|
|
line-height: 1.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.decoration {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
opacity: 0.05;
|
|
|
|
}
|
|
|
|
|
|
|
|
.decoration.circle {
|
|
|
|
width: 300px;
|
|
|
|
height: 300px;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 2px solid var(--accent-cyan);
|
|
|
|
top: -150px;
|
|
|
|
right: -100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.decoration.square {
|
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
|
|
|
border: 2px solid var(--accent-purple);
|
|
|
|
top: 50px;
|
|
|
|
right: 200px;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
.grid-layout {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-content {
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-image {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-info {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
.contact-info {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
gap: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-header {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
gap: 0.8rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skills-container {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.language-toggle {
|
|
|
|
position: relative;
|
|
|
|
top: auto;
|
|
|
|
right: auto;
|
|
|
|
margin-top: 1rem;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-image {
|
|
|
|
width: 140px;
|
|
|
|
height: 140px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
text-align: center;
|
|
|
|
padding: 2rem 0;
|
|
|
|
color: var(--text-muted);
|
|
|
|
font-size: 0.9rem;
|
|
|
|
margin-top: 2rem;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-content {
|
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tech-stack {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 0.5rem;
|
|
|
|
margin-top: 0.8rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.photo-frame {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
border-radius: 50%;
|
|
|
|
overflow: hidden;
|
|
|
|
border: 4px solid var(--accent-blue);
|
|
|
|
box-shadow: 0 0 20px rgba(122, 162, 247, 0.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
.photo-frame::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: linear-gradient(135deg, rgba(122, 162, 247, 0.1), rgba(187, 154, 247, 0.1));
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
</style>
|
2025-04-07 18:26:01 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
2025-07-02 19:00:36 +02:00
|
|
|
<div class="decoration circle"></div>
|
|
|
|
<div class="decoration square"></div>
|
|
|
|
|
|
|
|
<div class="language-toggle">
|
|
|
|
<button class="toggle-btn">
|
|
|
|
<i class="fas fa-globe"></i>
|
|
|
|
Polish Version
|
|
|
|
</button>
|
2025-04-07 18:26:01 +02:00
|
|
|
</div>
|
2025-07-02 19:00:36 +02:00
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="header-content">
|
|
|
|
<div class="header-image">
|
|
|
|
<div class="photo-frame">
|
|
|
|
<img src="img/photo-trans.png" alt="Bartłomiej Piekarski">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="header-text">
|
|
|
|
<h1>Bartłomiej Piekarski</h1>
|
|
|
|
<h2>Computer Science Student</h2>
|
|
|
|
<div class="contact-info">
|
|
|
|
<div class="contact-item">
|
|
|
|
<i class="fas fa-envelope"></i>
|
|
|
|
<a href="mailto:bartek.piekarski@tuta.com">bartek.piekarski@tuta.com</a>
|
|
|
|
</div>
|
|
|
|
<div class="contact-item">
|
|
|
|
<i class="fas fa-globe"></i>
|
|
|
|
<a href="https://sykorax.eu">sykorax.eu</a>
|
|
|
|
</div>
|
|
|
|
<div class="contact-item">
|
|
|
|
<i class="fab fa-github"></i>
|
|
|
|
<a href="https://forgia.sykorax.eu/lheor">GitHub</a>
|
|
|
|
</div>
|
|
|
|
<div class="contact-item">
|
|
|
|
<i class="fab fa-linkedin"></i>
|
|
|
|
<a href="https://linkedin.com/in/bartek-piekarski">LinkedIn</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2025-04-07 18:26:01 +02:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="container">
|
2025-07-02 19:00:36 +02:00
|
|
|
<div class="grid-layout">
|
|
|
|
<div class="left-column">
|
|
|
|
<div class="section">
|
|
|
|
<h3 class="section-title">About Me</h3>
|
|
|
|
<div class="card">
|
|
|
|
<div class="about-me-content">
|
|
|
|
<div class="about-item">
|
|
|
|
<div class="about-icon">
|
|
|
|
<i class="fas fa-graduation-cap"></i>
|
|
|
|
</div>
|
|
|
|
<div class="about-text">
|
|
|
|
Computer Science student specializing in distributed systems and game development
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="about-item">
|
|
|
|
<div class="about-icon">
|
|
|
|
<i class="fas fa-laptop-code"></i>
|
|
|
|
</div>
|
|
|
|
<div class="about-text">
|
|
|
|
Practical experience in building web applications and managing infrastructure
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="about-item">
|
|
|
|
<div class="about-icon">
|
|
|
|
<i class="fas fa-server"></i>
|
|
|
|
</div>
|
|
|
|
<div class="about-text">
|
|
|
|
DevOps enthusiast with experience in containerization and automation
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="about-item">
|
|
|
|
<div class="about-icon">
|
|
|
|
<i class="fas fa-map-marker-alt"></i>
|
|
|
|
</div>
|
|
|
|
<div class="about-text">
|
|
|
|
Available: onsite (Katowice, Gliwice, Kraków) or remotely
|
|
|
|
</div>
|
|
|
|
</div>
|
2025-04-07 18:26:01 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2025-07-02 19:00:36 +02:00
|
|
|
|
|
|
|
<div class="section">
|
|
|
|
<h3 class="section-title">Technical Skills</h3>
|
|
|
|
<div class="card">
|
|
|
|
<div class="skills-container">
|
|
|
|
<div class="skill-category">
|
|
|
|
<h4><i class="fas fa-cloud skill-icon"></i> DevOps & Infrastructure</h4>
|
|
|
|
<div class="skill-tags">
|
|
|
|
<div class="skill-tag">Docker</div>
|
|
|
|
<div class="skill-tag">Kubernetes</div>
|
|
|
|
<div class="skill-tag">Caddy/Nginx</div>
|
|
|
|
<div class="skill-tag">Firewall</div>
|
|
|
|
<div class="skill-tag">Git</div>
|
|
|
|
<div class="skill-tag">SSH</div>
|
|
|
|
<div class="skill-tag">Monitoring</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="skill-category">
|
|
|
|
<h4><i class="fas fa-code skill-icon"></i> Backend</h4>
|
|
|
|
<div class="skill-tags">
|
|
|
|
<div class="skill-tag">Rust (Actix)</div>
|
|
|
|
<div class="skill-tag">Python (Flask)</div>
|
|
|
|
<div class="skill-tag">Go</div>
|
|
|
|
<div class="skill-tag">PostgreSQL</div>
|
|
|
|
<div class="skill-tag">MSSQL</div>
|
|
|
|
<div class="skill-tag">REST API</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="skill-category">
|
|
|
|
<h4><i class="fas fa-gamepad skill-icon"></i> Game Development</h4>
|
|
|
|
<div class="skill-tags">
|
|
|
|
<div class="skill-tag">Unity (C#)</div>
|
|
|
|
<div class="skill-tag">Godot</div>
|
|
|
|
<div class="skill-tag">Blender</div>
|
|
|
|
<div class="skill-tag">Optimization</div>
|
|
|
|
<div class="skill-tag">Multiplatform</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="skill-category">
|
|
|
|
<h4><i class="fas fa-layer-group skill-icon"></i> Other</h4>
|
|
|
|
<div class="skill-tags">
|
|
|
|
<div class="skill-tag">HTML5/CSS3</div>
|
|
|
|
<div class="skill-tag">JavaScript</div>
|
|
|
|
<div class="skill-tag">Linux</div>
|
|
|
|
<div class="skill-tag">Cyber Security</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2025-04-07 18:26:01 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2025-07-02 19:00:36 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="section">
|
|
|
|
<h3 class="section-title">Interests</h3>
|
|
|
|
<div class="card">
|
|
|
|
<div class="interests-grid">
|
|
|
|
<div class="interest-item">
|
|
|
|
<i class="fas fa-server"></i> Self-hosting
|
|
|
|
</div>
|
|
|
|
<div class="interest-item">
|
|
|
|
<i class="fas fa-dragon"></i> Fantasy
|
|
|
|
</div>
|
|
|
|
<div class="interest-item">
|
|
|
|
<i class="fas fa-box"></i> Containerization
|
|
|
|
</div>
|
|
|
|
<div class="interest-item">
|
|
|
|
<i class="fas fa-dice-d20"></i> RPG Games
|
|
|
|
</div>
|
2025-04-07 18:26:01 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2025-07-02 19:00:36 +02:00
|
|
|
|
|
|
|
<div class="right-column">
|
|
|
|
<div class="section">
|
|
|
|
<h3 class="section-title">Projects</h3>
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<div class="project-item">
|
|
|
|
<div class="project-header">
|
|
|
|
<h4 class="project-title">The Dark Athenaeum</h4>
|
|
|
|
<div class="project-links">
|
|
|
|
<a href="https://athenaeum.sykorax.eu" title="Website"><i class="fas fa-globe"></i></a>
|
|
|
|
<a href="https://forgia.sykorax.eu/lheor/Athenaeum" title="GitHub"><i class="fab fa-github"></i></a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="project-details">
|
|
|
|
<ul>
|
|
|
|
<li>Full-featured online bookstore with order and payment system</li>
|
|
|
|
<li>Implemented: shopping cart, orders, user authentication</li>
|
|
|
|
<div class="tech-stack">
|
|
|
|
<div class="skill-tag">Rust (Actix Web)</div>
|
|
|
|
<div class="skill-tag">PostgreSQL</div>
|
|
|
|
<div class="skill-tag">Bootstrap 5</div>
|
|
|
|
<div class="skill-tag">Caddy</div>
|
|
|
|
</div>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="project-item">
|
|
|
|
<div class="project-header">
|
|
|
|
<h4 class="project-title">Hosting Server</h4>
|
|
|
|
<div class="project-links">
|
|
|
|
<a href="https://sykorax.eu/" title="GitHub"><i class="fab fa-github"></i></a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="project-details">
|
|
|
|
<ul>
|
|
|
|
<li>Home server hosting services in Docker containers</li>
|
|
|
|
<li>Hosted services: Forgejo, CV, web applications, DevOps tools</li>
|
|
|
|
<li>Security: tailscale (soon pangolin), firewall, fail2ban</li>
|
|
|
|
<div class="tech-stack">
|
|
|
|
<div class="skill-tag">Docker</div>
|
|
|
|
<div class="skill-tag">Caddy</div>
|
|
|
|
<div class="skill-tag">Backup System</div>
|
|
|
|
<div class="skill-tag">Kubernetes</div>
|
|
|
|
</div>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="project-item">
|
|
|
|
<div class="project-header">
|
|
|
|
<h4 class="project-title">Diploma Project: FPS</h4>
|
|
|
|
<div class="project-links">
|
|
|
|
<a href="https://forgia.sykorax.eu/lheor" title="GitHub"><i class="fab fa-github"></i></a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="project-details">
|
|
|
|
<ul>
|
|
|
|
<li>FPS game inspired by the Doom series, developed in Godot</li>
|
|
|
|
<li>Game logic implemented in 4 languages: Rust, C++, C#, GDScript</li>
|
|
|
|
<li>Comparative analysis: performance, development ergonomics, compatibility</li>
|
|
|
|
<div class="tech-stack">
|
|
|
|
<div class="skill-tag">Godot</div>
|
|
|
|
<div class="skill-tag">Rust</div>
|
|
|
|
<div class="skill-tag">C++</div>
|
|
|
|
<div class="skill-tag">C#</div>
|
|
|
|
<div class="skill-tag">GDScript</div>
|
|
|
|
</div>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2025-04-07 18:26:01 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2025-07-02 19:00:36 +02:00
|
|
|
<div class="section">
|
|
|
|
<h3 class="section-title">Education</h3>
|
|
|
|
<div class="card">
|
|
|
|
<div class="timeline-item">
|
|
|
|
<div class="timeline-date">2023 - Present</div>
|
|
|
|
<h4 class="timeline-title">University of Economics in Katowice</h4>
|
|
|
|
<div class="timeline-subtitle">Computer Science, specialization: Computer Games and Mobile Applications</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="timeline-item">
|
|
|
|
<div class="timeline-date">2021 - 2023</div>
|
|
|
|
<h4 class="timeline-title">University of Silesia in Katowice</h4>
|
|
|
|
<div class="timeline-subtitle">English Philology, specialization: Translation with Chinese (unfinished)</div>
|
|
|
|
</div>
|
2025-04-07 18:26:01 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2025-07-02 19:00:36 +02:00
|
|
|
<div class="section">
|
|
|
|
<h3 class="section-title">Work Experience</h3>
|
|
|
|
<div class="card">
|
|
|
|
<div class="experience-item">
|
|
|
|
<div class="experience-header">
|
|
|
|
<h4 class="project-title">JUSTUS</h4>
|
|
|
|
<div class="timeline-date">March 2023 - Present</div>
|
|
|
|
</div>
|
|
|
|
<div class="timeline-subtitle">Security Guard</div>
|
|
|
|
<div class="project-details">
|
|
|
|
<ul>
|
|
|
|
<li>Oversight of security systems and access control</li>
|
|
|
|
<li>Incident response and coordination with services</li>
|
|
|
|
<li>Document management and compliance with procedures</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="experience-item">
|
|
|
|
<div class="experience-header">
|
|
|
|
<h4 class="project-title">MINIT Poland</h4>
|
|
|
|
<div class="timeline-date">February 2021 - January 2022</div>
|
|
|
|
</div>
|
|
|
|
<div class="timeline-subtitle">Cashier Salesman</div>
|
|
|
|
<div class="project-details">
|
|
|
|
<ul>
|
|
|
|
<li>Customer service and problem solving</li>
|
|
|
|
<li>Financial settlements and fiscal management</li>
|
|
|
|
<li>Assortment management and workstation organization</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2025-04-07 18:26:01 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2025-07-02 19:00:36 +02:00
|
|
|
</div>
|
2025-04-07 18:26:01 +02:00
|
|
|
</div>
|
2025-07-02 19:00:36 +02:00
|
|
|
|
|
|
|
<footer>
|
|
|
|
<div class="container">
|
|
|
|
<div class="footer-content">
|
|
|
|
<p>© 2025 Bartłomiej Piekarski | CV</p>
|
|
|
|
</div>
|
2025-04-09 12:35:33 +02:00
|
|
|
</div>
|
|
|
|
</footer>
|
2025-07-02 19:00:36 +02:00
|
|
|
|
|
|
|
<script>
|
|
|
|
document.querySelectorAll('.skill-tag').forEach(tag => {
|
|
|
|
tag.addEventListener('mouseenter', () => {
|
|
|
|
tag.style.boxShadow = `0 0 12px ${getComputedStyle(document.documentElement).getPropertyValue('--accent-blue')}`;
|
|
|
|
});
|
|
|
|
tag.addEventListener('mouseleave', () => {
|
|
|
|
tag.style.boxShadow = 'none';
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
const toggleBtn = document.querySelector('.toggle-btn');
|
|
|
|
toggleBtn.addEventListener('click', () => {
|
|
|
|
window.location.href = 'index.html';
|
|
|
|
});
|
|
|
|
|
|
|
|
const header = document.querySelector('header');
|
|
|
|
setInterval(() => {
|
|
|
|
header.style.boxShadow = `0 4px 20px rgba(122, 162, 247, 0.3)`;
|
|
|
|
setTimeout(() => {
|
|
|
|
header.style.boxShadow = '0 4px 20px rgba(0, 0, 0, 0.3)';
|
|
|
|
}, 1000);
|
|
|
|
}, 5000);
|
|
|
|
</script>
|
2025-04-07 18:26:01 +02:00
|
|
|
</body>
|
2025-07-02 19:00:36 +02:00
|
|
|
</html>
|