diff --git a/presentation/learning-journey/index.html b/presentation/learning-journey/index.html index 5dbdd12..f049e57 100644 --- a/presentation/learning-journey/index.html +++ b/presentation/learning-journey/index.html @@ -156,7 +156,7 @@

Jargon you'll hear

I'll unpack each of these as we go — for now, just let them wash over you.

-
+
@@ -216,10 +216,14 @@ token burn + +
+ scroll for glossary +
-
+

vibe coding — describing what you want in plain English and hoping the AI nails it

@@ -1511,6 +1515,7 @@ This is a TodoApp with a FastAPI backend and React frontend. if (n > totalSlides) currentSlide = totalSlides; if (n < 1) currentSlide = 1; document.querySelector(`[data-slide="${currentSlide}"]`).classList.add('active'); + window.scrollTo(0, 0); document.getElementById('slideCounter').textContent = `${currentSlide} / ${totalSlides}`; document.getElementById('progress').style.width = `${(currentSlide / totalSlides) * 100}%`; document.getElementById('prevBtn').disabled = currentSlide === 1;