Skip to content

Latest commit

 

History

History
164 lines (141 loc) · 7.17 KB

index.md

File metadata and controls

164 lines (141 loc) · 7.17 KB
Abid's Profile Picture

Hello! I'm Abid

A dedicated technical writer and educator with a passion for making complex concepts accessible to everyone. With a strong background in data science and programming, I've authored over 450 articles that bridge the gap between technical complexity and practical understanding.

<script> document.addEventListener('DOMContentLoaded', function() { const searchInput = document.getElementById('searchInput'); const searchResults = document.getElementById('searchResults'); fetch('/search.json') .then(response => { if (!response.ok) { throw new Error('Failed to load search data'); } return response.json(); }) .then(articles => { searchInput.addEventListener('input', function() { const query = this.value.toLowerCase(); searchResults.innerHTML = ''; if (query.length < 2) return; const results = articles.filter(article => { return article.title.toLowerCase().includes(query) || article.content.toLowerCase().includes(query) || article.category.toLowerCase().includes(query); }); if (results.length > 0) { results.forEach(article => { searchResults.innerHTML += `
${article.title}
Category: ${article.category}
`; }); } else { searchResults.innerHTML = '

No results found

'; } }); }) .catch(error => { console.error('Error loading search data:', error); searchResults.innerHTML = '

Error loading search data. Please try again later.

'; }); }); </script>

👨‍🔬 Author Expertise

MLOps

Comprehensive guides on Machine Learning Operations, deployment, and scaling ML systems.

Learn More →

Large Language Models

Deep dives into LLMs, transformers, and state-of-the-art NLP applications.

Learn More →

Machine Learning

In-depth tutorials on ML algorithms, deep learning, and practical implementations.

Learn More →

🎯 Popular Topics

📖 Latest Resources

Stay Updated!

Star ⭐ this repository to get notified about new content and updates.

<style> .content-card:hover { transform: translateY(-5px); } .topics-grid a { display: block; padding: 0.5rem; background: var(--sidebar-bg); border-radius: 5px; text-decoration: none; color: var(--text-color); transition: all 0.3s ease; } .topics-grid a:hover { background: var(--secondary-color); color: var(--bg-color); transform: translateX(5px); } .social-links a:hover { color: var(--secondary-color); transform: scale(1.1); } </style>