-
Notifications
You must be signed in to change notification settings - Fork 0
/
scripts.js
65 lines (46 loc) · 2.75 KB
/
scripts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
const blogs = [
{
title: "Roadmap to Learning Anything New (2024): How to Stay Ahead in the Modern World",
description: "We live in an era where knowledge is more accessible than ever, yet the ability to learn new things is one of the most valuable skills you can have. The 21st century...",
link: "https://medium.com/@engineerumarzubairi/roadmap-to-learning-anything-new-2024-how-to-stay-ahead-in-the-modern-world-f6cf1361827c"
},
{
title: "AI and Studies: How I scored 3.7+ CGPA 📚 as an Engineering Student👨🎓",
description: "Achieving a high CGPA in engineering is no small feat, especially when juggling multiple subjects...",
link: "https://medium.com/@engineerumarzubairi/ai-and-studies-how-i-scored-3-7-cgpa-as-an-engineering-student-f3eecabdab6f"
}
];
const aboutText = "Recent Telecommunications Engineering Graduate with a strong academic track record and a deep passion for Artificial Intelligence (AI) and Machine Learning (ML). Proficient in Python, MATLAB, and C#, with practical experience in developing and deploying AI/ML models and solutions. Adept at applying advanced AI techniques such as Supervised Learning, Deep Learning, Reinforcement Learning, and Transfer Learning Processing to tackle complex problems and drive technological innovation. Demonstrated expertise in implementing cutting-edge ML algorithms, fine-tuning large language models, and integrating AI solutions into practical applications. Seeking opportunities to leverage AI and ML skills to contribute to groundbreaking projects and advance technology in the AI/ML field."
const aboutCont = document.getElementById('about-content');
aboutCont.textContent = aboutText
const blogContainer = document.getElementById('blog-cards');
blogs.forEach(blog => {
const blogCard = document.createElement('div');
blogCard.classList.add('blog-card');
const blogTitle = document.createElement('h3');
blogTitle.textContent = blog.title;
const blogDescription = document.createElement('p');
blogDescription.textContent = blog.description;
const blogLink = document.createElement('a');
blogLink.href = blog.link;
blogLink.textContent = "Read more";
blogCard.appendChild(blogTitle);
blogCard.appendChild(blogDescription);
blogCard.appendChild(blogLink);
blogContainer.appendChild(blogCard);
});
function LinkedIn() {
window.open("https://www.linkedin.com/in/umar-zubairi");
}
function WhatsApp() {
window.open("https://wa.me/923260941361");
}
function Email() {
window.open("mailto:engineerumarzubairi@gmail.com")
}
function Medium() {
window.open("https://medium.com/@engineerumarzubairi")
}
function GitHub() {
window.open("https://github.com/umarzub")
}