Skip to content

Instantly share code, notes, and snippets.

View CypherpunkSamurai's full-sized avatar
😶
Currently Busy 🌻🐢

Cypherpunk Samurai CypherpunkSamurai

😶
Currently Busy 🌻🐢
View GitHub Profile
import pygame
import random
import sys
import os
import urllib.request
import math
import numpy as np
# ─────────────────────────────────────────────────────────────────────────────
@CypherpunkSamurai
CypherpunkSamurai / FILE_UPLOAD.md
Created March 20, 2026 09:34
File Upload SKILL

File Upload Skill

Upload files to temporary file hosting services for sharing and distribution.

Quick Reference

Working Hosts (Tested)

Service Max Size Retention Status

Git SSH Signing - Reset / Disable Commands

1. Unset / Disable SSH Signing (Cross-Platform)

Windows (PowerShell)

# Remove all SSH signing configuration
git config --global --unset gpg.ssh.program
git config --global --unset gpg.format
git config --global --unset user.signingkey
@CypherpunkSamurai
CypherpunkSamurai / terminal.sh
Created March 11, 2026 14:44 — forked from webarchitect609/terminal.sh
Git: disable GPG signing for current repo only.
# Write local
git config --local commit.gpgsign false
# Read local (if never set, can be an empty value)
git config --local commit.gpgsign
@CypherpunkSamurai
CypherpunkSamurai / README.md
Created February 16, 2026 02:26 — forked from joe-rlo/README.md
Memory Guardian - OpenClaw plugin for persistent agent memory

Memory Guardian Plugin for OpenClaw

Fixes the "my bot keeps forgetting stuff" problem through active enforcement, not passive suggestions.

The Problem

  • AGENTS.md says "read your notes" but agents ignore it under attention pressure
  • Sessions get compacted/reset and context is lost
  • Multiple sessions (Telegram topics, Discord channels) don't share state
  • Agents forget to checkpoint after doing work
https://github.com/openclaw/openclaw
https://github.com/openclaw/clawhub
https://github.com/zeroclaw-labs/zeroclaw
https://github.com/jlia0/tinyclaw
https://github.com/sipeed/picoclaw
https://github.com/memovai/mimiclaw
@CypherpunkSamurai
CypherpunkSamurai / ssh_https_tunnel.md
Created February 5, 2026 12:00 — forked from vondraussen/ssh_https_tunnel.md
SSH through HTTPS tunnel via Openssl and Traefik

How to setup ssh through https tunnel

... via OpenSSL and Traefik

A HTTPS tunnel for SSH (Secure Shell) is a useful tool for accessing a remote server in a secure manner when the connection is limited or restricted by a firewall or network security measures. It provides a secure way to bypass these restrictions and access the remote server securely over the internet. The HTTPS protocol, which is used to secure web traffic, is utilized to create a secure connection to the remote server. The data transmitted over this connection is

@CypherpunkSamurai
CypherpunkSamurai / opencode-plugins-guide.md
Created January 20, 2026 15:39 — forked from johnlindquist/opencode-plugins-guide.md
OpenCode Plugins Guide - Complete reference for writing plugins with hooks, custom tools, and event handling

OpenCode Plugins Guide

A comprehensive guide to writing plugins for OpenCode that extend agent behavior with hooks, custom tools, and event handling.

Quick Start

  1. Create a TypeScript file in .opencode/plugin/ (project) or ~/.config/opencode/plugin/ (global)
  2. Export a named plugin function
  3. Restart OpenCode