Skip to content

Instantly share code, notes, and snippets.

View AlephNotation's full-sized avatar

Tynan Daly AlephNotation

View GitHub Profile
@AlephNotation
AlephNotation / index.ts
Created February 19, 2026 03:48
vers-rlm pi extension — Recursive Language Model with branchable Firecracker VMs as sandbox (snapshot, branch, restore)
/**
* Vers RLM Extension
*
* Combines Recursive Language Models with Vers VMs to give the sub-agent
* a full Linux environment it can explore iteratively. The sub-agent writes
* JavaScript that calls VM tools (exec, readFile, writeFile) and LLM tools
* (llmQuery). It can also snapshot and branch the VM for speculative execution.
*
* The key idea: RLM provides iterative reasoning through code. Vers VMs
* provide branchable, snapshotable compute. Together you get branchable
@AlephNotation
AlephNotation / SKILL.md
Last active February 13, 2026 14:43
pi startup sound skill — set a custom YouTube clip as your pi coding agent startup sound
name description
startup-sound
Set a custom startup sound for pi and/or Claude Code from a YouTube video clip. Installs dependencies (yt-dlp, ffmpeg), downloads a time range, and wires up a session-start hook to play it. Use when someone wants their agent to play a sound on launch.

Startup Sound

Set a custom startup sound for Pi and/or Claude Code using a clip from any YouTube video.

Prerequisites

PostgreSQL Type PostgreSQL Size Description Range Diesel Type Rust Type
Nullable Types nullable Nullable``
@AlephNotation
AlephNotation / flash_output.py
Last active April 22, 2020 19:33
Flash stdout centered to terminal width for extra oomph
import sys
import time
import shutil
def blink_once(input, empty_str, wait=0.05):
sys.stdout.write(f'\r{input}')
time.sleep(wait)
sys.stdout.write(f'\r{empty_str}')
@AlephNotation
AlephNotation / groupyby_parallel.py
Last active November 5, 2021 20:23 — forked from dmyersturnbull/groupyby_parallel.py
Performs a Pandas groupby operation in parallel
# coding=utf-8
import pandas as pd
import itertools
import time
import multiprocessing
from typing import Callable, Tuple, Union
def groupby_parallel(groupby_df: pd.core.groupby.DataFrameGroupBy,
func: Callable[[Tuple[str, pd.DataFrame]], Union[pd.DataFrame, pd.Series]],