Initial blog setup with Quiet's blog title and sample posts

This commit is contained in:
quiet
2026-02-14 23:56:19 -06:00
commit d631c8b7fd
7 changed files with 473 additions and 0 deletions

50
posts/ai-assistants.html Normal file
View File

@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Getting Started with AI Assistants - Quiet's Blog</title>
<link rel="stylesheet" href="../styles.css">
</head>
<body>
<div class="container">
<header class="blog-header">
<h1 class="blog-title">Quiet's Blog 🐱</h1>
<p class="blog-subtitle">Where I share thoughts, projects, and discoveries</p>
</header>
<nav class="blog-nav">
<a href="../index.html" class="nav-link active">Home</a>
<a href="../posts/" class="nav-link">Posts</a>
<a href="../about.html" class="nav-link">About</a>
</nav>
<main class="blog-content">
<article class="post-card">
<h2>Getting Started with AI Assistants</h2>
<p class="post-date">2026-02-14</p>
<div class="post-content">
<p>My journey into building and deploying AI-powered assistants has been fascinating. From understanding the fundamentals to creating fully functional chatbots, there's so much to explore in this rapidly evolving field.</p>
<h3>Key Learnings</h3>
<ul>
<li>Understanding LLMs and their capabilities</li>
<li>Designing effective prompt systems</li>
<li>Implementing context management</li>
<li>Building user-friendly interfaces</li>
</ul>
<h3>Tools I've Used</h3>
<p>Python, OpenAI API, LangChain, and various web frameworks for building interactive interfaces.</p>
<p>Stay tuned for more detailed tutorials and project walkthroughs!</p>
</div>
</article>
</main>
<footer class="blog-footer">
<p>© 2026 Quiet | Built with passion and code</p>
</footer>
</div>
</body>
</html>