Skip to content

Instantly share code, notes, and snippets.

View alexander-hanel's full-sized avatar
😶

Alexander Hanel alexander-hanel

😶
View GitHub Profile
@alexander-hanel
alexander-hanel / normcore-llm.md
Last active June 19, 2026 03:31 — forked from veekaybee/normcore-llm.md
Normcore LLM Reads

Anti-hype LLM reading list

Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

Foundational Concepts

Screenshot 2023-12-18 at 10 40 27 PM

Pre-Transformer Models

@alexander-hanel
alexander-hanel / iqr.py
Created June 4, 2026 02:46
IQR Example
def median(values):
n = len(values)
if n % 2 == 1:
return values[n // 2]
return (values[n // 2 - 1] + values[n // 2]) / 2
def quartiles(values):
@alexander-hanel
alexander-hanel / README.md
Last active May 15, 2026 02:42
RE AI/LLM Resources
@alexander-hanel
alexander-hanel / README.md
Last active September 16, 2025 03:02
TLDR of Hex-Ray's Igor Tip of the Week
@alexander-hanel
alexander-hanel / pyproject.md
Last active July 28, 2025 22:28
pyproject skeleton/template

Quick notes on pyproject.toml

Folder Structure

my-project
├── pyproject.toml
└── src
    └── my-project
 └── my_module.py
@alexander-hanel
alexander-hanel / example.py
Created February 12, 2024 23:29
A hackish way to extract arguments passed to a function from hex-rays decompiler output
import idautils
ea = 0x000000140013188
name = ida_name.get_ea_name(ea)
print("found")
# get xrefs to function
xrefs = [x for x in idautils.CodeRefsTo(ea, 0)]
for func in xrefs:
@alexander-hanel
alexander-hanel / EXAMPLE.md
Created January 4, 2024 18:10
Open cmd as Admin

from cmd or Run

powershell -Command "Start-Process cmd -Verb RunAs"