init
This commit is contained in:
commit
58eaf8310a
7 changed files with 300 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
*.pdf
|
||||
node_modules
|
||||
bun.lock
|
13
generate-pdf-marine.js
Normal file
13
generate-pdf-marine.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
const puppeteer = require("puppeteer");
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
|
||||
(async () => {
|
||||
const browser = await puppeteer.launch();
|
||||
const page = await browser.newPage();
|
||||
const htmlPath = "file://" + path.resolve(__dirname, "marine.html");
|
||||
await page.goto(htmlPath, { waitUntil: "networkidle0" });
|
||||
await page.pdf({ path: "SagerAlaskar-CV-Marine.pdf", format: "A4", printBackground: true });
|
||||
await browser.close();
|
||||
})();
|
||||
|
13
generate-pdf-tech.js
Normal file
13
generate-pdf-tech.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
const puppeteer = require("puppeteer");
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
|
||||
(async () => {
|
||||
const browser = await puppeteer.launch();
|
||||
const page = await browser.newPage();
|
||||
const htmlPath = "file://" + path.resolve(__dirname, "tech.html");
|
||||
await page.goto(htmlPath, { waitUntil: "networkidle0" });
|
||||
await page.pdf({ path: "SagerAlaskar-CV-Tech.pdf", format: "A4", printBackground: true });
|
||||
await browser.close();
|
||||
})();
|
||||
|
92
marine.html
Normal file
92
marine.html
Normal file
|
@ -0,0 +1,92 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Sager Alaskar - CV</title>
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<main class="page">
|
||||
<header>
|
||||
<h1>Sager Alaskar</h1>
|
||||
<div class="contact">
|
||||
<span>📞 +965 99552273</span>
|
||||
<span>✉️ sager@alaskar.dev</span>
|
||||
<span>🌐 alaskar.dev</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<h2>Profile</h2>
|
||||
<div class="item">
|
||||
<p>
|
||||
Dynamic Marine Engineer with over a decade of experience in marine engineering, project management, and team leadership. Skilled in communication, problem-solving, and working under pressure. Strong background in generator and main engine decarb, hydraulic systems, and welding. Known for initiative and critical thinking.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>Experience</h2>
|
||||
<div class="item">
|
||||
<strong class="sub">Kuwait Oil Tankers Company</strong> — Marine Engineer (2012–2025)
|
||||
<ul>
|
||||
<li>Led maintenance and operations on a fleet of 30 marine vessels, ensuring 100% compliance with SOLAS, MARPOL, and Class regulations while achieving 0 safety incidents over 3 years.</li>
|
||||
<li>Optimized mechanical systems (propulsion, hydraulics, fuel systems) through structured inspections and preventive maintenance, reducing unplanned downtime by 80% and extending engine lifespan.</li>
|
||||
<li>Driving innovative engineering solutions to maximize vessel performance, efficiency, and reliability.</li>
|
||||
<li>Applying advanced troubleshooting and analytical skills to swiftly resolve mechanical failures and technical challenges.</li>
|
||||
<li>Bringing over <strong>12 years of hands-on engineering expertise</strong>, driving operational excellence and innovation across high-stakes maritime environments.</li>
|
||||
<!-- TODO: add more here -->
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section>
|
||||
<h2>Education</h2>
|
||||
<p><strong class="sub">South Tyneside College</strong> — Marine Engineering HND (2012–2016)</p>
|
||||
<div class="item">
|
||||
<p style="margin-left:20px;">2nd Engineer Certificate (CoC)</p>
|
||||
</div>
|
||||
|
||||
<h2>Certifications</h2>
|
||||
<div class="item">
|
||||
<ul>
|
||||
<li>Proficiency in Oil Tankers Advanced Training (Safety,IGS & COW)</li>
|
||||
<li>Proficiency of Security Awareness for Seafarers with Designated Duties</li>
|
||||
<li>Prevention and Combating of Marine Pollution</li>
|
||||
<li>Proficiency in Survival Crafts and Rescue Boats</li>
|
||||
<li>Personal Survival Techniques</li>
|
||||
<li>Personal Safety and Social Responsibilities</li>
|
||||
<li>Fire Prevention & Fire Fighting</li>
|
||||
<li>Medical First Aid</li>
|
||||
<li>High Voltage</li>
|
||||
<li>Engine Room Resource Management</li>
|
||||
<li>Advanced Fire Fighting</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>Achievements</h2>
|
||||
<ul>
|
||||
<li> Successful delivery of Oil Tanker from Ulsan shipyard </li>
|
||||
<li>🏆 First Place – Kuwait Hackathon 2024</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>Skills</h2>
|
||||
<div class="contact">
|
||||
<span>Project Management</span>
|
||||
<span>Team Leadership</span>
|
||||
<span>Risk Assesment</span>
|
||||
<span>Safety Procedures</span>
|
||||
<span>Marine Requirments</span>
|
||||
<span>Hydraulic systems</span>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
12
package.json
Normal file
12
package.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"name": "cv-generator",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"tech": "node generate-pdf-tech.js",
|
||||
"marine": "node generate-pdf-marine.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"puppeteer": "^22.0.0"
|
||||
}
|
||||
}
|
||||
|
75
style.css
Normal file
75
style.css
Normal file
|
@ -0,0 +1,75 @@
|
|||
page {
|
||||
size: A4;
|
||||
margin: 1.5cm;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
color: #333446;
|
||||
background: white;
|
||||
/* background: #EAEFEF; */
|
||||
margin: 0;
|
||||
padding-left: 64px;
|
||||
padding-right: 64px;
|
||||
}
|
||||
|
||||
.page {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 24px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.contact {
|
||||
text-align: center;
|
||||
margin-top: 1px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.contact span {
|
||||
display: inline-block;
|
||||
margin: 0 8px;
|
||||
font-size: 11.5px;
|
||||
}
|
||||
|
||||
.contact a {
|
||||
text-decoration: none;
|
||||
color: #333446;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 20px;
|
||||
margin-top: 18px;
|
||||
margin-bottom: 10px;
|
||||
border-bottom: 1px solid #000;
|
||||
padding-bottom: 2px;
|
||||
color: #333446;
|
||||
/* color: #7F8CAA; */
|
||||
}
|
||||
|
||||
.sub {
|
||||
color: #454B5E;
|
||||
}
|
||||
|
||||
.item {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 18px;
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
ul li {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
92
tech.html
Normal file
92
tech.html
Normal file
|
@ -0,0 +1,92 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Sager Alaskar - CV</title>
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<main class="page">
|
||||
<header>
|
||||
<h1>Sager Alaskar</h1>
|
||||
<div class="contact">
|
||||
<span>📞 +965 99552273</span>
|
||||
<span>✉️ sager@alaskar.dev</span>
|
||||
<span>🌐 alaskar.dev</span>
|
||||
<span><a href="https://github.com/nomadics9">GitHub</a></span>
|
||||
<span><a href="https://git.askar.tv/nomad">Personal Git</a></span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<h2>Experience</h2>
|
||||
<div class="item">
|
||||
<strong class="sub">Kuwait Oil Tankers Company</strong> — Marine Engineer (2012–2025)
|
||||
<ul>
|
||||
<li>Led maintenance and operations for a fleet of 30 marine vessels, ensuring 100% compliance with SOLAS, MARPOL, and Class regulations while achieving 0 safety incidents over 3 years.</li>
|
||||
<li>Optimized mechanical systems (propulsion, hydraulics, fuel systems) through structured inspections and preventive maintenance, reducing unplanned downtime by 80% and extending engine lifespan.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>Projects</h2>
|
||||
|
||||
<div class="item">
|
||||
<strong class="sub">DevOps</strong>
|
||||
<ul>
|
||||
<li>Architected a production-grade Kubernetes cluster (k3s) hosting 15, achieving 95.0% uptime over 2 years for 50+ users.</li>
|
||||
<li>Automated CI/CD pipelines (ArgoCD, GitHub Actions) for deployments, eliminating manual intervention.</li>
|
||||
<li>Monitoring key service health metrics like p99, uptime, and errors using CLI and ElasticSearch.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="item">
|
||||
<strong class="sub">Development</strong>
|
||||
<ul>
|
||||
<li>Delivered performant web apps in TypeScript and Go (Svelte, Astro, Pocketbase) with Lighthouse scores ≥95/100 for SEO and accessibility.</li>
|
||||
<li>Advised Oont on a successful e-commerce migration to WooCommerce, cutting costs by 40% versus proprietary solutions.</li>
|
||||
<li>Modernized legacy workflows for clients by introducing Git/GitHub Actions, reducing deployment errors.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="item">
|
||||
<strong class="sub">Cybersecurity</strong>
|
||||
<ul>
|
||||
<li>Conducted offensive security assessments on lab environments (HTB, TryHackMe), exploiting Active Directory misconfigurations (Kerberoasting, Certificate forgery).</li>
|
||||
<li>Developed custom scripts (Bash, Python) to automate network scanning, vulnerability enumeration, and privilege escalation.</li>
|
||||
<li>Hardened personal infrastructure by implementing fail2ban, public/private key enforcement, and automated CVE scanning and patching.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>Education</h2>
|
||||
<p><strong class="sub">South Tyneside College</strong> — Marine Engineering HND (2012–2016)</p>
|
||||
<div class="item">
|
||||
<p style="margin-left:20px;">2nd Engineer Certificate</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>Achievements</h2>
|
||||
<strong class="sub">Engineering</strong>
|
||||
<ul>
|
||||
<li> Successful delivery of Oil Tanker from Ulsan shipyard </li>
|
||||
</ul>
|
||||
<strong class="sub">Homelab</strong>
|
||||
<ul>
|
||||
<li> Running and maintaining highly available and resilient kubernetes nodes </li>
|
||||
<li> Monitoring key service health metrics such as average response time, p99, error
|
||||
rates and uptime via multiple tools ranging from CLI to ElasticSearch </li>
|
||||
</ul>
|
||||
<strong class="sub">Hacking</strong>
|
||||
<ul>
|
||||
<li>🏆 First Place – Kuwait Hackathon 2024</li>
|
||||
<li>🏆 First Place – Kuwait Leaderboard Hack The Box (Cybersecurity CTF)</li>
|
||||
</ul>
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in a new issue