Skip to content

Instantly share code, notes, and snippets.

View anthonyrussano's full-sized avatar
🌱

Anthony C Russano anthonyrussano

🌱
View GitHub Profile
@anthonyrussano
anthonyrussano / buzz-agent-runner-hosted-remaining-steps.md
Created July 28, 2026 00:22
Buzz headless agent-runner to hosted community (russano): remaining manual steps

Remaining steps (manual) — headless agent-runner → hosted Buzz

Goal: run only the agent container against your existing hosted community, not a new local full stack.

From your Buzz local runbook gist: community is russano.communities.buzz.xyz (Block hosted relay). Agents must run on a PC; mobile is client-only.


0. What you already have in the repo

@anthonyrussano
anthonyrussano / buzz-local-runbook.md
Created July 24, 2026 07:25
Buzz local runbook: install, start/stop, desktop/web/mobile, agents/Codex, keyring fix

Buzz local runbook (from a full setup session)

Personal notes for running block/buzz on Linux: install, start/stop, desktop vs web vs mobile, hosted community, agents/Codex, and the keyring gotcha we hit.

Machine context from this session

  • OS: Linux (Ubuntu-ish), Docker already installed
  • Repo path used: ~/Workspace/buzz
  • LAN IP at the time: 10.32.25.37 (DHCP can change this)
  • Hosted community used on phone: russano.communities.buzz.xyz
@anthonyrussano
anthonyrussano / index.md
Created July 12, 2026 03:32
local inference

I found the crash cause and installed a clean reference ROCm runtime alongside LM Studio.

The failure is not corrupted model weights. Iconium’s 128 GiB is currently split into:

  • 96 GiB fixed GPU VRAM
  • Only 30 GiB visible to Linux
  • About 15.6 GiB available through GTT

During a 60,554-token request, LM Studio created a 27.0 GiB prompt-cache snapshot. Linux exhausted its 30 GiB partition, reported repeated SVM mapping failed errors, and the OOM killer terminated LM Studio’s worker.

@anthonyrussano
anthonyrussano / snowflake-summit-conference-guide.md
Created June 1, 2026 02:45
Snowflake Summit 2026 First Conference + Expo Hall Guide

Snowflake Summit 2026 – First Conference Guide

For: Anthony Russano
Event: Snowflake Summit 2026 (San Francisco)
Goal: Maximize networking + create content while managing energy as a first-time attendee


1. Core Mindset

@anthonyrussano
anthonyrussano / altium-interview-research.md
Created June 1, 2026 02:35
Altium Senior Staff DevOps Interview Research - May 2026

Altium Interview Research – Senior Staff DevOps

Date: May 31, 2026
Role: Senior Staff DevOps
Company: Altium (acquired by Renesas in 2024)


1. Big Picture Context

@anthonyrussano
anthonyrussano / ft-sync-linux-README.md
Created April 5, 2026 05:30
ft sync on Linux (Debian/Ubuntu) — extract Chrome/Brave cookies via GNOME Keyring to sync X/Twitter bookmarks with fieldtheory CLI

ft sync on Linux (Debian/Ubuntu)

fieldtheory (ft) is a CLI tool that syncs your X/Twitter bookmarks locally. Its built-in ft sync command reads cookies directly from Chrome — but that feature is macOS-only. On Linux you'll see:

Couldn't connect to your Chrome session.

This script is a drop-in workaround. It extracts the cookies from Chrome or Brave on Linux using the GNOME Secret Service (keyring), then calls fieldtheory's internal sync function directly.

@anthonyrussano
anthonyrussano / aws-observations.md
Created March 26, 2026 05:06
Posit Workbench investigation evidence - 2026-03-25

AWS Observations For Posit Workbench Session Load Investigation

Date generated:

  • UTC: 2026-03-26T05:04:20Z
  • Local: 2026-03-25 22:04:20 PDT

Environment:

  • AWS account: 815465416436
  • Caller identity ARN: arn:aws:iam::815465416436:user/chqadeploy
  • Region: us-east-1
<div id="matrix-container" style="width: 100%; height: 100%; overflow: hidden; background: black; position: relative;">
<canvas id="matrix-canvas" style="width: 100%; height: 100%; display: block;"></canvas>
</div>
<script>
(() => {
const container = document.getElementById('matrix-container');
const canvas = document.getElementById('matrix-canvas');
const ctx = canvas.getContext('2d', { alpha: false });
@anthonyrussano
anthonyrussano / contribution-and-deploy-flow.svg
Created March 10, 2026 05:28
Shared content architecture and workflow diagrams
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#!/bin/bash
# yt-nas - Download videos/audio with yt-dlp and upload to NAS
# Usage: yt-nas <url> [video|audio] [custom-filename]
set -e
# Configuration
NAS_USER="anthony"
NAS_HOST="naspi5"