Files
ASP.NET/content/01-Introductory-Sessions/Session00/Projects/BasicWebsite/index.html
T
2025-07-18 14:47:22 +03:30

178 lines
7.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Podcast Page</title>
</head>
<body>
<div class="header">
<h1></h1>
</div>
<div class="container">
<div class="podcast-header">
<img src="podcast-cover.jpg" alt="Podcast Icon" class="podcast-icon">
<div class="podcast-info">
<h1 class="podcast-title">Pardazeh</h1>
<p class="podcast-author">SBU Computer Science Scientific Association</p>
</div>
</div>
<div class="episodes">
<h2>Episodes</h2>
<div class="episode">
<img src="episode-zero.jpg" alt="Episode Cover">
<div class="episode-details">
<h3>#0000 - Welcome to Tech Insights Podcast!</h3>
<div class="meta">
<span><i class="fas fa-video"></i> Video • Pardazeh Podcast</span>
<span><i class="fas fa-calendar-alt"></i> Oct 17</span>
<span><i class="fas fa-clock"></i> 2 hr 27 min</span>
</div>
<br />
<p>In this very first episode, we introduce you to the world of technology from a fresh perspective. Whether
you're a developer, engineer, or tech enthusiast, this podcast is here to demystify emerging trends in
technology. Join us as we break down complex topics into digestible conversations with industry experts.
Tune in as we embark on a journey through machine learning, deep learning, artificial intelligence, and
beyond. Let's kick things off!</p>
</div>
<div class="episode-icons">
<div class="play-episode"><i class="fas fa-play"></i></div>
</div>
</div>
<div class="episode">
<img src="episode-zero.jpg" alt="Episode Cover">
<div class="episode-details">
<h3>#0012 - Welcome to Tech Insights Podcast!</h3>
<div class="meta">
<span><i class="fas fa-video"></i> Video • Pardazeh Podcast</span>
<span><i class="fas fa-calendar-alt"></i> Oct 17</span>
<span><i class="fas fa-clock"></i> 2 hr 27 min</span>
</div>
<br />
<p>In this very first episode, we introduce you to the world of technology from a fresh perspective. Whether
you're a developer, engineer, or tech enthusiast, this podcast is here to demystify emerging trends in
technology. Join us as we break down complex topics into digestible conversations with industry experts.
Tune in as we embark on a journey through machine learning, deep learning, artificial intelligence, and
beyond. Let's kick things off!</p>
</div>
<div class="episode-icons">
<div class="play-episode"><i class="fas fa-play"></i></div>
</div>
</div>
<div class="episode">
<img src="episode-one.jpg" alt="Episode Cover">
<div class="episode-details">
<h3>#0001 - Machine Learning 101</h3>
<div class="meta">
<span><i class="fas fa-video"></i> Video • Pardazeh Podcast</span>
<span><i class="fas fa-calendar-alt"></i> Oct 17</span>
<span><i class="fas fa-clock"></i> 2 hr 27 min</span>
</div>
<br />
<p>In this episode, we dive into the fundamentals of Machine Learning. What exactly is it, and how does it
impact our everyday lives? From predictive analytics to recommendation engines, ML is revolutionizing
industries across the globe. We'll explore key concepts like supervised learning, unsupervised learning, and
real-world applications, including healthcare, finance, and marketing. Listen in to understand how machines
are learning to make decisions and predictions with minimal human intervention.</p>
</div>
<div class="episode-icons">
<div class="play-episode"><i class="fas fa-play"></i></div>
</div>
</div>
<div class="episode">
<img src="episode-two.jpg" alt="Episode Cover">
<div class="episode-details">
<h3>#0002 - Deep Learning Demystified</h3>
<div class="meta">
<span><i class="fas fa-video"></i> Video • Pardazeh Podcast</span>
<span><i class="fas fa-calendar-alt"></i> Oct 17</span>
<span><i class="fas fa-clock"></i> 2 hr 27 min</span>
</div>
<br />
<p>Join us as we take a deep dive into Deep Learning, the advanced subset of Machine Learning that powers some
of the most exciting AI applications today. Discover how neural networks mimic the human brain, enabling
breakthroughs in image recognition, natural language processing, and even autonomous driving. Well break
down the differences between traditional ML and deep learning, the role of massive datasets, and why this
technology is becoming essential in AI research and development.
</p>
</div>
<div class="episode-icons">
<div class="play-episode"><i class="fas fa-play"></i></div>
</div>
</div>
<div class="episode">
<img src="episode-three.png" alt="Episode Cover">
<div class="episode-details">
<h3>#0003 - AI</h3>
<div class="meta">
<span><i class="fas fa-video"></i> Video • Pardazeh Podcast</span>
<span><i class="fas fa-calendar-alt"></i> Oct 17</span>
<span><i class="fas fa-clock"></i> 2 hr 27 min</span>
</div>
<br />
<p>Artificial Intelligence is no longer science fiction—it's shaping the future of how we live and work. In this
episode, we explore what AI truly means, its current capabilities, and where its headed. From chatbots and
virtual assistants to AI-driven decision-making in businesses, we discuss how AI is already being integrated
into our daily lives. We'll also touch on the ethical concerns and the importance of responsible AI
development. Get ready to envision a future powered by intelligent machines!</p>
</div>
<div class="episode-icons">
<div class="play-episode"><i class="fas fa-play"></i></div>
</div>
</div>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function () {
const episodes = document.querySelectorAll(".episode");
const observer = new IntersectionObserver(
(entries, observer) => {
entries.forEach((entry, index) => {
if (entry.isIntersecting) {
entry.target.style.animationDelay = `${index * 0.2}s`;
entry.target.style.opacity = 1;
observer.unobserve(entry.target);
}
});
},
{
threshold: 0.1,
}
);
episodes.forEach(episode => {
observer.observe(episode);
});
});
</script>
</body>
</html>