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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type Links = Vec<String>; | |
| type Proxies = Vec<String>; | |
| #[derive(Clone, Debug)] | |
| struct Opts { | |
| links: Option<Links>, | |
| proxies: Option<Proxies>, | |
| } | |
| impl Opts { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { config, pkgs, ... }: | |
| let | |
| secrets = import /opt/nix/secrets.nix; | |
| externalInterface = "enp2s0"; | |
| internalInterface = "wg0"; | |
| externalPort = 51820; | |
| externalNetMask = "10.200.200.1/24"; | |
| in | |
| { |
I hereby claim:
- I am gonzih on github.
- I am gonzih (https://keybase.io/gonzih) on keybase.
- I have a public key ASDuSCBmos0345fAhkjGxVRvU8p40Ikp8RGA5wu5UxdTLQo
To claim this, I am signing this object:
- IntelliJ http://go-ide.com/
- Better IntelliJ https://www.jetbrains.com/go/
- Atom https://atom.io/packages/go-plus
- Better Atom https://code.visualstudio.com/
- Emacs https://www.emacswiki.org/emacs/GoLangMode
- Better Emacs https://github.com/fatih/vim-go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *filter | |
| :INPUT DROP [0:0] | |
| :FORWARD DROP [0:0] | |
| :OUTPUT DROP [0:10] | |
| -A FORWARD -i tun+ -j ACCEPT | |
| -A FORWARD -j DROP | |
| -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT | |
| -A INPUT -i lo -j ACCEPT | |
| -A INPUT -i tun+ -j ACCEPT |
NewerOlder