Commit Graph

113 Commits

Author SHA1 Message Date
Shayan Rais 13f7ca9e48 restructure llm-basic.svg for projector legibility
Title and subtitle removed from the SVG (now promoted to the slide-level
heading and caption). Iteration counter relocated from the top of the SVG
(y=85) to the bottom (y=480), just above the feedback caption, with font
size increased from 13 to 20 for projector readability.

The whole diagram (panels, LLM box, arrows, animated circles, feedback
path) shifted upward by 80px to reclaim the space freed by the removed
title and subtitle — the diagram now fills more of its viewBox rather
than leaving empty space at the top.

ViewBox extended 500 → 530 at the bottom to accommodate the relocated
iteration counter and pushed-down feedback caption (y=488 → y=510).
Background rect height bumped to 530 to match (otherwise the new bottom
strip would render transparent).

All 7 <animate> blocks on iteration elements preserved verbatim — only
the parent <text> y and font-size attributes changed.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-05-07 12:34:51 +05:00
Shayan Rais 6b93c44806 insert slide 9 "A horse. A model." — bare-horse teaser for the harness reveal
New slide plants the model-as-horse metaphor before the LLM mechanics arc
(slides 10–13: tokens, autoregression, IDs, statelessness). Stripped-down
version of the existing harness slide: horse body only, no harness elements,
no callouts. Two text lines:

  "A horse. A model."
  "The model is the horse. Raw power, no direction." (red)

The full harness reveal with all 5 callouts (Control loop, Tool allowlist,
Context management, Evaluator, State persistence) and etymology footnote
remains intact at its later position.

Mechanical changes:
- viewBox tightened to "110 25 340 345" (was wider to accommodate callouts)
- <defs> block dropped (no arrow markers needed without callouts)
- former slides 9–54 renumbered to 10–55 (the original harness slide moved
  from position 18 to 19)
- Total slide count: 54 → 55. data-level distribution preserved.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-05-07 12:21:48 +05:00
Shayan Rais 27df7ce8d0 reorder 2026-05-07 12:15:12 +05:00
Shayan Rais a3f84f446f insert slide 14 "What the model actually sees" with token IDs visualization
New slide goes one level deeper than slide 13 — shows the integer token IDs
the model actually receives, not just the colored subword tiles. Uses
llm-animation-tokenids.svg with figure max-width 960px (vs 860px for the
narrower LLM SVGs) since the asset's viewBox is 1360×600.

Caption translates the math notation deliberately left in the SVG:
- "The model never reads text — it reads a sequence of integers, each one
  an index into a vocabulary of ~200,000 entries."
- "Notice the comma is always ID 11 — the same punctuation mark maps to
  the same integer, everywhere, every time."

Renumbering: former slides 14–53 shifted to 15–54. Total slide count
53 → 54. data-level distribution preserved.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-05-07 11:59:09 +05:00
Shayan Rais 9a2657c431 add llm-animation-tokenids.svg — advanced tokenization view with integer IDs
Animated SVG showing what the LLM actually receives: integer token IDs (one
layer deeper than llm-advanced.svg). Each of the 32 input tokens displays the
ID prominently with the token text in small italic underneath (e.g., 28133
"Does", 17554 " Chat", 162016 "GPT", 97481 " Claude", 29683 " Anth", 71571
"ropic"). Same 7-iteration autoregressive loop; generated tokens also shown
as IDs. Vocab size labeled V ≈ 200,000. Title formula: f: ℤᵏ → ℝⱽ;
next_id = argmax(f(ids)). ViewBox 1360×600 (wider than the other LLM SVGs).

Co-Authored-By: Claude <noreply@anthropic.com>
2026-05-07 11:58:57 +05:00
Shayan Rais 73da14473e insert 3 LLM intro slides at positions 11–13 in claude-code-best-practice deck
New slides introduce LLM fundamentals before the Claude Code content for a PM
and beginner-technical audience:
- Slide 11 "One token at a time" — autoregressive generation (llm-basic.svg)
- Slide 12 "Tokens, not words" — tokenization basics (tokens.jpg)
- Slide 13 "Tokens in, tokens out" — combined view (llm-advanced.svg)

Renumbering: former slides 11–50 shifted to 14–53 by incrementing data-slide
attributes and updating SLIDE-N banner comments. data-level groupings
(agents/claude-md/skills/context/workflow) preserved. Total slide count
50 → 53. Asset path: ../assets/llm/.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-05-07 11:45:27 +05:00
Shayan Rais a05c791c41 add llm-advanced.svg — combined BPE tokenization + autoregressive diagram
Animated SVG showing the same BPE-tokenized prompt from tokens.jpg (32 colored
subword tiles, e.g., "Anthropic" → "Anth"+"ropic", "Perplexity" →
"Per"+"plex"+"ity") feeding into the LLM and generating "Yes, they all use
BPE." token-by-token across 7 iterations. Combines tokenization and
autoregressive generation into one view.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-05-07 11:45:16 +05:00
Shayan Rais faa82716b0 add tokens.jpg — OpenAI tokenizer screenshot for tokenization slide
Screenshot of platform.openai.com/tokenizer showing the sentence "Does ChatGPT,
Claude, Anthropic, Llama, Mistral, Gemini, and Perplexity all use Byte-Pair
Encoding (BPE)?" tokenizing to 32 tokens / 105 characters. Visible tabs:
GPT-5.x & O1/3, GPT-4 & GPT-3.5 (legacy), GPT-3 (legacy) — illustrates that
different model generations use different tokenizers.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-05-07 11:45:09 +05:00
Shayan Rais e53739367a add llm-basic.svg — animated autoregressive generation diagram
Three-panel SVG (input context, LLM black box, predicted next token) with
7-iteration loop generating "The capital of Japan is Tokyo." from the prompt
"What is the capital of Japan?". Includes purple feedback loop showing each
predicted token appended back into the input.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-05-07 11:45:00 +05:00
Shayan Rais 2cc8d4b889 add slide on temperature=0 nondeterminism and Source: footers to slides 7, 9, 10, 15, 23, 46
Co-Authored-By: Claude <noreply@anthropic.com>
2026-05-04 19:34:53 +05:00
Shayan Rais 796b99f2a2 mirror "harness" etymology footnote onto GDG deck slide 13
Adds the same Old French etymology line ("The origin is Old French
harneis — gear, equipment, armor.") that was added to the canonical
best-practice deck, so the horse-harness analogy slide reads
identically across both decks. The line sits below the existing red
subtitle as a muted footnote (0.95rem, #666), with `text-align:
center` added for this deck because the GDG caption block relies on
flex centering rather than inherited text alignment.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-04-30 23:31:32 +05:00
Shayan Rais 76599cbee4 updated presentation 2026-04-30 23:25:04 +05:00
Shayan Rais 9d54f16c84 insert "Models are stateless" slide at position 10 in best-practice deck
Adds a styled-HTML dialog diagram (User vs Model bubbles, dashed amber
divider labeled "new session — context wiped", and a two-line caption
strip) to make the stateless behavior of LLMs visible. Drawn rather than
imported as PNG, mirroring slide-12's inline-diagram conventions. Old
slides 10..48 shifted to 11..49 via sentinel-replacement; banner
comments updated in the same pass to keep the deck's zero-drift state.
No new CSS classes — all layout via inline styles consistent with
surrounding slides.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-04-30 22:25:39 +05:00
Shayan Rais 71d0b51657 remove "How the Harness Reaches the World" slide from GDG event deck
The slide titled "Tool Calling" / "How the Harness Reaches the World" was
added to the deck after the GDG Kolachi event on Apr 25, 2026, so it doesn't
belong in the historical record of what was actually presented. Reverting
the GDG deck to as-presented state.

The slide is preserved in the new claude-code-best-practice fork (which is
the canonical living reference owned by presentation-claude-code), so no
content is lost overall — this is a deliberate divergence between the two
decks.

Slide had no data-level, so the journey bar is structurally unaffected.
Renumbered slides 15..53 → 14..52 via sentinel-replacement. Final count: 52.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-04-30 18:54:39 +05:00
Shayan Rais eb74fba922 add claude-code-best-practice deck — canonical reusable fork from GDG event deck
Forked from presentation/2026-04-25-gdg-kolachi-cli-claude-code-gemini/index.html
on 2026-04-30 to serve as the ongoing main reference deck. Renamed and decoupled
from GDG/Gemini-specific branding:

- title tag, slide-1 H1, subtitle, and HTML banner all read "Claude Code Best Practice"
- favicon swapped from gemini-jumping.svg to claude-jumping.svg
- right-corner global Gemini mascot removed (left Claude mascot kept)
- GDG event badge replaced with neutral GitHub repo badge
- four trailing Gemini-comparison slides removed (49, 50, 51, 52)
- co-presenter intro slide removed
- inline <!-- SLIDE N: ... --> banners fully repaired (1:1 with data-slide values)

Final deck: 48 slides ending with "Thank you" closing slide.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-04-30 18:54:15 +05:00
Shayan Rais 63090c68ac update gdg-kolachi presentation: clickable disrupt logo, new tool-calling slide, slide reorder
- Swap intro-slide logos from disrupt-logo.png to disrupt.svg (lines 190 and 260)
- Wrap each disrupt logo in <a href="https://disrupt.com" target="_blank" rel="noopener noreferrer"> so the logo opens disrupt.com in a new tab
- Update model-limitation.jpg path from assets/model/ to assets/harness/ to match the asset move
- Insert new "Tool Calling" slide using assets/harness/tool-calling.png; cascading data-slide renumber for all 40 slides at index >= 13 (totals: 52 -> 53)
- Reorder slides 12-14 so the narrative reads Limitations -> Horse+Harness metaphor -> Tool Calling mechanism

Co-Authored-By: Claude <noreply@anthropic.com>
2026-04-27 20:37:38 +05:00
Shayan Rais 395e80f67d add tool-calling.png diagram for harness section
Visual aid showing how the model issues tool calls and the harness executes
them against the outside world. Used by the new Tool Calling slide.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-04-27 20:37:09 +05:00
Shayan Rais 2246512e4d add disrupt.svg vector logo for presentation intro slides
Vector replacement for the previous disrupt-logo.png raster, keeping crisp
rendering at any projection scale.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-04-27 20:36:55 +05:00
Shayan Rais 2a0bcfa214 move model-limitation.jpg from assets/model/ to assets/harness/
Reorganize the screenshot under harness/ alongside other harness-limitation
assets. File contents unchanged (rename detected as 100% similarity).

Co-Authored-By: Claude <noreply@anthropic.com>
2026-04-27 20:36:39 +05:00
Shayan Rais f734255f60 rename presentation agent 2026-04-26 17:19:49 +05:00
Shayan Rais 9437efe323 updated 2026-04-26 17:13:50 +05:00
Shayan Rais 8e7f2aa850 updated presentation 2026-04-25 11:59:15 +05:00
Shayan Rais 38aceb25b9 gemini workflow 2026-04-25 11:52:37 +05:00
Shayan Rais e9af40ecb8 FINAL 2026-04-24 21:57:39 +05:00
Shayan Rais 77988f513f Update index.html 2026-04-24 21:55:45 +05:00
Shayan Rais a2612ffddc gemini 2026-04-24 21:47:47 +05:00
Shayan Rais 9f78707d51 workflow added 2026-04-24 21:40:27 +05:00
Shayan Rais deaaccdb61 context 2026-04-24 21:32:03 +05:00
Shayan Rais fcc3830226 skills 2026-04-24 21:18:45 +05:00
Shayan Rais 634ae5f553 context 2026-04-24 20:39:15 +05:00
Shayan Rais 3184fcb604 Update index.html 2026-04-24 20:34:41 +05:00
Shayan Rais b65f9d7c92 Update index.html 2026-04-24 20:31:17 +05:00
Shayan Rais 10937f71cd skills added 2026-04-24 20:26:01 +05:00
Shayan Rais dec7a2ec39 added claudemd 2026-04-24 19:57:59 +05:00
Shayan Rais 10e2042766 Update index.html 2026-04-24 19:43:30 +05:00
Shayan Rais 45e31dc8da added tips 2026-04-24 19:41:17 +05:00
Shayan Rais f61e4c1fd9 video added 2026-04-24 19:29:52 +05:00
Shayan Rais 140828d3d0 Update index.html 2026-04-24 19:26:41 +05:00
Shayan Rais 8142c06afd problem statement 2026-04-24 18:53:27 +05:00
Shayan Rais d1de8a7767 Update index.html 2026-04-24 18:50:28 +05:00
Shayan Rais d5ed84cc80 agent 2026-04-24 18:45:17 +05:00
Shayan Rais 22912d65df remove side loader panel 2026-04-24 18:28:10 +05:00
Shayan Rais cd664587aa Update index.html 2026-04-24 18:19:17 +05:00
Shayan Rais 28f65bb611 Update index.html 2026-04-24 18:14:01 +05:00
Shayan Rais 1c30bb165a updated cards 2026-04-24 17:57:01 +05:00
Shayan Rais dc73306e61 bottom cards added 2026-04-24 17:49:19 +05:00
Shayan Rais 5e039867a8 added 3 main pages 2026-04-24 16:58:43 +05:00
Shayan Rais 5ddf968e5a agents.md added 2026-04-24 16:48:27 +05:00
Shayan Rais b3cb9ba252 frontmatter 2026-04-24 16:38:14 +05:00
Shayan Rais 0f2a68d9f6 agents 2026-04-24 16:22:13 +05:00