Skip to content

Instantly share code, notes, and snippets.

View i-infra's full-sized avatar
💖
you're loved

infra i-infra

💖
you're loved
View GitHub Profile
@i-infra
i-infra / grantmorrisontalk.md
Created July 8, 2025 21:44
Some knob on magic

Some knob gave a talk on magic about a decade ago. I transcribed and edited it for reference.

https://www.youtube.com/watch?v=l-cxBuRU09w

building the Self: Magic, Multidimensionality, and the Post-Individualist Future

What if reality itself is fundamentally malleable? What if the individual self we cling to so desperately is merely scaffolding for a greater evolutionary leap? These are not abstract philosophical questions but the core implications emerging from twenty years of lived experience at the intersection of counterculture theory, occult practice, and consciousness exploration. Standing before you, a self-described "kid from Govan" turned conduit for paradigm-shattering ideas, the journey reveals a startling truth: the seemingly fantastical claims of figures like Robert Anton Wilson and Aleister Crowley are not metaphorical musings but practical instructions. They are blueprints for hacking reality. When tested with rigorous, albeit unconventional, methodology in the turbulent laboratory of o

@i-infra
i-infra / deaddrop.py
Created July 16, 2025 06:42
I built this about a decade ago. It ran on tor, because I was edgy like that.
import re
import sys
import ctypes
from json import loads as json_decode, dumps as json_encode
from uuid import uuid4
from tornado import web, ioloop, gen, httpserver, netutil, process
from time import mktime, time
from hashlib import sha256
import copy
@i-infra
i-infra / compile.py
Created July 17, 2025 07:49 — forked from itdaniher/compile.py
compile python script to ELF on Linux via cython and gcc
import subprocess
import sys
import tempfile
from Cython.Compiler import Main, CmdLine, Options
in_file_name = sys.argv[1]
source = open(in_file_name).read()
out_file_name = in_file_name.replace('.py', '.out')
temp_py_file = tempfile.NamedTemporaryFile(suffix='.py', delete=False)