Skip to content

Instantly share code, notes, and snippets.

@ingo-eichhorst
ingo-eichhorst / recording-filtered.jsonl
Created April 12, 2026 17:25
Reproduction data for ingo-eichhorst/Irrlicht#143 — plan-mode waiting detection gap
{"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

Myth vs Fact: Working with LLMs in Engineering

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.


Scenario Game: Research → Plan → Implement

Duration: 10-15 min | Group: solo or pairs | Bloom: Apply/Evaluate

The Real Codebase

You're working on agent-readyness — a Go CLI tool that scans codebases for AI-agent readiness. Key facts:

The Ticket

@ingo-eichhorst
ingo-eichhorst / Makefile
Created June 14, 2025 11:57
Image Resizer for Portfolio Website
# 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 \( \
@ingo-eichhorst
ingo-eichhorst / animated-flowchart-dotted.html
Last active February 26, 2026 20:16
Mermaid Animated Dotted Line
<!DOCTYPE html>
<html>
<head>
<style>
.flowchart-link {
stroke-dasharray: 4, 4 !important;
animation: flow 1s linear infinite;
stroke-width: 2px !important;
}
@ingo-eichhorst
ingo-eichhorst / fitness_functions_2_0.csv
Last active March 26, 2024 14:27
Examples for Software 2.0 Fitness Functions
Quality Attribute Software 1.0 Software 2.0
Maintainability Cyclometric Dependencies & Sotograph Interpretability and Explainability
@ingo-eichhorst
ingo-eichhorst / recursively-calculate-prime-factor.js
Last active March 26, 2019 09:59
Calculating prime factors of a given number recursively @ Software Craftsmanship Berlin Meetup (2019-03-25)
/**
* 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) {
@ingo-eichhorst
ingo-eichhorst / X-Callback HTTP header parse regex
Last active May 24, 2016 08:05
A regex (regular expression) to parse the HTTP header X-Callback
// 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);