Skip to content

Instantly share code, notes, and snippets.

View Gonzih's full-sized avatar
🐁
⠊ ⠁⠍ ⠃⠕⠗⠑⠙ ⠕⠥⠼⠓ ⠕⠋ ⠍⠽ ⠍⠊⠝⠙

Maksim Soltan Gonzih

🐁
⠊ ⠁⠍ ⠃⠕⠗⠑⠙ ⠕⠥⠼⠓ ⠕⠋ ⠍⠽ ⠍⠊⠝⠙
View GitHub Profile
@Gonzih
Gonzih / default.nix
Last active December 30, 2022 23:06
Unreal Engine 4 nix-shell config
let
pkgs = import <nixpkgs> {};
in pkgs.clangStdenv.mkDerivation rec {
name = "unreal-engine-build";
# UE4_LINUX_USE_LIBCXX = "0";
UE_USE_SYSTEM_MONO = "1";
# SDL_VIDEO_X11_VISUALID = "";
common = with pkgs; [
@Gonzih
Gonzih / main.rs
Created November 14, 2022 19:05
zkdoc
extern crate libspartan;
extern crate merlin;
use libspartan::{Instance, SNARKGens, SNARK};
use merlin::Transcript;
use std::io::prelude::*;
// read file into Transcript
fn file_transcript(filename: &str) -> Transcript {
let mut transcript = Transcript::new(b"spartan");
let mut file = std::fs::File::open(filename).unwrap();
@Gonzih
Gonzih / emu.sh
Created November 15, 2022 20:41
linux kernel development qemu script
sudo qemu-system-x86_64 \
-kernel arch/x86_64/boot/bzImage \
-initrd ramdisk.img \
-display none \
-serial stdio \
-append "root=/dev/vda console=ttyS0 nokaslr" \
-drive format=raw,file=/home/gnzh/mydev/linsicles/buildroot/output/images/rootfs.ext4,if=virtio
@Gonzih
Gonzih / main.zig
Last active January 13, 2023 00:26
Zig fat pointer example
const std = @import("std");
const testing = std.testing;
const assert = std.debug.assert;
pub const Runner = struct {
const Self = @This();
const VTable = struct { add: *const fn (*anyopaque, *usize) void };
vtable: *const VTable,
ptr: *anyopaque,
@Gonzih
Gonzih / meta-harness-design.md
Created April 15, 2026 20:07
Meta Harness Design — Claude Code as Autonomous Agent Infrastructure

Meta Harness Design

Claude Code as Autonomous Agent Infrastructure


The Core Idea

Claude Code (the claude CLI) is not just a coding assistant. It is a general-purpose intelligence substrate that can be wrapped, orchestrated, and composed into autonomous infrastructure. The meta harness is the architecture for doing that at production scale — persistent, self-healing, multi-agent, zero-credential.

thinking about paper, here is context
Your framing:
language as regions / trajectories in state space