Duration: 10 min | Group: solo or pairs | Bloom: Understand
5 statements. Decide Myth or Fact. Reveal the evidence.
Pairs variant: One person calls it, the other argues the opposite before revealing.
| {"seq":672,"ts":"2026-04-12T18:58:09.060486+02:00","kind":"transcript_new","session_id":"a9f696b3-fa1c-4414-9fe5-5cc3f57ad742","adapter":"claude-code","transcript_path":"/Users/ingo/.claude/projects/-Users-ingo-projects-irrlicht--claude-worktrees-141/a9f696b3-fa1c-4414-9fe5-5cc3f57ad742.jsonl","file_size":506,"project_dir":"-Users-ingo-projects-irrlicht--claude-worktrees-141"} | |
| {"seq":673,"ts":"2026-04-12T18:58:09.064301+02:00","kind":"state_transition","session_id":"a9f696b3-fa1c-4414-9fe5-5cc3f57ad742","new_state":"ready","reason":"new session created"} | |
| {"seq":675,"ts":"2026-04-12T18:58:09.065442+02:00","kind":"pid_discovered","session_id":"a9f696b3-fa1c-4414-9fe5-5cc3f57ad742","pid":4477} | |
| {"seq":676,"ts":"2026-04-12T18:58:09.162385+02:00","kind":"transcript_activity","session_id":"a9f696b3-fa1c-4414-9fe5-5cc3f57ad742","adapter":"claude-code","transcript_path":"/Users/ingo/.claude/projects/-Users-ingo-projects-irrlicht--claude-worktrees-141/a9f696b3-fa1c-4414-9fe5-5cc3f57ad742.jsonl","file_size":14874} | |
| {"seq |
Duration: 10-15 min | Group: solo or pairs | Bloom: Apply/Evaluate
You're working on agent-readyness — a Go CLI tool that scans codebases for AI-agent readiness. Key facts:
| # Image processing with ImageMagick | |
| # Usage: make resize-images | |
| # Define directories | |
| ASSETS_DIR = assets | |
| SMALL_HEIGHT = 360 | |
| LARGE_HEIGHT = 1080 | |
| # Find all image files but exclude _small and _large versions | |
| ORIGINAL_IMAGES := $(shell find $(ASSETS_DIR) -type f \( \ |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| .flowchart-link { | |
| stroke-dasharray: 4, 4 !important; | |
| animation: flow 1s linear infinite; | |
| stroke-width: 2px !important; | |
| } |
| Quality Attribute | Software 1.0 | Software 2.0 | |
|---|---|---|---|
| Maintainability | Cyclometric Dependencies & Sotograph | Interpretability and Explainability |
| /** | |
| * Calculates the prime factors for a given number. | |
| * - Note: Currently the function will chrash with numbers greater than ~2000 because of the recursive nature. | |
| * - This could potentially be optimized with e.g. proper tail calls | |
| * | |
| * @param {number} number - number used to calculate the prime factors | |
| * @returns {array} primeFactors | |
| */ | |
| function calculatePrimeFactor (number, prime = 2, results = []) { | |
| if (number >= prime && number % prime === 0) { |
| // http://progrium.com/blog/2012/11/26/x-callback-header-an-evented-web-building-block/ | |
| // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/exec | |
| // input | |
| var input = <http://example.com/callback/>; method="post"; secret="123"; secret2="123" | |
| // regex deliver url and method: | |
| // <(http:\/\/\S*)>.*method="(\w*)" | |
| var matches = /<(http:\/\/\S*)>.*method="(\w*)"/.exec(input); |