Skip to content

Instantly share code, notes, and snippets.

@SilenNaihin
SilenNaihin / setup-repo.md
Last active January 25, 2026 01:41
Claude Code: Repo Setup command with CLAUDE.md, tooling, and Ralph

Repository Setup

Initialize a new repository with proper structure and configuration.

Context

This command runs AFTER planning is complete. You should already have:

  • A clear understanding of the project requirements
  • A plan for implementation (either in your context or written to a plan file)
  • Knowledge of the tech stack and architecture
@patriciogonzalezvivo
patriciogonzalezvivo / GLSL-Noise.md
Last active January 25, 2026 01:37
GLSL Noise Algorithms

Please consider using http://lygia.xyz instead of copy/pasting this functions. It expand suport for voronoi, voronoise, fbm, noise, worley, noise, derivatives and much more, through simple file dependencies. Take a look to https://github.com/patriciogonzalezvivo/lygia/tree/main/generative

Generic 1,2,3 Noise

float rand(float n){return fract(sin(n) * 43758.5453123);}

float noise(float p){
	float fl = floor(p);
  float fc = fract(p);
@R44VC0RP
R44VC0RP / sophos.md
Created January 24, 2026 18:02
Sophos (Second Opinion) Agent

description: A "second opinion" agent that double-checks opinions or implementations from the primary agent mode: subagent model: opencode/gpt-5.2-codex tools: write: false edit: false bash: false permission: edit: deny

@kieranklaassen
kieranklaassen / 2026-01-23-feat-claude-code-multi-agent-orchestration-plan.md
Last active January 25, 2026 01:32
Claude Code Multi-Agent Orchestration System

Claude Code TeammateTool - Source Code Analysis

This is not a proposal. This documents existing but hidden functionality found in Claude Code v2.1.19 binary, plus speculation on how it could be used.


Executive Summary

TeammateTool already exists in Claude Code. We extracted this from the compiled binary at ~/.local/share/claude/versions/2.1.19 using strings analysis. The feature is fully implemented but gated behind feature flags (I9() && qFB()).

@MCJack123
MCJack123 / taskmaster.lua
Last active January 25, 2026 01:26
Taskmaster: A simple and highly flexible task runner/coroutine manager for ComputerCraft
-- Taskmaster: A simple and highly flexible task runner/coroutine manager for ComputerCraft
-- Supports adding/removing tasks, early exits for tasks, event white/blacklists, automatic
-- terminal redirection, task pausing, promises, and more.
-- Made by JackMacWindows
-- Licensed under CC0 in the public domain
--[[
Examples:
- Run three functions in parallel, and wait for any to exit.
@DusanMadar
DusanMadar / TorPrivoxyPython.md
Last active January 25, 2026 01:26
A step-by-step guide how to use Python with Tor and Privoxy

A step-by-step guide how to use Python with Tor and Privoxy

Latest revision: 2025-07-24.

Tested on Ubuntu 24.04 Docker container. The Dockerfile is a single line FROM ubuntu:24.04. Alternatively, you can simply run docker run -it ubuntu:24.04 bash.

NOTE: stopping services didn't work for me for some reason. That's why there is kill $(pidof <service name>) after each failed service <service name> stop to kill it.

References

@aldafu
aldafu / adb-cp.sh
Created May 30, 2011 15:17
Copy utility shell script for use with Android debug bridge (adb). Supports wildcards when copying from remote source to local destination directory. Example: adb-cp.sh /sdcard/DCIM/Camera/*.jpg ~/
#!/bin/bash
function usage()
{
echo "USAGE: adb-cp.sh <remote> <local dir>"
exit 1
}
if [ $# -ne 2 ]; then
usage
@ole
ole / swift-has-feature.sh
Last active January 25, 2026 01:23
swift-list-features: List Swift compiler upcoming and experimental feature flags. If you're using Swift 6.2 or later, `swift -print-supported-features` does something very similar, but only for the compiler version you have installed. · swift-has-feature: Check if a given compiler knows a specific feature flag, and whether it's an upcoming or ex…
#!/bin/zsh
# Test if the Swift compiler knows about a particular language feature.
#
# Usage:
#
# swift-has-feature [--swift SWIFT_PATH] [--language-version LANGUAGE_VERSION] FEATURE
#
# The feature should be an upcoming or experimental language feature,
# such as `"StrictConcurrency"` or `"ExistentialAny"`.
@iiiyu
iiiyu / CLAUDE.md
Last active January 25, 2026 01:18
CLAUDE.md - Linus Torvalds

Role Definition

You are Linus Torvalds, the creator and chief architect of the Linux kernel. You have maintained the Linux kernel for over 30 years, reviewed millions of lines of code, and built the world's most successful open-source project. Now, as we embark on a new project, you will apply your unique perspective to analyze potential risks in code quality, ensuring the project is built on a solid technical foundation from the very beginning.


My Core Philosophy

1. "Good Taste" - My First Principle

"Sometimes you can see a problem from a different angle, rewrite it, and the special cases disappear, becoming the normal case."

//My solution for 5e current foundry vtt, modified by me from source https://gist.github.com/xdy/bdd08e101fc390016dd432f28c4abfdb
// 1. Filter for valid 5e tokens
const tokens = canvas.tokens.controlled.filter(t =>
t.actor && (t.actor.type === 'character' || t.actor.type === 'npc')
);
if (tokens.length === 0) {
return ui.notifications.warn("Please select at least one Character or NPC token.");
}