updates
This commit is contained in:
parent
0565da9244
commit
8af6788c76
7 changed files with 29 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
|
pdf
|
||||||
*.pdf
|
*.pdf
|
||||||
node_modules
|
node_modules
|
||||||
bun.lock
|
bun.lock
|
||||||
|
|
|
@ -7,7 +7,7 @@ const path = require("path");
|
||||||
const page = await browser.newPage();
|
const page = await browser.newPage();
|
||||||
const htmlPath = "file://" + path.resolve(__dirname, "marine.html");
|
const htmlPath = "file://" + path.resolve(__dirname, "marine.html");
|
||||||
await page.goto(htmlPath, { waitUntil: "networkidle0" });
|
await page.goto(htmlPath, { waitUntil: "networkidle0" });
|
||||||
await page.pdf({ path: "SagerAlaskar-CV-Marine.pdf", format: "A4", printBackground: true });
|
await page.pdf({ path: "pdf/SagerAlaskar-CV-Marine.pdf", format: "A4", printBackground: true });
|
||||||
await browser.close();
|
await browser.close();
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ const path = require("path");
|
||||||
const page = await browser.newPage();
|
const page = await browser.newPage();
|
||||||
const htmlPath = "file://" + path.resolve(__dirname, "tech.html");
|
const htmlPath = "file://" + path.resolve(__dirname, "tech.html");
|
||||||
await page.goto(htmlPath, { waitUntil: "networkidle0" });
|
await page.goto(htmlPath, { waitUntil: "networkidle0" });
|
||||||
await page.pdf({ path: "SagerAlaskar-CV-Tech.pdf", format: "A4", printBackground: true });
|
await page.pdf({ path: "pdf/SagerAlaskar-CV-Tech.pdf", format: "A4", printBackground: true });
|
||||||
await browser.close();
|
await browser.close();
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
|
|
@ -87,6 +87,10 @@
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
Marine Engineer
|
||||||
|
<footer>
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
10
style.css
10
style.css
|
@ -73,3 +73,13 @@ ul li {
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 10px; /* Adjust distance from bottom */
|
||||||
|
right: 30px; /* Adjust distance from right edge */
|
||||||
|
font-size: 8px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333; /* Adjust color if needed */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -73,3 +73,11 @@ ul li {
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 10px; /* Adjust distance from bottom */
|
||||||
|
right: 30px; /* Adjust distance from right edge */
|
||||||
|
font-size: 8px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333; /* Adjust color if needed */
|
||||||
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<strong class="sub">Kuwait Oil Tankers Company</strong> — Marine Engineer (2012–2025)
|
<strong class="sub">Kuwait Oil Tankers Company</strong> — Marine Engineer (2012–2025)
|
||||||
<ul>
|
<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>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>Optimized mechanical systems (propulsion, hydraulics, fuel systems) through structured inspections and preventive maintenance, reducing unplanned downtime by 80% and extending engine lifespan.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -86,6 +86,9 @@
|
||||||
<li>🏆 First Place – Kuwait Leaderboard Hack The Box (Cybersecurity CTF)</li>
|
<li>🏆 First Place – Kuwait Leaderboard Hack The Box (Cybersecurity CTF)</li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
|
<footer>
|
||||||
|
Tech
|
||||||
|
<footer>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue