Skip to content

Instantly share code, notes, and snippets.

@magynhard
magynhard / wacom-conf
Created January 30, 2022 14:23 — forked from Plotist/wacom-conf
Wacom Intuos Pro L configuration script for Krita
#!/bin/zsh
# This should work out of the box on debian based systems. See last comment for sysvinit specific adjustments
# required libs:
# - xsetwacom
# - xinput
# Attach tools to specific monitor (use port name e.g. "VGA1" for non NVIDIA drivers)
@catkins
catkins / README.md
Created January 8, 2026 23:25
Claude Code Statusline
@AndrewAltimit
AndrewAltimit / !README.md
Last active January 12, 2026 05:23
Claude Code and Gemini CLI Integration

Gemini AI Integration MCP Server

A Model Context Protocol (MCP) server that integrates Google's Gemini AI for code review, technical consultation, and AI-assisted development workflows. This server provides seamless integration with Claude Code and other MCP-compatible clients.

Usage

@mobob
mobob / agent-browser.md
Last active January 12, 2026 05:58
Claude Code Skill for agent-browser

agent-browser

Browser automation CLI optimized for AI agents. Use npx agent-browser for all commands.

When to Use

  • Testing websites and web applications
  • Verifying UI changes after code modifications
  • Checking for console errors and page issues
  • Taking screenshots for documentation or debugging
@thiagokokada
thiagokokada / low-latency-kvm.md
Last active January 12, 2026 05:19
Low-latency KVM

Low-latency guests in KVM

Summary

Obtaining a low-latency guests in KVM (i.e.: low DPC latency for Windows guests) can be difficult. Without it, you may hear cracks/pops in audio or freezes in the VM, so they can be very annoying, specially for gaming dedicated VMs.

This document summarizes some of my findings on this subject.

Configuring KVM for real-time workloads

Claude Agent SDK Technical Specification

Version: 1.0.0 Protocol Version: 2024-11-05 Last Updated: 2026-01-10

Table of Contents

  1. Overview
  2. Architecture
@Shpigford
Shpigford / favicon
Created January 11, 2026 17:24
/favicon command for Claude Code — Generates all necessary favicon files, HTML and webmanifest, including updating your layout files with the necessary code.
---
argument-hint: [path to source image]
description: Generate favicons from a source image
---
Generate a complete set of favicons from the source image at `$1` and update the project's HTML with the appropriate link tags.
## Prerequisites
First, verify ImageMagick v7+ is installed by running:
@max-andr
max-andr / CLAUDE.md
Created January 11, 2026 21:58
CLAUDE.md file for paper writing and polishing (based on publicly posted advice from Neel Nanda, Ethan Perez, Jacob Foerster, and Jacob Steinhardt)

Comprehensive ML Paper Writing Guide

This guide synthesizes advice from Neel Nanda, Ethan Perez, Jacob Foerster, and Jacob Steinhardt on writing effective ML papers.

The Narrative: Foundation of a Great Paper

A paper should present a narrative of one to three specific concrete claims that you believe to be true, building to useful takeaways. Everything else exists to support this narrative. The second pillar is rigorous evidence for why these claims are true.

What makes a good narrative:

@mpociot
mpociot / ralph-test.sh
Created January 10, 2026 12:09
Ralph for tests
set -e
if [ -z "$1" ]; then
echo "Usage: $0 <iterations>"
exit 1
fi
for ((i=1; i<=$1; i++)); do
echo "Iteration $i"
result=$(claude -p "@test-coverage-progress.txt \
@sebbbi
sebbbi / FastUniformLoadWithWaveOps.txt
Last active January 12, 2026 05:09
Fast uniform load with wave ops (up to 64x speedup)
In shader programming, you often run into a problem where you want to iterate an array in memory over all pixels in a compute shader
group (tile). Tiled deferred lighting is the most common case. 8x8 tile loops over a light list culled for that tile.
Simplified HLSL code looks like this:
Buffer<float4> lightDatas;
Texture2D<uint2> lightStartCounts;
RWTexture2D<float4> output;
[numthreads(8, 8, 1)]