From 58eaf8310ae008357cd9944942a72bf87bb21a2e Mon Sep 17 00:00:00 2001 From: nomad Date: Wed, 4 Jun 2025 03:14:08 +0300 Subject: [PATCH] init --- .gitignore | 3 ++ generate-pdf-marine.js | 13 ++++++ generate-pdf-tech.js | 13 ++++++ marine.html | 92 ++++++++++++++++++++++++++++++++++++++++++ package.json | 12 ++++++ style.css | 75 ++++++++++++++++++++++++++++++++++ tech.html | 92 ++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 300 insertions(+) create mode 100644 .gitignore create mode 100644 generate-pdf-marine.js create mode 100644 generate-pdf-tech.js create mode 100644 marine.html create mode 100644 package.json create mode 100644 style.css create mode 100644 tech.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..848ee5d --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.pdf +node_modules +bun.lock diff --git a/generate-pdf-marine.js b/generate-pdf-marine.js new file mode 100644 index 0000000..c8db9eb --- /dev/null +++ b/generate-pdf-marine.js @@ -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(); +})(); + diff --git a/generate-pdf-tech.js b/generate-pdf-tech.js new file mode 100644 index 0000000..0d5a4ec --- /dev/null +++ b/generate-pdf-tech.js @@ -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(); +})(); + diff --git a/marine.html b/marine.html new file mode 100644 index 0000000..4baa5f1 --- /dev/null +++ b/marine.html @@ -0,0 +1,92 @@ + + + + + Sager Alaskar - CV + + + +
+
+

Sager Alaskar

+
+ 📞 +965 99552273 + ✉️ sager@alaskar.dev + 🌐 alaskar.dev +
+
+ +
+

Profile

+
+

+ 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. +

+
+
+ +
+

Experience

+
+ Kuwait Oil Tankers Company — Marine Engineer (2012–2025) +
    +
  • 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.
  • +
  • Optimized mechanical systems (propulsion, hydraulics, fuel systems) through structured inspections and preventive maintenance, reducing unplanned downtime by 80% and extending engine lifespan.
  • +
  • Driving innovative engineering solutions to maximize vessel performance, efficiency, and reliability.
  • +
  • Applying advanced troubleshooting and analytical skills to swiftly resolve mechanical failures and technical challenges.
  • +
  • Bringing over 12 years of hands-on engineering expertise, driving operational excellence and innovation across high-stakes maritime environments.
  • + +
+
+
+ + +
+

Education

+

South Tyneside College — Marine Engineering HND (2012–2016)

+
+

2nd Engineer Certificate (CoC)

+
+ +

Certifications

+
+
    +
  • Proficiency in Oil Tankers Advanced Training (Safety,IGS & COW)
  • +
  • Proficiency of Security Awareness for Seafarers with Designated Duties
  • +
  • Prevention and Combating of Marine Pollution
  • +
  • Proficiency in Survival Crafts and Rescue Boats
  • +
  • Personal Survival Techniques
  • +
  • Personal Safety and Social Responsibilities
  • +
  • Fire Prevention & Fire Fighting
  • +
  • Medical First Aid
  • +
  • High Voltage
  • +
  • Engine Room Resource Management
  • +
  • Advanced Fire Fighting
  • +
+
+
+ +
+

Achievements

+
    +
  • Successful delivery of Oil Tanker from Ulsan shipyard
  • +
  • 🏆 First Place – Kuwait Hackathon 2024
  • +
+
+ +
+

Skills

+
+ Project Management + Team Leadership + Risk Assesment + Safety Procedures + Marine Requirments + Hydraulic systems +
+
+ +
+ + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..5e4e2a3 --- /dev/null +++ b/package.json @@ -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" + } +} + diff --git a/style.css b/style.css new file mode 100644 index 0000000..0d879a8 --- /dev/null +++ b/style.css @@ -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; +} + diff --git a/tech.html b/tech.html new file mode 100644 index 0000000..e97deb2 --- /dev/null +++ b/tech.html @@ -0,0 +1,92 @@ + + + + + Sager Alaskar - CV + + + +
+
+

Sager Alaskar

+
+ 📞 +965 99552273 + ✉️ sager@alaskar.dev + 🌐 alaskar.dev + GitHub + Personal Git +
+
+ +
+

Experience

+
+ Kuwait Oil Tankers Company — Marine Engineer (2012–2025) +
    +
  • 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.
  • +
  • Optimized mechanical systems (propulsion, hydraulics, fuel systems) through structured inspections and preventive maintenance, reducing unplanned downtime by 80% and extending engine lifespan.
  • +
+
+
+ +
+

Projects

+ +
+ DevOps +
    +
  • Architected a production-grade Kubernetes cluster (k3s) hosting 15, achieving 95.0% uptime over 2 years for 50+ users.
  • +
  • Automated CI/CD pipelines (ArgoCD, GitHub Actions) for deployments, eliminating manual intervention.
  • +
  • Monitoring key service health metrics like p99, uptime, and errors using CLI and ElasticSearch.
  • +
+
+ +
+ Development +
    +
  • Delivered performant web apps in TypeScript and Go (Svelte, Astro, Pocketbase) with Lighthouse scores ≥95/100 for SEO and accessibility.
  • +
  • Advised Oont on a successful e-commerce migration to WooCommerce, cutting costs by 40% versus proprietary solutions.
  • +
  • Modernized legacy workflows for clients by introducing Git/GitHub Actions, reducing deployment errors.
  • +
+
+ +
+ Cybersecurity +
    +
  • Conducted offensive security assessments on lab environments (HTB, TryHackMe), exploiting Active Directory misconfigurations (Kerberoasting, Certificate forgery).
  • +
  • Developed custom scripts (Bash, Python) to automate network scanning, vulnerability enumeration, and privilege escalation.
  • +
  • Hardened personal infrastructure by implementing fail2ban, public/private key enforcement, and automated CVE scanning and patching.
  • +
+
+
+ +
+

Education

+

South Tyneside College — Marine Engineering HND (2012–2016)

+
+

2nd Engineer Certificate

+
+
+ +
+

Achievements

+ Engineering +
    +
  • Successful delivery of Oil Tanker from Ulsan shipyard
  • +
+ Homelab +
    +
  • Running and maintaining highly available and resilient kubernetes nodes
  • +
  • Monitoring key service health metrics such as average response time, p99, error + rates and uptime via multiple tools ranging from CLI to ElasticSearch
  • +
+ Hacking +
    +
  • 🏆 First Place – Kuwait Hackathon 2024
  • +
  • 🏆 First Place – Kuwait Leaderboard Hack The Box (Cybersecurity CTF)
  • +
+
+
+ + +