|
1 | | -<div class="author-section" style="text-align: center; padding: 1.5rem; background: var(--sidebar-bg); border-radius: 15px; margin-bottom: 1.5rem;"> |
2 | | - <img src="assets/images/author.jpg" alt="Abid's Profile Picture" class="author-image" style="width: 150px; height: 150px; object-fit: cover; border-radius: 50%; margin: 15px auto; display: block; border: 3px solid var(--secondary-color); box-shadow: 0 3px 10px rgba(0,0,0,0.2);"> |
3 | | - |
4 | | - <div class="author-bio" style="max-width: 700px; margin: 0 auto; line-height: 1.4;"> |
5 | | - <h1 style="color: var(--primary-color); margin-bottom: 0.5rem;">Hello! I'm Abid</h1> |
6 | | - <p style=" margin: 0.7rem 0;"> |
7 | | - I am a certified data science professional with a passion for developing innovative machine learning solutions. As a dedicated technical writer and educator, I have authored over 450 articles to make complex concepts more accessible and to promote practical understanding. If you appreciate my work, please feel free to <a href="pages/contact" style="color: var(--secondary-color);">contact me</a> or reach out on LinkedIn. |
| 1 | +--- |
| 2 | +layout: default |
| 3 | +title: "Abid Ali Awan • Data Science & ML" |
| 4 | +permalink: / |
| 5 | +--- |
| 6 | + |
| 7 | +<!-- ============ Hero / About ============ --> |
| 8 | +<section class="author-section"> |
| 9 | + <img |
| 10 | + class="author-image" |
| 11 | + src="{{ '/assets/images/author.jpg' | relative_url }}" |
| 12 | + alt="Abid’s profile picture" /> |
| 13 | + |
| 14 | + <div class="author-bio"> |
| 15 | + <h1>Hello! I’m Abid</h1> |
| 16 | + <p> |
| 17 | + I am a certified data science professional with a passion for developing innovative machine learning solutions. As a dedicated technical writer and educator, I have authored over 450 articles to make complex concepts more accessible and to promote practical understanding.. If you enjoy the content, |
| 18 | + <a href="{{ '/pages/contact' | relative_url }}">get in touch</a> |
| 19 | + or connect on LinkedIn. |
8 | 20 | </p> |
9 | 21 | </div> |
10 | | -</div> |
11 | | - |
12 | | -<input type="text" id="searchInput" placeholder="Search articles..." style=" |
13 | | - width: 100%; |
14 | | - padding: 12px; |
15 | | - margin: 20px 0; |
16 | | - border: 1px solid #ddd; |
17 | | - border-radius: 4px; |
18 | | - font-size: 16px; |
19 | | -"> |
20 | | - |
21 | | -<div id="searchResults" style="margin-top: 15px;"></div> |
22 | | - |
23 | | -<script> |
24 | | -document.addEventListener('DOMContentLoaded', function() { |
25 | | - const searchInput = document.getElementById('searchInput'); |
26 | | - const searchResults = document.getElementById('searchResults'); |
27 | | - |
28 | | - fetch('/search.json') |
29 | | - .then(response => { |
30 | | - if (!response.ok) { |
31 | | - throw new Error('Failed to load search data'); |
32 | | - } |
33 | | - return response.json(); |
34 | | - }) |
35 | | - .then(articles => { |
36 | | - searchInput.addEventListener('input', function() { |
37 | | - const query = this.value.toLowerCase(); |
38 | | - searchResults.innerHTML = ''; |
39 | | - |
40 | | - if (query.length < 2) return; |
41 | | - |
42 | | - const results = articles.filter(article => { |
43 | | - return article.title.toLowerCase().includes(query) || |
44 | | - article.content.toLowerCase().includes(query) || |
45 | | - article.category.toLowerCase().includes(query); |
46 | | - }); |
47 | | - |
48 | | - if (results.length > 0) { |
49 | | - results.forEach(article => { |
50 | | - searchResults.innerHTML += ` |
51 | | - <div style="margin-bottom: 15px; padding: 10px; border-bottom: 1px solid #eee;"> |
52 | | - <a href="${article.url}" style="font-size: 18px; color: #0366d6; text-decoration: none;"> |
53 | | - ${article.title} |
54 | | - </a> |
55 | | - <div style="color: #666; margin-top: 5px; font-size: 14px;"> |
56 | | - Category: ${article.category} |
57 | | - </div> |
58 | | - </div> |
59 | | - `; |
60 | | - }); |
61 | | - } else { |
62 | | - searchResults.innerHTML = '<p style="color: #666;">No results found</p>'; |
63 | | - } |
64 | | - }); |
65 | | - }) |
66 | | - .catch(error => { |
67 | | - console.error('Error loading search data:', error); |
68 | | - searchResults.innerHTML = '<p style="color: #dc3545;">Error loading search data. Please try again later.</p>'; |
69 | | - }); |
70 | | -}); |
71 | | -</script> |
72 | | - |
73 | | -## 👨🔬 Author Expertise |
74 | | - |
75 | | -<div class="content-grid" style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0;"> |
76 | | - <div class="content-card" style="background: var(--sidebar-bg); padding: 1.5rem; border-radius: 10px; transition: transform 0.3s ease;"> |
77 | | - <h3><i class="fas fa-cogs" style="color: var(--secondary-color);"></i> MLOps</h3> |
78 | | - <p>Comprehensive guides on Machine Learning Operations, deployment, and scaling ML systems.</p> |
79 | | - <a href="pages/machine-learning-operations" style="color: var(--secondary-color);">Learn More →</a> |
80 | | - </div> |
81 | | - |
82 | | - <div class="content-card" style="background: var(--sidebar-bg); padding: 1.5rem; border-radius: 10px; transition: transform 0.3s ease;"> |
83 | | - <h3><i class="fas fa-brain" style="color: var(--secondary-color);"></i> Large Language Models</h3> |
84 | | - <p>Deep dives into LLMs, transformers, and state-of-the-art NLP applications.</p> |
85 | | - <a href="pages/large-language-models" style="color: var(--secondary-color);">Learn More →</a> |
86 | | - </div> |
87 | | - |
88 | | - <div class="content-card" style="background: var(--sidebar-bg); padding: 1.5rem; border-radius: 10px; transition: transform 0.3s ease;"> |
89 | | - <h3><i class="fas fa-robot" style="color: var(--secondary-color);"></i> Machine Learning</h3> |
90 | | - <p>In-depth tutorials on ML algorithms, deep learning, and practical implementations.</p> |
91 | | - <a href="pages/machine-learning" style="color: var(--secondary-color);">Learn More →</a> |
| 22 | +</section> |
| 23 | + |
| 24 | +<!-- ============ Search ============ --> |
| 25 | +<input |
| 26 | + type="search" |
| 27 | + id="searchInput" |
| 28 | + placeholder="Search articles…" /> |
| 29 | + |
| 30 | +<div id="searchResults"></div> |
| 31 | + |
| 32 | +<!-- ============ Author expertise cards ============ --> |
| 33 | +## 👨🔬 Author Expertise |
| 34 | +<div class="content-grid"> |
| 35 | +{%- for item in site.data.expertise -%} |
| 36 | + <div class="content-card"> |
| 37 | + <h3><i class="{{ item.icon }}"></i> {{ item.title }}</h3> |
| 38 | + <p>{{ item.desc }}</p> |
| 39 | + <a href="{{ item.url | relative_url }}">Learn More →</a> |
92 | 40 | </div> |
| 41 | +{%- endfor -%} |
93 | 42 | </div> |
94 | 43 |
|
| 44 | +<!-- ============ Popular topics ============ --> |
95 | 45 | ## 🎯 Popular Topics |
96 | | - |
97 | | -<div class="topics-grid" style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 2rem 0;"> |
98 | | - <a href="pages/artificial-intelligence" class="topic-link"> |
99 | | - <i class="fas fa-microchip"></i> Artificial Intelligence |
100 | | - </a> |
101 | | - <a href="pages/data-science" class="topic-link"> |
102 | | - <i class="fas fa-chart-bar"></i> Data Science |
103 | | - </a> |
104 | | - <a href="pages/natural-language-processing" class="topic-link"> |
105 | | - <i class="fas fa-language"></i> Natural Language Processing |
106 | | - </a> |
107 | | - <a href="pages/computer-vision" class="topic-link"> |
108 | | - <i class="fas fa-eye"></i> Computer Vision |
109 | | - </a> |
110 | | - <a href="pages/data-engineering" class="topic-link"> |
111 | | - <i class="fas fa-server"></i> Data Engineering |
112 | | - </a> |
113 | | - <a href="pages/programming" class="topic-link"> |
114 | | - <i class="fas fa-code"></i> Programming |
115 | | - </a> |
116 | | - <a href="pages/sql" class="topic-link"> |
117 | | - <i class="fas fa-database"></i> SQL |
| 46 | +<div class="topics-grid"> |
| 47 | +{%- for t in site.data.popular_topics -%} |
| 48 | + <a href="{{ t.url | relative_url }}" class="topic-link"> |
| 49 | + <i class="{{ t.icon }}"></i> {{ t.label }} |
118 | 50 | </a> |
| 51 | +{%- endfor -%} |
119 | 52 | </div> |
120 | 53 |
|
| 54 | +<!-- ============ Misc links ============ --> |
121 | 55 | ## 📖 Miscellaneous |
122 | | - |
123 | | - |
124 | | -- 📚 **[Books Published by Abid](pages/books-by-abid)** - Check out my published books and ebooks |
125 | | -- 📝 **[Career Resources](pages/career-advice)** - Career guidance and interview preparation |
126 | | -- 📋 **[Cheat Sheets](pages/cheat-sheets)** - Quick reference guides for various technologies |
127 | | -- 📬 **[Contact Me](pages/contact)** - Get in touch with me for questions or collaborations |
128 | | - |
129 | | -<div class="cta-section" style="text-align: center; margin: 3rem 0; padding: 2rem; background: var(--sidebar-bg); border-radius: 15px;"> |
| 56 | +<ul> |
| 57 | + <li>📚 <strong><a href="{{ '/pages/books-by-abid' | relative_url }}">Books Published by Abid</a></strong></li> |
| 58 | + <li>📝 <strong><a href="{{ '/pages/career-advice' | relative_url }}">Career Resources</a></strong></li> |
| 59 | + <li>📋 <strong><a href="{{ '/pages/cheat-sheets' | relative_url }}">Cheat Sheets</a></strong></li> |
| 60 | + <li>📬 <strong><a href="{{ '/pages/contact' | relative_url }}">Contact Me</a></strong></li> |
| 61 | +</ul> |
| 62 | + |
| 63 | +<!-- ============ Call-to-action ============ --> |
| 64 | +<section class="cta-section"> |
130 | 65 | <h2>Stay Updated!</h2> |
131 | | - <p>Star ⭐ this <a href="https://github.com/kingabzpro/Writing-Portfolio">repository</a> to get notified about new content and updates.</p> |
132 | | - |
133 | | - <div class="social-links" style="display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem;"> |
134 | | - <a href="https://github.com/kingabzpro" style="font-size: 2rem; color: var(--text-color);"><i class="fab fa-github"></i></a> |
135 | | - <a href="https://linkedin.com/in/1abidaliawan" style="font-size: 2rem; color: var(--text-color);"><i class="fab fa-linkedin"></i></a> |
136 | | - <a href="https://twitter.com/1abidaliawan" style="font-size: 2rem; color: var(--text-color);"><i class="fab fa-twitter"></i></a> |
| 66 | + <p> |
| 67 | + ⭐ Star this <a href="https://github.com/kingabzpro/Writing-Portfolio">repository</a> |
| 68 | + to be notified about new content and updates. |
| 69 | + </p> |
| 70 | + |
| 71 | + <div class="social-links"> |
| 72 | + <a href="https://github.com/kingabzpro"><i class="fab fa-github"></i></a> |
| 73 | + <a href="https://linkedin.com/in/1abidaliawan"><i class="fab fa-linkedin"></i></a> |
| 74 | + <a href="https://twitter.com/1abidaliawan"><i class="fab fa-twitter"></i></a> |
137 | 75 | </div> |
138 | | -</div> |
139 | | - |
140 | | -<style> |
141 | | -.content-card:hover { |
142 | | - transform: translateY(-5px); |
143 | | -} |
144 | | - |
145 | | -.topics-grid a { |
146 | | - display: block; |
147 | | - padding: 0.5rem; |
148 | | - background: var(--sidebar-bg); |
149 | | - border-radius: 5px; |
150 | | - text-decoration: none; |
151 | | - color: var(--text-color); |
152 | | - transition: all 0.3s ease; |
153 | | -} |
154 | | - |
155 | | -.topics-grid a:hover { |
156 | | - background: var(--secondary-color); |
157 | | - color: var(--bg-color); |
158 | | - transform: translateX(5px); |
159 | | -} |
| 76 | +</section> |
160 | 77 |
|
161 | | -.social-links a:hover { |
162 | | - color: var(--secondary-color); |
163 | | - transform: scale(1.1); |
164 | | -} |
165 | | -</style> |
| 78 | +<!-- ============ Assets ============ --> |
| 79 | +<link rel="stylesheet" href="{{ '/assets/css/custom.css' | relative_url }}"> |
| 80 | +<script src="{{ '/assets/js/search.js' | relative_url }}"></script> |
0 commit comments