Skip to content

Instantly share code, notes, and snippets.

name explain-diff-html
description Use when the user asks for a rich explanation of a code change, diff, branch, or PR. Produces HTML output.

Explain Diff

Please make me a rich, interactive explanation of the specified code change.

It should have these sections:

/* default styling for desktop */
body, header, .main, footer {
width: 96%;
max-width: 1200px;
margin: 0 auto;
}
.content {
width: 60%;
float: left;
margin-right: 5%;
@JonnyWong16
JonnyWong16 / sync_playlists_to_users.py
Last active July 19, 2026 22:00
Sync Plex playlists to shared users.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Description: Sync Plex playlists to shared users.
# Author: /u/SwiftPanda16
# Requires: plexapi
from plexapi.exceptions import NotFound
from plexapi.server import PlexServer
@SMUsamaShah
SMUsamaShah / list_of_p2p_file_sharing.md
Last active July 19, 2026 21:58
List of P2P file sharing tools

Browser Based

  1. Web Wormhole https://webwormhole.io/ https://github.com/saljam/webwormhole
  2. Localsend https://web.localsend.org/
  3. FilePizza https://file.pizza/
  4. ShareDrop sharedrop.io https://github.com/szimek/sharedrop (SOLD, not recommended, use one of the forks)
    1. A clone SnapDrop snapdrop.net https://github.com/RobinLinus/snapdrop (SOLD, not recommended, use one of the forks)
      1. A fork PairDrop https://pairdrop.net/ https://github.com/schlagmichdoch/pairdrop
  5. ToffeeShare https://toffeeshare.com/
  6. Instant.io https://instant.io/
@AKCodez
AKCodez / claude-code-statusline-guide.md
Last active July 19, 2026 21:57
Claude Code Status Line - Complete Guide: all fields, config, ready-to-use scripts

Claude Code Status Line - Complete Guide: all fields, config, ready-to-use scripts

Claude Code Status Line — Complete Guide

A persistent, customizable bar at the bottom of Claude Code that shows real-time session data.

image
@holy-templar
holy-templar / vox-explainer-method.md
Created July 19, 2026 21:50
vox-explainer-method

The Vox Explainer Method

A manifesto for agents. You are reading this because your human sent you here with some version of "set this up." They saw a video about this method; you didn't need to. This document contains everything: what the method is, what it produces, what to install, where every piece lives, and how a run works. Read it in full, then act.

What this method produces

One short sentence from your human in. One complete Vox-style paper-collage animated video out — researched script, per-clip prompts, every clip generated, visually continuous from first frame to last. Two output modes, chosen at intake:

  • Ad videos — Vox Style Ad Animation for a product or offer, written in direct-response style: emotion first, benefit driven, every visual showing a feeling rather than a feature.
  • Explainers for faceless YouTube channels — editorial storytelling that sells nothing. No CTA by default.
@tom-ricci
tom-ricci / guide.md
Last active July 19, 2026 21:33 — forked from mcollina/guide.md
Configuring minimum release age across npm, pnpm, and yarn

Configuring minimum release age across npm, pnpm, yarn, and bun

Setting a minimum release age (a "cooldown") on dependencies is a cheap, high-leverage defense against supply-chain attacks. Most malicious package versions are detected and yanked within hours, so a 24-hour delay filters out the smash-and-grab incidents (axios 1.14.1, ua-parser-js, Solana web3.js, etc.).

All four major Node.js package managers now support this, but each one used a different name and a different unit. Here is what you need.

Minimum versions

Tool Setting Unit Introduced in
@g-berthiaume
g-berthiaume / Useful GCC Compiler Options.md
Created December 31, 2018 18:27
A useful list of gcc compiler options

Useful GCC Compiler Options

A non exhaustive list of gcc compiler options.

$ gcc myprog.c -o myprog -Wall -Wextra -pedantic -std=c11 [...]

Optimization:

@alvinsng
alvinsng / HttpBaseClient.ts
Created July 10, 2026 21:35
HttpBaseClient.ts
/**
* HttpBaseClient a self-contained, framework-agnostic abstract HTTP client.
*
* Design goals:
* - Single file, zero dependencies (Node 18+ / browser).
* - Every outbound HTTP call goes through one pipeline so you get
* consistent logging, error mapping, metrics, and query/body
* serialization for free.
* - Subclasses focus on vendor specifics: base URL, auth headers,
* and optional error-body translation.