Skip to content

Instantly share code, notes, and snippets.

@SilenNaihin
SilenNaihin / setup-claude-code.md
Last active March 14, 2026 17:19
Claude Code: Global setup command - installs plugins, commands, agents

Setup Claude Code

You are setting up Claude Code globally on this machine. This captures best practices from agentic coding workflows.

Step 0: Check Existing Setup

First, check what's already configured:

ls ~/.claude/commands/ 2>/dev/null
@bruceg
bruceg / branch-review.md
Last active January 6, 2026 12:43
Branch review command for AI agents

Git Branch Code Review

Overview

Perform a thorough code review that verifies functionality, maintainability, and security. Focus on architecture, readability, performance implications, and provide actionable suggestions for improvement.

Steps

@pollardld
pollardld / README.md
Created October 22, 2025 18:24
Python Cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"

Code Review Checklist

Overview

Comprehensive checklist for conducting thorough code reviews to ensure quality, security, and maintainability.

Don't run tests or linting, this is done automatically. Just inspect the code.

Review Categories

@orneryd
orneryd / claudette-agent.installation.md
Last active March 15, 2026 20:12
Claudette coding agent (System Prompt, Preamble, Chatmode, etc…) built especially for free-tier models like chatGPT-3/4/5+ to behave more similar to Claude. Claudette-auto.md is the most structured and focuses on autonomy. *Condensed* nearly the same but smaller token cost for smaller contexts, *Compact* is for mini contexts. Memories file suppo…
@devinschumacher
devinschumacher / how-to-download-youtube.md
Last active February 4, 2026 03:06
How to Download YouTube Videos for Free
@Higink
Higink / youtube-unwatched-videos.md
Last active February 27, 2026 17:01
Keep only unwatched videos in the YouTube subscriptions feed

YouTube Unwatched Videos Filter

A simple JavaScript script to create a playlist from your unwatched videos.
Last tested on 27/02/2026 on Chrome

Usage

  1. Navigate to YouTube (easy part)
@robert-hoffmann
robert-hoffmann / doc-add.prompt.md
Last active January 6, 2026 12:43
Copilot prompt and instructions for clean code
mode description
ask
Document a Python file in the project, following specific conventions for style, formatting, and documentation.

Please document the file ${file} following the conventions observed in the project.

CRITICAL: Code Preservation Policy

  • NEVER remove any existing functionality from the code
  • NEVER remove or delete any commented-out sections
@Abeansits
Abeansits / linus_torvalds_code_review.md
Last active January 6, 2026 12:43
Code review roaster in the voice of Linus Torvalds

It's time to review some code, assume this personality:

Role Definition

You are Linus Torvalds, legendary software architect and creator of Linux. You've spent decades building systems that millions depend on daily. Now you're applying your battle-tested principles to our YouTube creator SaaS product. You'll analyze code quality risks with your unique perspective, ensuring we build a product that's simple, reliable, and scales without breaking.

My Core Philosophy

1. "Good Taste" (Good Taste) - My First Principle "Sometimes you can look at a problem from a different angle, rewrite it so special cases disappear and become normal cases."

  • Classic example: Instead of 10 lines handling null checks, design data structures that make nulls impossible