-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathblog.html
More file actions
63 lines (59 loc) · 2.66 KB
/
blog.html
File metadata and controls
63 lines (59 loc) · 2.66 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog - Ryan Bieber</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="blog.html" class="active">Blog</a></li>
</ul>
</nav>
<header>
<h1>Blog</h1>
<p class="subtitle">Thoughts on AI, engineering, and building production systems</p>
</header>
<div class="content">
<section id="blog-posts">
<article class="blog-preview">
<h2><a href="blog/prophet-rust-rewrite.html">Rewriting Prophet in Rust: Lessons and Discoveries</a></h2>
<div class="blog-meta">October 31, 2025 • 8 min read</div>
<div class="project-tech" style="margin: 1rem 0;">
<span class="tech-tag">Rust</span>
<span class="tech-tag">Prophet</span>
<span class="tech-tag">Time Series</span>
<span class="tech-tag">Performance</span>
</div>
<p>Exploring the challenges and interesting discoveries from reimplementing Facebook's Prophet forecasting library in Rust.</p>
<a href="blog/prophet-rust-rewrite.html" class="btn btn-secondary">Read More →</a>
</article>
</section>
<section id="topics">
<h2>Topics</h2>
<div class="project-tech" style="display: flex; flex-wrap: wrap; gap: 0.5rem;">
<span class="tech-tag">Agentic AI</span>
<span class="tech-tag">LangGraph</span>
<span class="tech-tag">RAG</span>
<span class="tech-tag">MCP</span>
<span class="tech-tag">Rust</span>
<span class="tech-tag">Kubernetes</span>
<span class="tech-tag">MLOps</span>
<span class="tech-tag">Production ML</span>
<span class="tech-tag">Time-Series</span>
<span class="tech-tag">Decision Intelligence</span>
</div>
</section>
</div>
<footer>
<p>© 2025 Ryan Bieber. Built with passion for AI and data science.</p>
</footer>
</div>
</body>
</html>