Skip to content

Instantly share code, notes, and snippets.

@JamesDBartlett3
JamesDBartlett3 / Convert-YouTube-Audio-to-Mono.js
Last active May 20, 2026 03:33
Force YouTube Audio to Play on Both Speakers [JavaScript]
/********************************************************************************************************************************\
# Description
- Some videos on YouTube have a problem where the sound only comes out of the left or right channel
- This happens when the person who edits the video forgets to convert any mono audio signals to stereo before rendering
- Run this JavaScript snippet in your web browser to make YouTube play stereo audio as mono (same audio signal on all channels)
# How To Use
- Method 1 (best): Copy/paste into "Custom script" box in "Enhancer for YouTube™ (download & instructions: bit.ly/3GmQgZC)
- Method 2: Install as a UserScript using Tampermonkey, Greasemonkey, etc. (download & instructions: bit.ly/3K6B991)
DOWNLOAD LINKS FOR THE SETUP-EXE:
PATCHED FULLGAME+MODPACK INSTALLER.zip: https://drive.google.com/file/d/1qG5GGvsV4dkd6QFPatraIN_ic_oYIxIA/
PATCHES+MODPACK INSTALLER (GAME REQUIRED).zip: https://drive.google.com/file/d/1aH7ZksqS4spapawK_LgHCgw3BntlEImT/
OPEN THE GAME IN ADMINISTRATOR MODE & COMPATIBILITY MODE WINDOWS XP SERVICE PACK 3!
MAKE SURE TO DO BACKUP OF YOUR FILES & CHANGE THE SKIN TO PLAYA5 IN PLAYER SETTINGS!
I'm not the creator of any of the mods listed below!
@tejainece
tejainece / vscode_marketplace
Last active May 20, 2026 03:33
Marketplace for VS code to be used in Antigravity
https://marketplace.visualstudio.com/items
https://marketplace.visualstudio.com/_apis/public/gallery

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@dhkts1
dhkts1 / statusline-command.sh
Last active May 20, 2026 03:24
statusline command for Claude Code
#!/bin/bash
# Make sure this file is executable: chmod +x ~/.claude/statusline-command.sh
# Claude Code statusline script
# Reads JSON input from stdin and outputs a formatted status line to stdout
#
# Add to your ~/.claude/settings.json
#
# "statusLine": {
# "type": "command",
@celesteanders
celesteanders / harness-engineering-best-practices.md
Created April 2, 2026 01:33
Harness Engineering Best Practices from Anthropic and OpenAI

Best Practices for Building an Agent Harness

Consolidated from Anthropic, OpenAI, and community research on autonomous coding agent harnesses.


1. Architecture

Use a multi-agent pattern with separated concerns