CHANGE: Try with ChatGPT
This commit is contained in:
BIN
favicon.png
BIN
favicon.png
Binary file not shown.
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.4 KiB |
179
index.html
179
index.html
@@ -1,179 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Maksym Buz - Making Technology Work</title>
|
||||
<link rel="icon" type="image/png" href="favicon.png">
|
||||
<style>
|
||||
/* --- COMMENTS ARE IN ENGLISH AS REQUESTED --- */
|
||||
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Inter:wght@400;500;600&display=swap');
|
||||
:root {
|
||||
--bg-color: #121826;
|
||||
--card-bg-color: #1A2035;
|
||||
--text-color: #E0E0E0;
|
||||
--accent-color: #00BFFF;
|
||||
--header-font: 'Montserrat', sans-serif;
|
||||
--body-font: 'Inter', sans-serif;
|
||||
}
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
html { scroll-behavior: smooth; }
|
||||
body {
|
||||
background-color: var(--bg-color);
|
||||
color: var(--text-color);
|
||||
font-family: var(--body-font);
|
||||
line-height: 1.7;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
body.modal-open { overflow: hidden; }
|
||||
.page-background {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
background-color: var(--bg-color);
|
||||
background-image:
|
||||
radial-gradient(circle at 25% 25%, rgba(0, 191, 255, 0.1), transparent 30%),
|
||||
radial-gradient(circle at 75% 75%, rgba(0, 191, 255, 0.08), transparent 40%);
|
||||
}
|
||||
.engine-room { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; padding: 0 1rem; }
|
||||
.hero-content { position: relative; z-index: 1; animation: fadeIn 1.5s ease-out; }
|
||||
.engine-room h1 { font-family: var(--header-font); font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; letter-spacing: -2px; margin-bottom: 1rem; text-shadow: 0 0 20px rgba(0, 191, 255, 0.3); }
|
||||
.scroll-cue { position: absolute; bottom: 2rem; z-index: 1; text-decoration: none; color: var(--text-color); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; animation: pulse 2s infinite; }
|
||||
.toolkit { max-width: 960px; margin: 0 auto; padding: 6rem 1.5rem; position: relative; z-index: 1; }
|
||||
.section { margin-bottom: 5rem; opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
|
||||
.section.is-visible { opacity: 1; transform: translateY(0); }
|
||||
.profile-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 4rem; }
|
||||
.profile-pic { width: 150px; height: 150px; border-radius: 50%; border: 4px solid var(--accent-color); margin-bottom: 1.5rem; box-shadow: 0 0 25px rgba(0, 191, 255, 0.3); object-fit: cover; }
|
||||
.contact-links { display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; }
|
||||
.contact-links a { color: var(--text-color); transition: color 0.3s ease, transform 0.3s ease; }
|
||||
.contact-links a:hover { color: var(--accent-color); transform: translateY(-3px); }
|
||||
.section-title { font-family: var(--header-font); font-size: 2.5rem; margin-bottom: 2.5rem; text-align: center; position: relative; }
|
||||
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: var(--accent-color); }
|
||||
.technologies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-auto-rows: 1fr; gap: 1.5rem; }
|
||||
.card { background-color: var(--card-bg-color); padding: 2rem; border-radius: 12px; border: 1px solid #2a3149; transition: transform 0.3s ease, border-color 0.3s ease; display: flex; flex-direction: column; }
|
||||
.card:hover { transform: translateY(-5px); border-color: var(--accent-color); }
|
||||
.card h3 { font-family: var(--header-font); font-size: 1.5rem; color: var(--accent-color); margin-bottom: 1rem; }
|
||||
.card p { color: var(--text-color); opacity: 0.8; }
|
||||
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: auto; }
|
||||
.tag { background-color: var(--bg-color); color: var(--text-color); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.9rem; font-weight: 500; border: 1px solid transparent; transition: all 0.3s ease; }
|
||||
.tag:hover { color: var(--accent-color); border-color: var(--accent-color); }
|
||||
.experience-card { background-color: var(--card-bg-color); padding: 2.5rem; border-radius: 12px; }
|
||||
.experience-list { list-style: none; }
|
||||
.experience-list li { position: relative; padding-left: 2rem; margin-bottom: 1rem; }
|
||||
.experience-list li::before { content: '⚡'; position: absolute; left: 0; top: 0; color: var(--accent-color); font-size: 1.2rem; }
|
||||
.homelab-list { list-style: none; margin: 1.5rem 0; text-align: left; }
|
||||
.homelab-list li { position: relative; padding-left: 2rem; margin-bottom: 1rem; }
|
||||
.homelab-list li::before { content: '⚙️'; position: absolute; left: 0; top: 0; font-size: 1.2rem; }
|
||||
.homelab-goal { font-style: italic; opacity: 0.8; margin-top: 1.5rem; }
|
||||
.cta-button { font-family: var(--header-font); background-color: var(--accent-color); color: var(--bg-color); font-size: 1.2rem; font-weight: 700; padding: 1rem 3rem; border: 2px solid var(--accent-color); border-radius: 8px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; cursor: pointer; }
|
||||
.cta-button:hover { background-color: transparent; color: var(--accent-color); }
|
||||
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); display: flex; justify-content: center; align-items: center; z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
|
||||
body.modal-open .modal-overlay { opacity: 1; visibility: visible; }
|
||||
.modal-content { background-color: var(--card-bg-color); padding: 3rem; border-radius: 12px; border: 1px solid var(--accent-color); position: relative; text-align: center; transform: scale(0.9); transition: transform 0.3s ease; }
|
||||
body.modal-open .modal-content { transform: scale(1); }
|
||||
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--text-color); font-size: 2rem; cursor: pointer; }
|
||||
.modal-content h2 { font-family: var(--header-font); color: var(--accent-color); margin-bottom: 2rem; }
|
||||
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
|
||||
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.05); opacity: 1; } }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="page-background"></div>
|
||||
<header class="engine-room" id="home">
|
||||
<div class="hero-content"><h1>Making Technology Work</h1></div>
|
||||
<a href="#toolkit" class="scroll-cue"><span>Explore the Toolkit</span><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" width="24" height="24"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 13.5 12 21m0 0-7.5-7.5M12 21V3" /></svg></a>
|
||||
</header>
|
||||
<main class="toolkit" id="toolkit">
|
||||
<section class="profile-header section">
|
||||
<img src="profile.jpg" alt="Maksym Buz Profile Picture" class="profile-pic">
|
||||
<h1>Maksym Buz</h1>
|
||||
<div class="contact-links">
|
||||
<a href="mailto:buz.maxim@gmail.com" title="Email"><svg viewBox="0 0 24 24" fill="currentColor" width="32" height="32"><path d="M1.5 4.5h21A1.5 1.5 0 0 1 24 6v12a1.5 1.5 0 0 1-1.5 1.5H1.5A1.5 1.5 0 0 1 0 18V6a1.5 1.5 0 0 1 1.5-1.5ZM21 5.5H3a.5.5 0 0 0-.492.576l9 7.5a.5.5 0 0 0 .492.001l9-7.5A.5.5 0 0 0 21 5.5Z"/></svg></a>
|
||||
<a href="https://www.linkedin.com/in/maksym-buz/" target="_blank" rel="noopener noreferrer" title="LinkedIn"><svg viewBox="0 0 24 24" fill="currentColor" width="32" height="32"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065 2.064 2.064 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.225 0z"/></svg></a>
|
||||
<a href="https://git.mbuz.uk/Homelab" target="_blank" rel="noopener noreferrer" title="Git"><svg viewBox="0 0 24 24" fill="currentColor" width="32" height="32"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg></a>
|
||||
<a href="https://t.me/mx_bz" target="_blank" rel="noopener noreferrer" title="Telegram"><svg viewBox="0 0 24 24" fill="currentColor" width="32" height="32"><path d="M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.17.91-.494 1.202-.82 1.23-.698.054-1.22-.43-1.864-.848-.994-.65-1.55-1.05-2.52-1.682a.295.295 0 0 1-.088-.187l.002-.002c.02-.193.18-1.63.18-1.63l4.125-3.824a.43.43 0 0 0-.14-.333.433.433 0 0 0-.376-.027l-5.12 3.22a2.31 2.31 0 0 1-1.012.318.89.89 0 0 1-.72-.315c-.2-.224-.27-.453-.25-.662.015-.17.06-.39.13-.666l2.12-6.72a2.034 2.034 0 0 1 .64-1.1c.32-.27.703-.418 1.14-.418.12-.002.39.01.69.055z"/></svg></a>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<h2 class="section-title">Technologies & Tools</h2>
|
||||
<div class="technologies-grid">
|
||||
<div class="card"><h3>Core Languages</h3><div class="skill-tags"><span class="tag">Python</span><span class="tag">Bash</span><span class="tag">SQL</span></div></div>
|
||||
<div class="card"><h3>Infrastructure & Automation</h3><div class="skill-tags"><span class="tag">Linux</span><span class="tag">Ansible</span><span class="tag">Docker</span><span class="tag">Proxmox</span><span class="tag">Git</span></div></div>
|
||||
<div class="card"><h3>Databases & APIs</h3><div class="skill-tags"><span class="tag">PostgreSQL</span><span class="tag">MySQL</span><span class="tag">REST API</span><span class="tag">JSON</span></div></div>
|
||||
<div class="card"><h3>IaC & Monitoring</h3><div class="skill-tags"><span class="tag">IaC Principles</span><span class="tag">Zabbix</span><span class="tag">SNMP</span></div></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<h2 class="section-title">Professional Experience</h2>
|
||||
<div class="card experience-card">
|
||||
<p>A results-oriented engineer with a proven track record in both corporate IT and specialized product environments. My career is focused on enhancing system reliability, automating complex processes, and delivering high-value, turnkey projects.</p>
|
||||
<ul class="experience-list">
|
||||
<li>Led the end-to-end delivery of enterprise-grade monitoring solutions, ensuring stability for high-stakes client infrastructures.</li>
|
||||
<li>Developed robust automation scripts (Python, Bash, Ansible) that significantly reduced manual deployment times and operational errors.</li>
|
||||
<li>Managed and synchronized critical business systems (CRM, HR), performing complex database upgrades, migrations, and root cause analysis (RCA).</li>
|
||||
<li>Acted as a key technical resource, mentoring team members, assisting sales with expert insights, and delivering public webinars as a certified trainer.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<h2 class="section-title">Personal R&D: The Homelab</h2>
|
||||
<div class="card">
|
||||
<p>Beyond professional duties, my passion for engineering thrives in my Homelab. It's my dedicated space for hands-on experimentation and mastering complex system deployments. Key features include:</p>
|
||||
<ul class="homelab-list">
|
||||
<li>A multi-node virtualization environment using Proxmox and Docker.</li>
|
||||
<li>A self-contained Git service for personal project version control.</li>
|
||||
<li>Dozens of self-hosted multimedia and productivity services.</li>
|
||||
</ul>
|
||||
<p class="homelab-goal">The complete automation of this entire infrastructure is my primary objective.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta-section section">
|
||||
<button id="cta-button" class="cta-button">Let's Build a Solution</button>
|
||||
</section>
|
||||
</main>
|
||||
<div id="contact-modal" class="modal-overlay">
|
||||
<div class="modal-content">
|
||||
<button id="close-modal" class="modal-close">×</button>
|
||||
<h2>Contact Me</h2>
|
||||
<div class="contact-links">
|
||||
<a href="mailto:buz.maxim@gmail.com" title="Email"><svg viewBox="0 0 24 24" fill="currentColor" width="32" height="32"><path d="M1.5 4.5h21A1.5 1.5 0 0 1 24 6v12a1.5 1.5 0 0 1-1.5 1.5H1.5A1.5 1.5 0 0 1 0 18V6a1.5 1.5 0 0 1 1.5-1.5ZM21 5.5H3a.5.5 0 0 0-.492.576l9 7.5a.5.5 0 0 0 .492.001l9-7.5A.5.5 0 0 0 21 5.5Z"/></svg></a>
|
||||
<a href="https://www.linkedin.com/in/maksym-buz/" target="_blank" rel="noopener noreferrer" title="LinkedIn"><svg viewBox="0 0 24 24" fill="currentColor" width="32" height="32"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065 2.064 2.064 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.225 0z"/></svg></a>
|
||||
<a href="https://git.mbuz.uk/Homelab" target="_blank" rel="noopener noreferrer" title="Git"><svg viewBox="0 0 24 24" fill="currentColor" width="32" height="32"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg></a>
|
||||
<a href="https://t.me/mx_bz" target="_blank" rel="noopener noreferrer" title="Telegram"><svg viewBox="0 0 24 24" fill="currentColor" width="32" height="32"><path d="M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.17.91-.494 1.202-.82 1.23-.698.054-1.22-.43-1.864-.848-.994-.65-1.55-1.05-2.52-1.682a.295.295 0 0 1-.088-.187l.002-.002c.02-.193.18-1.63.18-1.63l4.125-3.824a.43.43 0 0 0-.14-.333.433.433 0 0 0-.376-.027l-5.12 3.22a2.31 2.31 0 0 1-1.012.318.89.89 0 0 1-.72-.315c-.2-.224-.27-.453-.25-.662.015-.17.06-.39.13-.666l2.12-6.72a2.034 2.034 0 0 1 .64-1.1c.32-.27.703-.418 1.14-.418.12-.002.39.01.69.055z"/></svg></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
// This script fades in sections as they become visible on scroll
|
||||
const sections = document.querySelectorAll('.section');
|
||||
const observer = new IntersectionObserver(entries => {
|
||||
entries.forEach(entry => {
|
||||
if (entry.isIntersecting) {
|
||||
entry.target.classList.add('is-visible');
|
||||
}
|
||||
});
|
||||
}, { threshold: 0.1 });
|
||||
sections.forEach(section => observer.observe(section));
|
||||
|
||||
// This script controls the contact modal
|
||||
const ctaButton = document.getElementById('cta-button');
|
||||
const modal = document.getElementById('contact-modal');
|
||||
const closeModalButton = document.getElementById('close-modal');
|
||||
|
||||
const openModal = () => document.body.classList.add('modal-open');
|
||||
const closeModal = () => document.body.classList.remove('modal-open');
|
||||
|
||||
ctaButton.addEventListener('click', openModal);
|
||||
closeModalButton.addEventListener('click', closeModal);
|
||||
modal.addEventListener('click', (event) => {
|
||||
if (event.target === modal) { // Close if clicked on the overlay
|
||||
closeModal();
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
226
inxed.html
Normal file
226
inxed.html
Normal file
@@ -0,0 +1,226 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Maksym Buz — Making Technology Work</title>
|
||||
<meta name="description" content="Senior Application Engineer. Technical Support, Monitoring, Automation, Homelab." />
|
||||
<link rel="icon" type="image/png" href="favicon.png" />
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--bg-0: #0b0f1a;
|
||||
--bg-1: #0e1322;
|
||||
--fg: #e8eefc;
|
||||
--muted: #a6b0c3;
|
||||
--accent: #7aa2ff;
|
||||
--chip: #1a2135;
|
||||
--chip-border: #27304a;
|
||||
--card: #0f1627cc;
|
||||
--shadow: 0 10px 30px rgba(0,0,0,.35);
|
||||
--maxw: 1100px;
|
||||
--radius: 18px;
|
||||
}
|
||||
|
||||
html, body { height: 100%; }
|
||||
html { scroll-behavior: smooth; }
|
||||
body {
|
||||
margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
|
||||
color: var(--fg); background: radial-gradient(1200px 600px at 80% -10%, #1b2b5a55, transparent), radial-gradient(900px 600px at -10% 80%, #24476d55, transparent), linear-gradient(180deg, var(--bg-0), var(--bg-1));
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
/* Subtle animated grid */
|
||||
.grid-bg::before {
|
||||
content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -2;
|
||||
background-image: linear-gradient(to right, #ffffff11 1px, transparent 1px), linear-gradient(to bottom, #ffffff10 1px, transparent 1px);
|
||||
background-size: 28px 28px, 28px 28px;
|
||||
mask-image: radial-gradient(900px 900px at 70% 15%, black, transparent 70%), radial-gradient(900px 900px at 20% 85%, black, transparent 70%);
|
||||
}
|
||||
|
||||
/* Wireframe ornaments */
|
||||
.ornament { position: fixed; pointer-events: none; opacity: .18; filter: drop-shadow(0 4px 12px #0005); }
|
||||
.ornament.top { top: -60px; right: -60px; width: 360px; }
|
||||
.ornament.bottom { bottom: -40px; left: -40px; width: 380px; }
|
||||
|
||||
header.hero { min-height: 92vh; display: grid; place-items: center; text-align: center; position: relative; padding: 72px 20px 40px; }
|
||||
.hero h1 { font-size: clamp(42px, 7vw, 88px); line-height: 1.02; margin: 0 0 14px; letter-spacing: -0.02em; }
|
||||
.hero p.subtitle { color: var(--muted); font-size: clamp(16px, 2.2vw, 22px); margin: 0 0 36px; }
|
||||
|
||||
.scroll-hint { display: inline-flex; align-items: center; gap: 12px; color: var(--accent); text-decoration: none; font-weight: 600; border: 1px solid #6d86ff44; padding: 10px 14px; border-radius: 999px; backdrop-filter: blur(6px); background: #1b2444aa; box-shadow: var(--shadow); }
|
||||
.scroll-hint .arrow { width: 16px; height: 24px; border: 2px solid var(--accent); border-radius: 12px; position: relative; }
|
||||
.scroll-hint .arrow::after { content: ""; position: absolute; left: 50%; top: 6px; width: 2px; height: 6px; background: var(--accent); transform: translateX(-50%); border-radius: 1px; animation: drop 1.8s infinite; }
|
||||
@keyframes drop { 0% { opacity: 0; transform: translate(-50%, 0);} 30% { opacity: 1;} 100% { opacity: 0; transform: translate(-50%, 9px);} }
|
||||
|
||||
section { padding: 72px 20px; }
|
||||
.container { width: min(100% - 24px, var(--maxw)); margin: 0 auto; }
|
||||
|
||||
.card { background: var(--card); border: 1px solid #ffffff1a; border-radius: var(--radius); box-shadow: var(--shadow); }
|
||||
|
||||
/* About */
|
||||
.about { display: grid; grid-template-columns: 180px 1fr; gap: 28px; align-items: center; padding: 28px; }
|
||||
.about img { width: 180px; height: 180px; object-fit: cover; border-radius: 22px; border: 1px solid #ffffff22; }
|
||||
.about h2 { margin: 0; font-size: 32px; }
|
||||
.about .title { color: var(--muted); margin-top: 4px; }
|
||||
|
||||
.links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
|
||||
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--chip-border); background: var(--chip); color: var(--fg); text-decoration: none; font-weight: 500; }
|
||||
.chip svg { width: 18px; height: 18px; opacity: .9; }
|
||||
|
||||
/* Skills */
|
||||
.skills h3, .experience h3, .homelab h3 { margin: 0 0 18px; font-size: 24px; letter-spacing: -0.01em; }
|
||||
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
|
||||
.badge { padding: 12px 14px; border-radius: 12px; border: 1px solid #fff1; background: #0f1629; }
|
||||
.badge strong { display: block; margin-bottom: 6px; }
|
||||
|
||||
/* Experience */
|
||||
.experience .content { padding: 24px; line-height: 1.6; }
|
||||
.experience ul { margin: 14px 0 0 18px; }
|
||||
|
||||
/* Homelab */
|
||||
.homelab .content { padding: 24px; line-height: 1.7; }
|
||||
.kpi { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
|
||||
.kpi .pill { padding: 8px 12px; border-radius: 999px; border: 1px dashed #3a4a77; background: #0e1837; color: #cfe1ff; font-size: 13px; }
|
||||
|
||||
footer { text-align: center; padding: 40px 20px 80px; color: var(--muted); }
|
||||
footer a { color: var(--accent); text-decoration: none; }
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 780px) {
|
||||
.about { grid-template-columns: 1fr; text-align: center; }
|
||||
.about img { margin: 0 auto; }
|
||||
.links { justify-content: center; }
|
||||
}
|
||||
|
||||
/* Reduced motion */
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
* { animation: none !important; transition: none !important; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="grid-bg">
|
||||
<!-- Decorative wireframes (inline SVG) -->
|
||||
<svg class="ornament top" viewBox="0 0 200 200" aria-hidden="true">
|
||||
<g fill="none" stroke="#9db2ff" stroke-width=".6">
|
||||
<polygon points="50,10 180,30 190,120 90,190 10,110"/>
|
||||
<polyline points="50,10 90,190 180,30 10,110 190,120 50,10"/>
|
||||
</g>
|
||||
</svg>
|
||||
<svg class="ornament bottom" viewBox="0 0 200 200" aria-hidden="true">
|
||||
<g fill="none" stroke="#9db2ff" stroke-width=".6">
|
||||
<circle cx="100" cy="100" r="80"/>
|
||||
<path d="M20 100 Q100 40 180 100"/>
|
||||
<path d="M20 100 Q100 160 180 100"/>
|
||||
<path d="M60 30 L140 170"/>
|
||||
<path d="M140 30 L60 170"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
<header class="hero">
|
||||
<div>
|
||||
<h1>Making Technology Work</h1>
|
||||
<p class="subtitle">Senior Application Engineer • Monitoring • Automation • Problem Solving</p>
|
||||
<a href="#about" class="scroll-hint" aria-label="Scroll to profile">
|
||||
<span class="arrow" aria-hidden="true"></span>
|
||||
<span>I want to make it work!</span>
|
||||
</a>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section id="about">
|
||||
<div class="container card about">
|
||||
<img src="profile.jpg" alt="Portrait of Maksym Buz" />
|
||||
<div>
|
||||
<h2>Maksym Buz</h2>
|
||||
<div class="title">Senior Application Engineer @ Zabbix</div>
|
||||
<p style="margin-top:14px;color:var(--muted)">
|
||||
With 7+ years in technical support and product delivery, I build reliable monitoring platforms, automate complex processes, and ship turnkey solutions that meet SLAs. Comfortable in Bash/Python/Linux, I design HA/DR topologies, optimize performance, and tame outages with data-driven RCA.
|
||||
</p>
|
||||
<div class="links">
|
||||
<a class="chip" href="mailto:maxim.buz@gmail.com" aria-label="Email">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor"><path d="M4 4h16v16H4z"/><path d="M22 6l-10 7L2 6"/></svg>
|
||||
<span>maxim.buz@gmail.com</span>
|
||||
</a>
|
||||
<a class="chip" href="https://www.linkedin.com/in/maksym-buz" target="_blank" rel="noopener" aria-label="LinkedIn">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor"><path d="M6 6h3v12H6zM8 4a2 2 0 110-4 2 2 0 010 4z" transform="translate(0 6)"/><path d="M12 9h3v1.8c.6-1 1.7-2 3.7-2 3 0 4.3 1.6 4.3 5V18h-3v-3.7c0-2.1-.8-3-2.3-3-1.7 0-2.7 1.1-2.7 3.2V18h-3V9z" transform="scale(.75) translate(3 3)"/></svg>
|
||||
<span>LinkedIn</span>
|
||||
</a>
|
||||
<a class="chip" href="https://t.me/mx_bz" target="_blank" rel="noopener" aria-label="Telegram">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor"><path d="M22 2L11 13"/><path d="M22 2l-7 20-4-9-9-4 20-7z"/></svg>
|
||||
<span>@mx_bz</span>
|
||||
</a>
|
||||
<a class="chip" href="https://git.mbuz.uk/Homelab" target="_blank" rel="noopener" aria-label="Git repo">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor"><path d="M12 1C7 1 3 5 3 10c0 4 2.6 7.4 6.2 8.6.5.1.6-.2.6-.4v-1.6c-2.5.6-3-1.2-3-1.2-.5-1.1-1.2-1.4-1.2-1.4-1-.7.1-.7.1-.7 1.1.1 1.6 1.1 1.6 1.1 1 .1.8-.7.8-1.1-2-.2-4-1-4-4.6 0-1 .3-1.9 1-2.6-.1-.2-.4-1.3.1-2.7 0 0 .8-.3 2.7 1 1-.3 2-.4 3.1-.4s2.1.2 3.1.4c1.9-1.3 2.7-1 2.7-1 .5 1.4.2 2.5.1 2.7.6.7 1 1.6 1 2.6 0 3.6-2.1 4.4-4.1 4.6.4.3.8 1 .8 2.1v3.1c0 .2.1.5.6.4C18.4 17.4 21 14 21 10c0-5-4-9-9-9z"/></svg>
|
||||
<span>Homelab repo</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="skills">
|
||||
<div class="container">
|
||||
<h3>Skills & Tooling</h3>
|
||||
<div class="grid">
|
||||
<div class="badge"><strong>Languages</strong> Python · Bash · SQL</div>
|
||||
<div class="badge"><strong>Monitoring</strong> Zabbix (design, HA, performance tuning) · SNMP · RCA</div>
|
||||
<div class="badge"><strong>Automation</strong> Ansible · API scripting · CI-friendly workflows</div>
|
||||
<div class="badge"><strong>Containers & Virtualization</strong> Docker · Docker Compose · Proxmox (multi‑node) </div>
|
||||
<div class="badge"><strong>Linux</strong> Debian & RHEL families · systemd · networking</div>
|
||||
<div class="badge"><strong>Databases</strong> PostgreSQL + TimescaleDB · Patroni · MySQL/MariaDB · Galera</div>
|
||||
<div class="badge"><strong>Collaboration</strong> Git · Code review · Mentoring · Public webinars · Certified trainer</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="experience" class="experience">
|
||||
<div class="container card">
|
||||
<div class="content">
|
||||
<h3>Professional Experience</h3>
|
||||
<p>
|
||||
A results‑oriented engineer with a proven track record across corporate IT and specialized product environments. Focused on reliability, automation, and delivering high‑value, turnkey projects.
|
||||
</p>
|
||||
<ul>
|
||||
<li>Led end‑to‑end delivery of enterprise‑grade monitoring solutions for high‑stakes client infrastructures.</li>
|
||||
<li>Developed robust automation (Python, Bash, Ansible) reducing deployment time and operational errors.</li>
|
||||
<li>Managed and synchronized critical business systems (CRM/HR), executed upgrades, migrations, and data‑driven RCA.</li>
|
||||
<li>Key technical resource: mentoring, sales assistance, public webinars, and certified training.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="homelab" class="homelab">
|
||||
<div class="container card">
|
||||
<div class="content">
|
||||
<h3>Homelab</h3>
|
||||
<p>
|
||||
Homelabbing is my serious hobby and a testbed for real‑world architectures. I run a multi‑node Proxmox cluster, several Docker hosts with dozens of multimedia and productivity services, and a self‑hosted Git service. The goal is full‑stack automation — provisioning, updates, backups, observability, and documentation — so experiments are repeatable and safe.
|
||||
</p>
|
||||
<div class="kpi">
|
||||
<span class="pill">Multi‑node Proxmox</span>
|
||||
<span class="pill">Dozens of Docker services</span>
|
||||
<span class="pill">Self‑hosted Git (Gitea)</span>
|
||||
<span class="pill">Automation‑first approach</span>
|
||||
<span class="pill">Monitoring everywhere</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<small>© <span id="year"></span> Maksym Buz — <a href="#top" onclick="window.scrollTo({top:0,behavior:'smooth'})">Back to top</a></small>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
// Set current year
|
||||
document.getElementById('year').textContent = new Date().getFullYear();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user