Skip to content

Instantly share code, notes, and snippets.

View opsec-ee's full-sized avatar
πŸ‘£
Working together

opsec-ee opsec-ee

πŸ‘£
Working together
  • eSentinel
  • U.S.A
View GitHub Profile
@opsec-ee
opsec-ee / Notation_as_Engineering.md
Last active March 24, 2026 16:44
Notation as Engineering

Notation as Engineering: What the Hardware Already Knows

H. Overman (ee) Independent Security & Systems Research β€” Euman Language Ecosystem


"The hardware was working perfectly. That was the problem."


@opsec-ee
opsec-ee / _reader-macros.md
Created March 16, 2026 23:21 — forked from chaitanyagupta/_reader-macros.md
Reader Macros in Common Lisp

Reader Macros in Common Lisp

This post also appears on lisper.in.

Reader macros are perhaps not as famous as ordinary macros. While macros are a great way to create your own DSL, reader macros provide even greater flexibility by allowing you to create entirely new syntax on top of Lisp.

Paul Graham explains them very well in [On Lisp][] (Chapter 17, Read-Macros):

The three big moments in a Lisp expression's life are read-time, compile-time, and runtime. Functions are in control at runtime. Macros give us a chance to perform transformations on programs at compile-time. ...read-macros... do their work at read-time.

@opsec-ee
opsec-ee / polymorphic-2.c
Last active March 22, 2026 02:26
JSON Polymorphic Dispatch β€” Graph Coloring Edition (magician ready)
/*
* @file polymorphic-2.c
* @version 2.2.0
* @author H. Overman <opsec.ee@pm.me>
* @brief JSON Polymorphic Dispatch β€” Graph Coloring Edition
* SoA layout, BTB dealiasing, group-direct loops,
* graph coloring reorder, 4-state gate system.
*
* Copyright (c) 2025 H. Overman <opsec.ee@pm.me>
* CC-BY-NC 4.0 non-commercial license
@opsec-ee
opsec-ee / grphcolr.c
Created January 24, 2026 23:59
Graph Coloring in C
/* Author: H. Overman 2026 */
/* n/a "toy" */
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include <stdio.h>
#include <time.h>
@opsec-ee
opsec-ee / bijective_maths.a
Created January 20, 2026 02:56
bijective_maths
do {
value = feistel_encrypt(value);
} while (value >= N);
```
### 4. Proof: Cycle-Walking Preserves Bijection
**Theorem:** f: S β†’ S is a bijection.
**Proof:**
#Euman - Mobile MCP:
```
from dataclasses import dataclass
from enum import Enum
from typing import Optional
import hashlib
import time
# ═══════════════════════════════════════════════════════════════════
@opsec-ee
opsec-ee / polymorphic.c
Last active September 26, 2025 05:16
Polymorphic Dispatch in C with cJSON
// Copyright (c) 2025 H.Overman <opsec.ee@pm.me>
// JSON Polymorphic Dispatch
// Email: opsec.ee@pm.me
//
// Changelog:
// - Handles actual JSON parsing with minimal overhead
// - Maintains polymorphic dispatch for varied data
// - Zero-copy where possible
// - Computed goto for dispatch
/*
* ISAAC CSPRNG v4.0 β€” Full Architecture Rewrite
* License: Public Domain (following original ISAAC license)
*
* Euman = integral(optimization/time) delta performance
*
* Based on Bob Jenkins' ISAAC (1993) β€” Public Domain algorithm.
* This implementation: Proprietary optimizations, C23, Euman IFP.
*
* =======================================================================
/*
* lzw.c
* Euman = ∫(optimization/time) β–³ performance
*
* @file lzw.c @version 2.1.0
* @author H. Overman (ee)
* @created 2026-03-20
* @modified 2026-03-20
* @by H. Overman (ee)
* @brief LZW compression / decompression. C23
// https://rosettacode.org/wiki/Huffman_coding - solved in C
#include <stdio.h>
#include <string.h>
#include <sys/time.h>
typedef struct timeval timepoint_t;
static inline timepoint_t get_time(void) {
struct timeval t; gettimeofday(&t, NULL); return t;
}