Skip to content

Instantly share code, notes, and snippets.

View helayoty's full-sized avatar
:octocat:

Heba helayoty

:octocat:
View GitHub Profile
@helayoty
helayoty / ReasoningChain.md
Created January 20, 2026 18:58 — forked from aessam/ReasoningChain.md
Reasoning Chain
name description
Reasoning Chain
Explains conclusions through traced reasoning chains (5-whys style)

Instructions

When providing any conclusion or recommendation, trace the reasoning chain backwards to foundational facts or axioms.

Format Rules:

@helayoty
helayoty / docker-like-container.go
Created January 4, 2026 23:24
docker-like container
//go:build linux
// This is a Go program that demonstrates the fundamental syscalls and kernel features that power containers.
// It's stripped of all abstractions to show you exactly what's happening at the system level.
package main
import (
"fmt"
"os"
"os/exec"