add resume

This commit is contained in:
Yisroel Baum 2025-09-14 20:20:48 +03:00
parent 783cf0623a
commit 5dbbbe565f
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
2 changed files with 205 additions and 0 deletions

92
resume.css Normal file
View file

@ -0,0 +1,92 @@
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
background: #fff;
color: #0f172a;
line-height: 1.5;
}
.page {
max-width: 1000px;
margin: 20px auto;
padding: 24px;
border: 1px solid #e5e7eb;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.header {
display: flex;
justify-content: space-between;
border-bottom: 2px solid #e5e7eb;
padding-bottom: 12px;
margin-bottom: 20px;
}
.title .name {
font-size: 32px;
font-weight: 800;
}
.role {
font-size: 16px;
color: #475569;
}
.contact {
font-size: 14px;
color: #334155;
text-align: right;
}
.contact a { color: #0369a1; text-decoration: none; }
.layout {
display: grid;
grid-template-columns: 300px 1fr;
gap: 20px;
}
.card {
border: 1px solid #e5e7eb;
padding: 14px;
border-radius: 8px;
background: #fafafa;
margin-bottom: 16px;
}
.section-title {
font-size: 14px;
font-weight: bold;
letter-spacing: 1.2px;
text-transform: uppercase;
margin-bottom: 8px;
color: #475569;
}
.skills { padding-left: 18px; }
.skills li { margin-bottom: 6px; }
.item { margin-bottom: 18px; }
.item-header {
display: flex;
justify-content: space-between;
align-items: baseline;
}
.item-header h3 { font-size: 18px; }
.daterange { font-size: 14px; color: #64748b; }
ul { padding-left: 20px; }
ul li { margin: 4px 0; }
.muted { color: #64748b; font-size: 14px; }
.footer {
text-align: center;
font-size: 13px;
margin-top: 20px;
color: #64748b;
}
@media (max-width: 820px) {
.layout { grid-template-columns: 1fr; }
.contact { text-align: left; }
}

113
resume.html Normal file
View file

@ -0,0 +1,113 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yisroel Baum CV</title>
<link rel="stylesheet" href="resume.css">
</head>
<body>
<main class="page">
<header class="header">
<div class="title">
<h1 class="name">Yisroel Baum</h1>
<p class="role">Software Developer</p>
</div>
<div class="contact">
<p><strong>Phone:</strong> <a href="tel:+972587092312">058-709-2312</a></p>
<p><strong>Email:</strong> <a href="mailto:yisroel.d.baum@gmail.com">yisroel.d.baum@gmail.com</a></p>
<p><strong>Location:</strong> Beit Shemesh, Israel</p>
<p><strong>WhatsApp:</strong> <a href="https://wa.me/+972587092312" target="_blank">Message</a></p>
<p><strong>GitHub:</strong> <a href="https://github.com/ydb5755" target="_blank">github.com/ydb5755</a></p>
<p><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/yisroel-baum/" target="_blank">linkedin.com/in/yisroel-baum</a></p>
</div>
</header>
<div class="layout">
<aside>
<section class="card">
<h2 class="section-title">Profile</h2>
<p>Full-Stack Developer with a background spanning military service, education, and entrepreneurship, bringing a disciplined, adaptive, and mission-driven approach to software engineering. Experienced in backend development with Python and Laravel, clean architecture, version control best practices, and automation. Proven ability to take ownership of legacy systems, reduce bugs, and deliver reliable, scalable features in collaboration with both technical teams and executive leadership.</p>
</section>
<section class="card">
<h2 class="section-title">Technical Skills</h2>
<ul class="skills">
<li>Languages: Python, PHP, JavaScript, SQL, Kotlin, HTML5, CSS3, Bash</li>
<li>Frameworks: Laravel, Flask, React (basic), Jinja2</li>
<li>Backend & Architecture: REST APIs, Clean Architecture, MVC, SOLID, OOP, TDD, Scheduling Systems</li>
<li>Tools & Platforms: Git, GitHub, Emacs, Linux, AWS EC2, SFTP, FTP, Dropbox API, Kanban Boards</li>
</ul>
</section>
<section class="card">
<h2 class="section-title">Education</h2>
<div class="item">
<h3>Bar Ilan University</h3>
<p class="muted">Biology, Calculus, Statistics & Physics (20162018)</p>
</div>
<div class="item">
<h3>Developers Institute</h3>
<p class="muted">Full Stack Development Program (2022)</p>
</div>
</section>
<section class="card">
<h2 class="section-title">Languages</h2>
<p>English, Hebrew</p>
</section>
</aside>
<section>
<section class="section">
<h2 class="section-title">Work Experience</h2>
<article class="item">
<div class="item-header">
<h3>Youngstartup Ventures FullStack Developer (Laravel, React)</h3>
<span class="daterange">2024 Present</span>
</div>
<ul>
<li>Took ownership of a complex Laravel codebase with minimal onboarding, using end-to-end testing and systematic debugging to stabilize the system.</li>
<li>Refactored static methods to follow OOP and implemented clean architecture for scalability.</li>
<li>Rebuilt the presentation upload system with server-side processing and Dropbox integration, improving large file handling and reliability.</li>
<li>Ensured zero regression bugs in new code through disciplined testing and coding practices, while steadily reducing inherited legacy issues.</li>
<li>Automated deployments and transitioned the team from FTP to SFTP, reducing manual errors and improving release safety.</li>
<li>Contributed to deployment pipelines and CI/CD workflows under mentorship, gaining hands-on experience with automated testing and secure releases.</li>
<li>Researched Terraform and Prometheus to explore future infrastructure automation and monitoring improvements.</li>
<li>Mentored a new hire in clean architecture and testing strategies, helping to establish better coding standards within the team.</li>
<li>Collaborated with leadership on technical scope and user navigation improvements.</li>
<li>Reviewed code and guided peers on Git best practices.</li>
<li>Prioritized bug fixing, reducing bug rates and enabling stable development.</li>
</ul>
</article>
<article class="item">
<div class="item-header">
<h3>Maxsip Telecom Junior FullStack Developer</h3>
<span class="daterange">2022 2024</span>
</div>
<ul>
<li>Developed a secure web portal to host online reports for Sales and Accounting.</li>
<li>Merged and managed a unified database of 3M+ customer records.</li>
<li>Built a fraud detection system identifying fraud worth over $5M.</li>
<li>Automated API calls and daily executive reports.</li>
<li>Hosted and managed a user-friendly AWS-based interface for custom reports.</li>
</ul>
</article>
</section>
</section>
</div>
<footer class="footer">
Updated Resume: 13/09/25
</footer>
</main>
</body>
</html>